library(tidyverse)
library(quanteda)
#devtools::install_github("quanteda/readtext")
library(readtext)
library(striprtf)
#library(LexisNexisTools)
library(corpus)
library(quanteda.textplots)Blog Post 2
About the Data and Collection Process
I will be looking into how women’s and men’s sports were described, specifically in the context of the Tokyo Olympics 2020. The data used for this project is a collection of Indian newspaper archives from LexisNexis, from July 22,2021 to August 9, 2021 (as the Olympics were held between 23 July-8 August). I tried a few ways to collect the articles. At first, I tried scraping the Deccan Herald website and then tried scraping the LexisNexis archive. However, I was unable to do so. Hence, I downloaded articles from LexisNexis. The articles were collected after filtering the database. These filters were: Jul 22,2021 to Aug 09,2021, Asia, India, Men’s Sports/Women’s Sports/Sports Awards, Newspapers/web-based publications, a set of newspapers which were: Hindustan Times, Times of India (Electronic Edition), Free Press Journal (India), The Telegraph (India), Indian Express, Mint, DNA, India Today Online, The Hindu and Economic Times.
Initial steps
At first, I tried reading in the data for one file and looked for the different components present, in order to understand what I needed to extract.
my_texts <- readtext(paste0("Data/Files(100) Set 1.rtf"),text_field = "texts")
testing <- as.character(my_texts)
#testing
typeof(testing)[1] "character"
str_length(testing)[1] 358802
Components
The body of the article is the main text required. In order to extract this, I found the index value of where the body of the text started. Additionally, I collected the index values for the information of the newspaper name, date and classifications.
3 issues I noticed while doing this step were:
- The titles of each article were not saved when the file was read in.
- The dateline which included the location or date was not present for every article.
- I had thought of using the index position of “”, as it denoted the end of the body of the article. However, this was not present for all the articles.
#Components
indices_name<-str_locate_all(testing, "\n\n\n\n\n\n")%>%unlist()
indices_name [1] 57406 61282 63071 68193 70579 73951 77949 80730 84326 86335
[11] 90134 92488 94770 97079 99177 101291 103469 105856 108214 112558
[21] 115411 118495 121343 124441 126030 130787 134903 137205 139677 141329
[31] 143709 147033 151239 155303 157641 160181 163494 165839 169319 171802
[41] 174566 177885 181259 184064 186966 189251 191821 195591 199422 201029
[51] 203421 205507 209173 210983 214266 219496 222368 225137 227382 232669
[61] 234807 237456 240230 244885 246978 250630 255031 259168 263348 266065
[71] 267871 269625 273741 275924 277935 281880 284240 288951 293092 296702
[81] 300640 302677 304501 307244 310804 315508 319486 323306 327488 329910
[91] 332938 336540 338544 341223 344796 348086 350726 353207 355082 357009
[101] 57411 61287 63076 68198 70584 73956 77954 80735 84331 86340
[111] 90139 92493 94775 97084 99182 101296 103474 105861 108219 112563
[121] 115416 118500 121348 124446 126035 130792 134908 137210 139682 141334
[131] 143714 147038 151244 155308 157646 160186 163499 165844 169324 171807
[141] 174571 177890 181264 184069 186971 189256 191826 195596 199427 201034
[151] 203426 205512 209178 210988 214271 219501 222373 225142 227387 232674
[161] 234812 237461 240235 244890 246983 250635 255036 259173 263353 266070
[171] 267876 269630 273746 275929 277940 281885 284245 288956 293097 296707
[181] 300645 302682 304506 307249 310809 315513 319491 323311 327493 329915
[191] 332943 336545 338549 341228 344801 348091 350731 353212 355087 357014
indices_date<-str_locate_all(testing,"\nDateline")
indices_date[[1]]
start end
[1,] 57519 57527
[2,] 61394 61402
[3,] 63206 63214
[4,] 68307 68315
[5,] 70691 70699
[6,] 78062 78070
[7,] 84438 84446
[8,] 86449 86457
[9,] 90248 90256
[10,] 97191 97199
[11,] 101405 101413
[12,] 103582 103590
[13,] 105971 105979
[14,] 115522 115530
[15,] 118610 118618
[16,] 121457 121465
[17,] 130888 130896
[18,] 135015 135023
[19,] 137317 137325
[20,] 141443 141451
[21,] 151410 151418
[22,] 155416 155424
[23,] 160284 160292
[24,] 165940 165948
[25,] 171914 171922
[26,] 203535 203543
[27,] 211083 211091
[28,] 219597 219605
[29,] 232781 232789
[30,] 234919 234927
[31,] 240343 240351
[32,] 263451 263459
[33,] 266179 266187
[34,] 267984 267992
[35,] 273877 273885
[36,] 278048 278056
[37,] 296815 296823
[38,] 302789 302797
[39,] 330024 330032
[40,] 338658 338666
[41,] 344910 344918
[42,] 348199 348207
#For the actual text
indices_body<-str_locate_all(testing,"\nBody")%>%unlist()
indices_body [1] 57537 61411 63247 68328 70708 74147 78083 80908 84459 86466
[11] 90265 92619 94901 97208 99361 101434 103603 105988 108343 112688
[21] 115539 118627 121474 124569 126228 130909 135032 137334 139806 141460
[31] 143837 147190 151431 155433 157771 160310 163621 165971 169516 171931
[41] 174694 178014 181433 184192 187096 189447 191948 195749 199552 201213
[51] 203556 205635 209359 211104 214426 219618 222496 225300 227566 232798
[61] 234936 237652 240360 245045 247148 250813 255234 259381 263472 266196
[71] 268005 269794 273915 276122 278065 282063 284407 289158 293220 296836
[81] 300824 302806 304691 307420 310982 315705 319675 323519 327686 330041
[91] 333114 336736 338675 341401 344927 348216 350897 353405 355280 357206
[101] 57541 61415 63251 68332 70712 74151 78087 80912 84463 86470
[111] 90269 92623 94905 97212 99365 101438 103607 105992 108347 112692
[121] 115543 118631 121478 124573 126232 130913 135036 137338 139810 141464
[131] 143841 147194 151435 155437 157775 160314 163625 165975 169520 171935
[141] 174698 178018 181437 184196 187100 189451 191952 195753 199556 201217
[151] 203560 205639 209363 211108 214430 219622 222500 225304 227570 232802
[161] 234940 237656 240364 245049 247152 250817 255238 259385 263476 266200
[171] 268009 269798 273919 276126 278069 282067 284411 289162 293224 296840
[181] 300828 302810 304695 307424 310986 315709 319679 323523 327690 330045
[191] 333118 336740 338679 341405 344931 348220 350901 353409 355284 357210
indices_body_end<-str_locate_all(testing,"\nPublished")%>%unlist()
indices_body_end [1] 60483 62551 69850 72777 79726 85736 89353 91853 98577 102924
[11] 105260 107619 117393 120571 123777 134275 136595 139065 143067 157030
[21] 162812 168638 173872 204871 213072 221641 234162 236498 244240 265456
[31] 267273 269138 280815 299791 303955 332125 340596 347443 350018 60492
[41] 62560 69859 72786 79735 85745 89362 91862 98586 102933 105269
[51] 107628 117402 120580 123786 134284 136604 139074 143076 157039 162821
[61] 168647 173881 204880 213081 221650 234171 236507 244249 265465 267282
[71] 269147 280824 299800 303964 332134 340605 347452 350027
#Subject and classifications
indices_classification<-str_locate_all(testing,"\nSubject")%>%unlist()
indices_classification [1] 60729 62797 67977 70096 73023 76720 79972 83904 85982 89599
[11] 92099 94336 96717 98823 100924 103170 105506 107865 111811 114982
[21] 117639 120817 124023 125783 130102 134511 136841 139311 141006 143313
[31] 146261 150439 154719 157276 159770 163048 165147 168874 171440 174118
[41] 177234 180854 183638 186275 188885 191355 195108 198709 200725 202715
[51] 205117 208119 210680 213308 218817 221877 224618 227071 232184 234408
[61] 236744 239801 244486 246563 250075 254509 258561 262708 265692 267519
[71] 269384 273228 275560 277514 281061 283879 288596 292485 296177 300037
[81] 302193 304201 306830 310216 315135 318855 322796 326846 329495 332371
[91] 336035 338199 340842 344449 347689 350264 352761 354808 356680 358545
[101] 60736 62804 67984 70103 73030 76727 79979 83911 85989 89606
[111] 92106 94343 96724 98830 100931 103177 105513 107872 111818 114989
[121] 117646 120824 124030 125790 130109 134518 136848 139318 141013 143320
[131] 146268 150446 154726 157283 159777 163055 165154 168881 171447 174125
[141] 177241 180861 183645 186282 188892 191362 195115 198716 200732 202722
[151] 205124 208126 210687 213315 218824 221884 224625 227078 232191 234415
[161] 236751 239808 244493 246570 250082 254516 258568 262715 265699 267526
[171] 269391 273235 275567 277521 281068 283886 288603 292492 296184 300044
[181] 302200 304208 306837 310223 315142 318862 322803 326853 329502 332378
[191] 336042 338206 340849 344456 347696 350271 352768 354815 356687 358552
#Document end
indices_end<-str_locate_all(testing,"\nEnd of Document")%>%unlist()
indices_end [1] 61266 63055 68177 70563 73935 77933 80714 84310 86319 90118
[11] 92472 94754 97063 99161 101275 103453 105840 108198 112542 115395
[21] 118479 121327 124425 126014 130771 134887 137189 139661 141313 143693
[31] 147017 151223 155287 157625 160165 163478 165823 169303 171786 174550
[41] 177869 181243 184048 186950 189235 191805 195575 199406 201013 203405
[51] 205491 209157 210967 214250 219480 222352 225121 227366 232653 234791
[61] 237440 240214 244869 246962 250614 255015 259152 263332 266049 267855
[71] 269609 273725 275908 277919 281864 284224 288935 293076 296686 300624
[81] 302661 304485 307228 310788 315492 319470 323290 327472 329894 332922
[91] 336524 338528 341207 344780 348070 350710 353191 355066 356993 358787
[101] 61281 63070 68192 70578 73950 77948 80729 84325 86334 90133
[111] 92487 94769 97078 99176 101290 103468 105855 108213 112557 115410
[121] 118494 121342 124440 126029 130786 134902 137204 139676 141328 143708
[131] 147032 151238 155302 157640 160180 163493 165838 169318 171801 174565
[141] 177884 181258 184063 186965 189250 191820 195590 199421 201028 203420
[151] 205506 209172 210982 214265 219495 222367 225136 227381 232668 234806
[161] 237455 240229 244884 246977 250629 255030 259167 263347 266064 267870
[171] 269624 273740 275923 277934 281879 284239 288950 293091 296701 300639
[181] 302676 304500 307243 310803 315507 319485 323305 327487 329909 332937
[191] 336539 338543 341222 344795 348085 350725 353206 355081 357008 358802
Creating the dataframe for 1 file
I tried creating a dataframe for the articles in 1 file and faced issues when I tried to separate information such as the few words before the body of the article starts (such as date and location).
df_test <- data.frame(matrix(ncol = 3, nrow = 1191))%>% rename(
Newspaper_Date=X1 ,
Body=X2,
Tags=X3
)
#Testing with a smaller set
for (i in 1:3){
df_test[i,1]<-str_sub(testing,indices_name[i],indices_body[i])
df_test[i,2]<-str_sub(testing,indices_body[i],indices_body_end[i])
df_test[i,3]<-str_sub(testing,indices_classification[i],indices_end[i])
}
df_test<-df_test%>%separate(Newspaper_Date, into=c("Newspaper_Date", "Delete"), sep="Copyright")%>%select(-Delete)
#\nPublished not there everywhere so did not work
for (i in 1:100){
df[i,1]<-str_sub(testing,indices_name[i],indices_body[i])
df[i,2]<-str_sub(testing,indices_body[i],indices_classification[i])
df[i,3]<-str_sub(testing,indices_classification[i],indices_end[i])
}Error in df[i, 1] <- str_sub(testing, indices_name[i], indices_body[i]): object of type 'closure' is not subsettable
Reading all the files
This reads in the entire collection of files. The rest of the post works with the data from all the files.
my_text1 <- readtext(paste0("Data/Files(100) Set 1.rtf"),text_field = "texts")
my_text2 <- readtext(paste0("Data/Files(100) Set 2.rtf"),text_field = "texts")
my_text3 <- readtext(paste0("Data/Files(100) Set 3.rtf"),text_field = "texts")
my_text4 <- readtext(paste0("Data/Files(100) Set 4.rtf"),text_field = "texts")
my_text5 <- readtext(paste0("Data/Files(100) Set 5.rtf"),text_field = "texts")
my_text6 <- readtext(paste0("Data/Files(100) Set 6.rtf"),text_field = "texts")
my_text7 <- readtext(paste0("Data/Files(100) Set 7.rtf"),text_field = "texts")
my_text8 <- readtext(paste0("Data/Files(100) Set 8.rtf"),text_field = "texts")
my_text9 <- readtext(paste0("Data/Files(100) Set 9.rtf"),text_field = "texts")
my_text10 <- readtext(paste0("Data/Files(100) Set 10.rtf"),text_field = "texts")
my_text11 <- readtext(paste0("Data/Files(100) Set 11.rtf"),text_field = "texts")
my_text12 <- readtext(paste0("Data/Files(91) Set 12.rtf"),text_field = "texts")
files<-c(my_text1,my_text2,my_text3,my_text4,my_text5,my_text6,my_text7,my_text8,my_text9,my_text10,my_text11,my_text12)Putting the information into a dataframe
Using a nested for loop, I collected the index positions for the different components of each newspaper article and created a dataframe to put in the data. For the last file, I made a separate for loop since it had fewer articles to be read in and put into a dataframe.
Some issues I faced here:
- Before the beginning of the article, the word body as well as the location and date are often mentioned. However, there was no constant separator that could be used.
- For articles 767-800, the newspaper and date were not read in. Due to this, I could not perform any operations on the column to remove unnecessary text.
df1 <- data.frame(matrix(ncol = 3, nrow = 1100))%>% rename(
Newspaper_Date=X1 ,
Body=X2,
Tags=X3
)
k=0
for (i in seq(2,22,2)){
testing <- as.character(files[i])
indices_name<-str_locate_all(testing, "\n\n\n\n\n\n")%>%unlist()
indices_body<-str_locate_all(testing,"\nBody")%>%unlist()
indices_classification<-str_locate_all(testing,"\nSubject")%>%unlist()
indices_end<-str_locate_all(testing,"\nEnd of Document")%>%unlist()
print(k)
for(j in 1:100){
df1[k+j,1]<-str_sub(testing,indices_name[j],indices_body[j])
df1[k+j,2]<-str_sub(testing,indices_body[j],indices_classification[j])
df1[k+j,3]<-str_sub(testing,indices_classification[j],indices_end[j])
}
k=k+100
}[1] 0
[1] 100
[1] 200
[1] 300
[1] 400
[1] 500
[1] 600
[1] 700
[1] 800
[1] 900
[1] 1000
df2 <- data.frame(matrix(ncol = 3, nrow = 91))%>% rename(
Newspaper_Date=X1 ,
Body=X2,
Tags=X3
)
testing <- as.character(files[24])
indices_name<-str_locate_all(testing, "\n\n\n\n\n\n")%>%unlist()
indices_body<-str_locate_all(testing,"\nBody")%>%unlist()
indices_classification<-str_locate_all(testing,"\nSubject")%>%unlist()
indices_end<-str_locate_all(testing,"\nEnd of Document")%>%unlist()
for(l in 1:91){
df2[l,1]<-str_sub(testing,indices_name[l],indices_body[l])
df2[l,2]<-str_sub(testing,indices_body[l],indices_classification[l])
df2[l,3]<-str_sub(testing,indices_classification[l],indices_end[l])
}
df<-rbind(df1,df2)
#Does not work because the information is missing for some
df<-df%>%separate(Newspaper_Date, into=c("Newspaper_Date", "Delete"), sep="Copyright")%>%select(-Delete)Warning: Expected 2 pieces. Missing pieces filled with `NA` in 34 rows [767,
768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783,
784, 785, 786, ...].
#this does not work
#df<-df%>%separate(Newspaper_Date, into=c("Newspaper", "Date"), sep="{\n}")
#df<-df_test%>%separate(Newspaper_Date, into=c("Newspaper", "Date"), sep="[August|July]")
#df<-df%>%separate(Body,into=c("Delete","Body"),sep="--|Body")
#write.csv(df, "D:/Text as Data/Text_as_Data_Fall_2022/posts/output.csv", row.names=FALSE, quote=FALSE)Creating the corpus and looking at the number of tokens in each document
newspaper_corpus <- corpus(df,text_field = "Body")
newspaper_corpus_summary <- summary(newspaper_corpus)
newspaper_corpus_summaryCorpus consisting of 1191 documents, showing 100 documents:
Text Types Tokens Sentences
text1 293 586 24
text2 138 264 6
text3 365 911 30
text4 187 349 9
text5 229 424 18
text6 231 467 25
text7 230 392 7
text8 297 605 28
text9 197 300 9
text10 236 591 24
text11 185 343 14
text12 165 295 16
text13 148 315 14
text14 140 298 15
text15 160 298 15
text16 162 344 14
text17 201 370 6
text18 137 336 14
text19 287 690 33
text20 214 420 19
text21 229 436 7
text22 230 397 14
text23 251 475 16
text24 122 225 12
text25 281 722 27
text26 317 688 30
text27 149 333 14
text28 159 372 14
text29 121 221 9
text30 153 344 14
text31 229 484 28
text32 263 591 23
text33 226 640 26
text34 156 348 13
text35 161 357 25
text36 240 523 21
text37 136 276 11
text38 262 567 27
text39 186 359 19
text40 182 415 18
text41 193 518 34
text42 235 533 22
text43 222 414 21
text44 179 391 20
text45 163 345 14
text46 185 354 18
text47 228 601 25
text48 259 554 29
text49 124 216 9
text50 174 288 11
text51 165 277 12
text52 225 466 22
text53 128 232 17
text54 222 395 13
text55 342 832 36
text56 218 415 15
text57 176 399 15
text58 184 361 24
text59 423 890 30
text60 180 299 14
text61 205 360 8
text62 167 440 19
text63 390 823 31
text64 161 289 15
text65 220 526 39
text66 266 674 19
text67 300 633 31
text68 300 633 31
text69 201 420 13
text70 150 232 12
text71 155 267 12
text72 244 688 50
text73 165 320 14
text74 129 248 8
text75 285 563 26
text76 187 357 16
text77 339 781 50
text78 300 633 31
text79 219 562 34
text80 309 624 30
text81 130 240 10
text82 158 251 11
text83 222 426 21
text84 273 597 33
text85 328 869 53
text86 250 591 26
text87 282 576 25
text88 300 633 31
text89 161 364 15
text90 230 427 16
text91 305 562 27
text92 136 271 9
text93 205 411 37
text94 291 588 36
text95 269 566 28
text96 220 380 21
text97 158 342 29
text98 141 241 9
text99 111 242 14
text100 135 251 12
Newspaper_Date
\n\n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nThe Hindu\nAugust 9, 2021 Monday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
\n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
\n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 4, 2021 Wednesday 02:36 PM GMT\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 4, 2021 Wednesday 03:27 PM GMT\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 3, 2021 Tuesday 12:21 AM GMT\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 11:37 PM GMT\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 04:36 PM GMT\n\n\n
\n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nMINT\nAugust 9, 2021 Monday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 3, 2021 Tuesday 08:24 PM GMT\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 02:01 PM GMT\n\n\n
\n\n\n\n\n\nIndian Express\nJuly 23, 2021 Friday\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 07:50 PM GMT\n\n\n
\n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nIndia Today Online\nJuly 25, 2021 Sunday 03:32 PM GMT\n\n\n
\n\n\n\n\n\nMINT\nAugust 1, 2021 Sunday\n\n\n
\n\n\n\n\n\nDNA\nJuly 24, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 10:17 AM GMT\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 3, 2021 Tuesday 02:59 PM GMT\n\n\n
\n\n\n\n\n\nThe Telegraph (India)\nJuly 22, 2021 Thursday\n\n\n
\n\n\n\n\n\nIndia Today Online\nJuly 27, 2021 Tuesday 08:57 PM GMT\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 06:54 PM GMT\n\n\n
\n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nIndia Today Online\nJuly 26, 2021 Monday 02:42 PM GMT\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 11:58 AM GMT\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 9, 2021 Monday 08:55 AM GMT\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
\n\n\n\n\n\nMINT\nJuly 23, 2021 Friday\n\n\n
\n\n\n\n\n\nIndian Express\nJuly 23, 2021 Friday\n\n\n
\n\n\n\n\n\nMINT\nAugust 6, 2021 Friday\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 10:23 AM GMT\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
\n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 1, 2021 Sunday\n\n\n
\n\n\n\n\n\nIndian Express\nJuly 24, 2021 Saturday\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nJuly 23, 2021\n\n\n
\n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nPune Edition\n\n\n
\n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
\n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nThe Hindu\nJuly 24, 2021 Saturday\n\n\n
\n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 22, 2021 Thursday\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nDelhi Edition\n\n\n
\n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 12:00 PM GMT\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nKolkata Edition\n\n\n
\n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
\n\n\n\n\n\nThe Telegraph (India)\nJuly 23, 2021 Friday\n\n\n
\n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
\n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
\n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nBangalore Edition\n\n\n
\n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nThe Telegraph (India)\nAugust 2, 2021 Monday\n\n\n
\n\n\n\n\n\nDNA\nAugust 1, 2021 Sunday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nThe Telegraph (India)\nAugust 4, 2021 Wednesday\n\n\n
\n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
\n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
\n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
\n\n\n\n\n\nDNA\nAugust 3, 2021 Tuesday\n\n\n
Tags
\nSubject: OLYMPICS (92%); CRICKET (90%); OLYMPIC COMMITTEES (90%); SPORTS GOVERNING BODIES (90%); SPORTS & RECREATION EVENTS (89%); AGREEMENTS (78%); WOMEN'S SPORTS (78%); ASSOCIATIONS & ORGANIZATIONS (77%); TALKS & MEETINGS (77%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (57%)\n\nIndustry: BUDGETS (66%); TELEVISION INDUSTRY (50%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (92%); LOS ANGELES, CA, USA (79%); BIRMINGHAM, ENGLAND (58%); CALIFORNIA, USA (58%); INDIA (94%); UNITED KINGDOM (79%); FRANCE (58%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (89%); EQUESTRIAN SPORTS (78%); WOMEN'S SPORTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (91%)\n\nLoad-Date: August 1, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (78%); SPORTS AWARDS (78%)\n\nGeographic: NEW DELHI, INDIA (59%); INDIA (92%)\n\nLoad-Date: August 9, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); ATHLETES (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); BOAT RACING (89%); ROWING (89%); ARCHERY (78%); BADMINTON (78%); BOXING (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); TOURNAMENTS (76%); BOATING & RAFTING (75%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%); UNITED KINGDOM (73%)\n\nLoad-Date: July 27, 2021\n\n\n
\nSubject: ARMIES (94%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ARMED FORCES (90%); HEADS OF STATE & GOVERNMENT (90%); PHOTO & VIDEO SHARING (90%); PRIME MINISTERS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); HUMAN RESOURCES & PERSONNEL MANAGEMENT (78%); TRACK & FIELD (78%); EDUCATION & TRAINING (77%); MILITARY SERVICE (77%); SOCIAL MEDIA (77%); EDUCATION SYSTEMS & INSTITUTIONS (74%); GOVERNMENT ADVISORS & MINISTERS (73%); STUDENTS & STUDENT LIFE (73%); INTERNET SOCIAL NETWORKING (72%); WEAPONS & ARMS (72%)\n\nIndustry: ARMIES (94%); ARMED FORCES (90%); PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%); MEDIA CONTENT (78%); MILITARY SERVICE (77%); SOCIAL MEDIA (77%); EDUCATION SYSTEMS & INSTITUTIONS (74%); INTERNET SOCIAL NETWORKING (72%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: GUJARAT, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: DRUGS IN SPORTS (94%); OLYMPICS (92%); SPORTS & RECREATION (92%); SPORTS & RECREATION EVENTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); OLYMPIC COMMITTEES (89%); WINTER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); ACADEMY AWARDS (78%); ENTERTAINMENT & ARTS AWARDS (78%); GENDER EQUALITY (78%); SPORTS GOVERNING BODIES (78%); WOMEN (78%); WOMEN'S SPORTS (78%); CONTROLLED SUBSTANCES CRIME (76%); NEGATIVE MISC NEWS (76%); NEGATIVE NEWS (76%); INVESTIGATIONS (73%); WINTER SPORTS (73%); SCANDALS (71%); AUTO RACING (66%); DISCRIMINATION (66%); FIFA WORLD CUP (66%); DOCUMENTARY FILMS (65%); TALIBAN (60%); ALTERNATIVE DISPUTE RESOLUTION (50%)\n\nCompany: NETFLIX INC (54%); AL MUDON INTERNATIONAL REAL ESTATE CO KSCC (51%)\n\nTicker: NFLX (NASDAQ) (54%); ALMUDON (KUW) (51%)\n\nIndustry: NAICS532282 VIDEO TAPE & DISC RENTAL (54%); SIC7841 VIDEO TAPE RENTAL (54%); NAICS531110 LESSORS OF RESIDENTIAL BUILDINGS & DWELLINGS (51%); SIC6513 OPERATORS OF APARTMENT BUILDINGS (51%); ACADEMY AWARDS (78%); ENTERTAINMENT & ARTS AWARDS (78%); DOCUMENTARY FILMS (65%); MOTOR VEHICLES (61%)\n\nGeographic: RUSSIAN FEDERATION (93%); AFGHANISTAN (52%)\n\nLoad-Date: July 27, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ARCHERY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); WEAPONS & ARMS (89%); BADMINTON (78%); BOXING (78%); ROWING (78%); SHOOTING SPORTS (78%); BOAT RACING (73%); BOATING & RAFTING (73%)\n\nCompany: RADIAL INC (63%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (63%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (63%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (63%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (63%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (63%); SIC7389 BUSINESS SERVICES (63%); MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (91%); ARGENTINA (79%)\n\nLoad-Date: July 28, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); SPORTS AWARDS (89%); CELEBRITIES (78%); SPORTS & RECREATION EVENTS (78%); TENNIS (73%); WEATHER (73%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (73%); TOKYO, JAPAN (58%); KARNATAKA, INDIA (78%); INDIA (92%); JAPAN (58%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); FIELD HOCKEY (89%); MEN'S SPORTS (89%); BOXING (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); GOLF (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (93%); UNITED KINGDOM (68%)\n\nLoad-Date: July 31, 2021\n\n\n
\nSubject: OLYMPICS (92%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); 2020 TOKYO SUMMER OLYMPICS (78%); WORLD WAR II (64%)\n\nGeographic: LOS ANGELES, CA, USA (90%); BERLIN, GERMANY (88%); TOKYO, JAPAN (88%); HELSINKI, FINLAND (79%); AMSTERDAM, NETHERLANDS (71%); MELBOURNE, AUSTRALIA (67%); LONDON, ENGLAND (54%); CALIFORNIA, USA (76%); INDIA (99%); NETHERLANDS (94%); AUSTRALIA (92%); GERMANY (92%); PAKISTAN (91%); UNITED KINGDOM (79%); MEXICO (76%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); BOXING (78%); MEN'S SPORTS (78%); WEIGHTLIFTING (75%); 2012 LONDON SUMMER OLYMPICS (73%); EXERCISE & FITNESS (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LONDON, ENGLAND (51%); INDIA (94%); GERMANY (68%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (89%); PHOTO & VIDEO SHARING (78%); BADMINTON (73%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (78%)\n\nGeographic: ASSAM, INDIA (74%); INDIA (91%)\n\nLoad-Date: August 4, 2021\n\n\n
\nSubject: BOXING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); WRESTLING (78%); GOVERNMENT ADVISORS & MINISTERS (67%)\n\nIndustry: BUDGETS (73%); HIGHWAYS & STREETS (53%)\n\nGeographic: TAIPEI, TAIWAN (76%); ASSAM, INDIA (91%)\n\nLoad-Date: August 4, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (92%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); ATHLETES (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); WRESTLING (78%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (78%); MEN'S SPORTS (78%); TOURNAMENTS (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); BELGIUM (52%)\n\nLoad-Date: August 3, 2021\n\n\n
\nSubject: OLYMPICS (90%); PUBLIC POLICY (78%); WOMEN'S SPORTS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); SPORTS AWARDS (77%); SPORTS REGULATION & POLICY (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: CHANDIGARH, INDIA (90%); HARYANA, INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); FIELD HOCKEY (89%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); BADMINTON (78%); GOLF (77%); ARCHERY (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%)\n\nLoad-Date: July 30, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); WOMEN'S SPORTS (94%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); ARGENTINA (95%); INDIA (90%); JAPAN (58%)\n\nLoad-Date: August 3, 2021\n\n\n
\nSubject: OLYMPICS (92%); MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FACT CHECKING (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); SOCIAL MEDIA (78%); SPORTS AWARDS (78%); NEGATIVE PERSONAL NEWS (77%); FAKE NEWS (72%); NEGATIVE NEWS (72%); NEGATIVE MISC NEWS (60%)\n\nCompany: FACEBOOK INC (58%)\n\nTicker: FB (NASDAQ) (58%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (58%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (78%)\n\nGeographic: MOSCOW, RUSSIAN FEDERATION (87%); INDIA (95%); PAKISTAN (79%); RUSSIAN FEDERATION (79%); AFGHANISTAN (70%); UNITED KINGDOM (58%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: ARMIES (94%); OLYMPICS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); MILITARY SERVICE (77%); WEAPONS & ARMS (77%)\n\nIndustry: ARMIES (94%); MILITARY SERVICE (77%)\n\nGeographic: HARYANA, INDIA (74%); INDIA (94%); GERMANY (79%); POLAND (53%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ARCHERY (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); BADMINTON (89%); WEAPONS & ARMS (89%); BOXING (78%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); TOURNAMENTS (76%); GOLF (73%); OLYMPIC COMMITTEES (73%); SHOOTING SPORTS (73%)\n\nCompany: RADIAL INC (62%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (62%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (62%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (62%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (62%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (62%); SIC7389 BUSINESS SERVICES (62%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (88%); TAIPEI, TAIWAN (54%); INDIA (94%); RUSSIAN FEDERATION (77%); JAPAN (73%); THAILAND (54%)\n\nLoad-Date: July 29, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BOXING (89%); SPORTS & RECREATION EVENTS (89%); ATHLETES (77%); SPORTS AWARDS (77%); 2012 LONDON SUMMER OLYMPICS (72%); MARTIAL ARTS (72%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: BEIJING, CHINA (79%); TAIPEI, TAIWAN (75%); LONDON, ENGLAND (56%); ASSAM, INDIA (90%); MEGHALAYA, INDIA (79%); NORTH CENTRAL CHINA (79%); INDIA (95%); CHINA (79%)\n\nLoad-Date: August 4, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SHOOTINGS (89%); WOMEN'S SPORTS (78%); ATHLETES (73%); WEIGHTLIFTING (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (92%); INDIA (94%); GERMANY (93%); AUSTRALIA (79%); JAPAN (58%); NEW ZEALAND (52%); BELGIUM (51%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (78%)\n\nIndustry: DAIRY PRODUCTS (74%)\n\nGeographic: HARYANA, INDIA (59%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); POPULATION & DEMOGRAPHICS (89%); SPORTS AWARDS (89%); WRESTLING (89%); POPULATION SIZE (77%); ARCHERY (73%); MARTIAL ARTS (73%); OLYMPIC COMMITTEES (73%); SAILING (73%); TABLE TENNIS (73%); WEIGHTLIFTING (73%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (71%); INFECTIOUS DISEASE (71%); EXERCISE & FITNESS (68%); ASSOCIATIONS & ORGANIZATIONS (60%)\n\nGeographic: HARYANA, INDIA (92%); KERALA, INDIA (92%); PUNJAB, INDIA (91%); MANIPUR, INDIA (90%); UTTAR PRADESH, INDIA (90%); TAMIL NADU, INDIA (78%); WEST BENGAL, INDIA (78%); INDIA (99%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); CULTURE DEPARTMENTS (89%); SAFETY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (73%); FAMILY (69%)\n\nGeographic: NEW DELHI, INDIA (90%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); MEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); BELGIUM (90%); INDIA (90%); JAPAN (58%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); OLYMPICS (91%); BADMINTON (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (77%)\n\nIndustry: STREAMING MEDIA (89%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); TAIPEI, TAIWAN (73%); INDIA (93%)\n\nLoad-Date: August 1, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); WRESTLING (78%)\n\nIndustry: BUDGETS (73%); HIGHWAYS & STREETS (54%)\n\nGeographic: TAIPEI, TAIWAN (53%); ASSAM, INDIA (92%)\n\nLoad-Date: August 3, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); MEN'S SPORTS (95%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); GERMANY (94%); INDIA (91%); AUSTRALIA (79%); BELGIUM (58%); JAPAN (58%)\n\nLoad-Date: August 4, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ACTORS & ACTRESSES (89%); VIRAL VIDEOS (78%); FILM (77%); SPORTS & RECREATION EVENTS (77%); FUNDRAISING (74%); FILM DIRECTORS (62%); SCIENCE FICTION & FANTASY FILMS (62%)\n\nIndustry: CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); ACTORS & ACTRESSES (89%); VIRAL VIDEOS (78%); FILM (77%); FILM DIRECTORS (62%); SCIENCE FICTION & FANTASY FILMS (62%)\n\nPerson: AMITABH BACHCHAN (94%); SHAH RUKH KHAN (93%)\n\nGeographic: GERMANY (93%); ARGENTINA (92%); AUSTRALIA (92%); UNITED KINGDOM (90%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (96%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (89%); TOURNAMENTS (89%); FILM (88%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (77%); TRENDS & EVENTS (77%); TRIVIA (77%); EXTREME SPORTS (75%); SOCIAL MEDIA (73%); BASKETBALL (72%); BLOGS & MESSAGE BOARDS (72%); SKATEBOARDING (72%); BOARDSPORTS (70%); ANIMATION (69%); DOCUMENTARY FILMS (68%)\n\nCompany: GOOGLE LLC (93%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (93%); INTERNET SOCIAL NETWORKING (89%); STREAMING MEDIA (89%); FILM (88%); SOCIAL MEDIA (73%); BLOGS & MESSAGE BOARDS (72%); ANIMATION (69%); DOCUMENTARY FILMS (68%)\n\nGeographic: TOKYO, JAPAN (90%); JAPAN (90%)\n\nLoad-Date: July 23, 2021\n\n\n
\nSubject: OLYMPICS (90%); SPORTS REGULATION & POLICY (90%); 2020 TOKYO SUMMER OLYMPICS (89%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); GOVERNMENT ADVISORS & MINISTERS (78%); MEN'S SPORTS (78%); PUBLIC POLICY (78%); REGIONAL & LOCAL GOVERNMENTS (78%); ATHLETES (77%); SPORTS & RECREATION (77%); PRESS CONFERENCES (73%); TOURNAMENTS (71%); POPULATION SIZE (68%)\n\nGeographic: HARYANA, INDIA (94%); CHANDIGARH, INDIA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (78%); 2016 RIO SUMMER OLYMPICS (77%); SPORTS AWARDS (77%); SPORTS & RECREATION (67%)\n\nIndustry: STREAMING MEDIA (89%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); TAIPEI, TAIWAN (58%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
\nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); HEADS OF STATE & GOVERNMENT (71%); PRIME MINISTERS (56%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: 2012 LONDON SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); BOXING (89%); MEN'S SPORTS (89%); SPORTS & RECREATION EVENTS (89%); WOMEN'S SPORTS (89%); WRESTLING (89%); ATHLETES (78%); BADMINTON (78%); EXERCISE & FITNESS (73%); WEIGHTLIFTING (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (97%); BELGIUM (71%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FACT CHECKING (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); WOMEN'S SPORTS (90%); FAKE NEWS (77%)\n\nCompany: FACEBOOK INC (57%)\n\nTicker: FB (NASDAQ) (57%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (57%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); WEBSITES & PORTALS (78%)\n\nGeographic: BUDAPEST, HUNGARY (91%); TOKYO, JAPAN (91%); HARYANA, INDIA (74%); INDIA (93%); HUNGARY (87%); PAKISTAN (79%); BELARUS (73%); INDONESIA (51%)\n\nLoad-Date: July 25, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); OLYMPICS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); MEN (73%)\n\nGeographic: TOKYO, JAPAN (91%); BEIJING, CHINA (79%); LOS ANGELES, CA, USA (73%); PUNJAB, INDIA (88%); INDIA (95%); UNITED KINGDOM (92%); JAPAN (89%); AUSTRALIA (79%); PAKISTAN (73%); BELGIUM (58%)\n\nLoad-Date: August 1, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (92%); WEIGHTLIFTING (92%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); ARCHERY (78%); EXERCISE & FITNESS (71%)\n\nGeographic: GLASGOW, SCOTLAND (53%); MANIPUR, INDIA (90%); INDIA (79%)\n\nLoad-Date: July 24, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (94%); MEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%); BLOGS & MESSAGE BOARDS (67%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%); BLOGS & MESSAGE BOARDS (67%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (91%); UNITED KINGDOM (91%); AUSTRALIA (79%); NEW ZEALAND (78%); JAPAN (58%)\n\nLoad-Date: August 1, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ACTORS & ACTRESSES (89%); CELEBRITIES (89%); INTERNET SOCIAL NETWORKING (89%); SOCIAL MEDIA (89%); 2016 RIO SUMMER OLYMPICS (79%); EMOJIS & EMOTICONS (78%)\n\nCompany: ABHISHEK CORP LTD (92%)\n\nIndustry: NAICS313110 FIBER, YARN & THREAD MILLS (92%); SIC2281 YARN SPINNING MILLS (92%); ACTORS & ACTRESSES (89%); CELEBRITIES (89%); INTERNET SOCIAL NETWORKING (89%); SOCIAL MEDIA (89%); EMOJIS & EMOTICONS (78%)\n\nPerson: AMITABH BACHCHAN (79%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); BOXING (79%); TRANSPORTATION DEPARTMENTS (77%); MARTIAL ARTS (74%); TOURNAMENTS (67%)\n\nIndustry: HIGHWAYS & STREETS (77%); TRANSPORTATION DEPARTMENTS (77%)\n\nGeographic: TAIPEI, TAIWAN (92%); ASSAM, INDIA (94%); INDIA (95%)\n\nLoad-Date: August 3, 2021\n\n\n
\nSubject: TENNIS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); MATERNITY LEAVE (78%); TENNIS TOURNAMENTS (78%); WOMEN'S SPORTS (78%); RANKINGS (77%); EMOTIONS (64%)\n\nGeographic: TOKYO, JAPAN (90%); HOBART, AUSTRALIA (71%); UZBEKISTAN (88%); AUSTRALIA (79%); RUSSIAN FEDERATION (78%); UKRAINE (57%); GERMANY (53%)\n\nLoad-Date: July 22, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); FACT CHECKING (90%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); VIRAL VIDEOS (90%); FAKE NEWS (77%); SPORTS AWARDS (77%); STADIUMS & ARENAS (77%)\n\nCompany: FACEBOOK INC (56%)\n\nTicker: FB (NASDAQ) (56%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (56%); FIREWORKS (91%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (90%); SOCIAL MEDIA (90%); VIRAL VIDEOS (90%)\n\nGeographic: TAIPEI, TAIWAN (94%); TOKYO, JAPAN (92%); TAIWAN (95%); INDIA (93%); JAPAN (79%)\n\nLoad-Date: July 27, 2021\n\n\n
\nSubject: MEN'S SPORTS (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); GOVERNMENT ADVISORS & MINISTERS (90%); SUMMER OLYMPICS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); SPORTS AWARDS (77%); REGIONAL & LOCAL GOVERNMENTS (72%)\n\nGeographic: MANIPUR, INDIA (93%); INDIA (95%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (94%); OLYMPICS (91%); ATHLETES (90%); DIVING (90%); KNITTING & CROCHETING (90%); PHOTO & VIDEO SHARING (90%); SEWING & NEEDLECRAFTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); WATER SPORTS (90%); LGBTQ+ PERSONS (89%); SPORTS & RECREATION FACILITIES & VENUES (78%)\n\nIndustry: PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%)\n\nGeographic: UNITED KINGDOM (90%)\n\nLoad-Date: August 3, 2021\n\n\n
\nSubject: SOCIAL MEDIA (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FACT CHECKING (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); INTERNET SOCIAL NETWORKING (89%); ACTORS & ACTRESSES (78%); SPORTS & RECREATION (66%)\n\nIndustry: SOCIAL MEDIA (92%); INTERNET SOCIAL NETWORKING (89%); ACTORS & ACTRESSES (78%)\n\nGeographic: BUDAPEST, HUNGARY (57%); HUNGARY (90%)\n\nLoad-Date: July 26, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ATHLETES (90%); INTERNET SOCIAL NETWORKING (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); EMOJIS & EMOTICONS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (89%); FIELD HOCKEY (79%); BADMINTON (78%); EMOTIONS (78%); TENNIS (78%); TRENDS (77%); SOCIAL MEDIA (73%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); EMOJIS & EMOTICONS (89%); SHORT FORM CONTENT (78%); SOCIAL MEDIA (73%)\n\nGeographic: INDIA (97%)\n\nLoad-Date: August 3, 2021\n\n\n
\nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); WRESTLING (77%)\n\nIndustry: SOCIAL MEDIA (90%); DAIRY PRODUCTS (74%)\n\nGeographic: ASSAM, INDIA (59%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); FILM (89%); FILM DIRECTORS (79%); PROFESSIONAL SPORTS (78%); RUNNING (78%); SPORTS AWARDS (78%); BOXING (72%); TRACK & FIELD (72%); SOCIAL MEDIA (70%); VISUAL ARTISTS (70%)\n\nIndustry: ACTORS & ACTRESSES (90%); FILM (89%); FILM DIRECTORS (79%); SOCIAL MEDIA (70%); VISUAL ARTISTS (70%)\n\nPerson: AKSHAY KUMAR (79%); SHAH RUKH KHAN (79%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (59%); MELBOURNE, AUSTRALIA (54%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); 2012 LONDON SUMMER OLYMPICS (72%); SOCIAL MEDIA (71%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (71%)\n\nGeographic: BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (55%); HARYANA, INDIA (78%); INDIA (93%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (93%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (78%); MEN'S SPORTS (78%); SELFIES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); 2012 LONDON SUMMER OLYMPICS (72%); GOVERNMENT & PUBLIC ADMINISTRATION (64%); REGIONAL & LOCAL GOVERNMENTS (64%)\n\nCompany: XIAOMI INC (90%); QUALCOMM INC (53%)\n\nTicker: 01810 (HKSE) (90%); QCOM (NASDAQ) (53%)\n\nIndustry: NAICS334111 ELECTRONIC COMPUTER MANUFACTURING (90%); SIC3571 ELECTRONIC COMPUTERS (90%); NAICS334413 SEMICONDUCTOR & RELATED DEVICE MANUFACTURING (53%); NAICS334220 RADIO & TELEVISION BROADCASTING & WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING (53%); MOBILE & CELLULAR TELEPHONES (91%); SMARTPHONES (90%); CAMERAS (89%); INTERNET SOCIAL NETWORKING (78%); SELFIES (78%); CONSUMER ELECTRONICS MFG (73%); TELEPHONE EQUIPMENT MFG (73%); LIGHT EMITTING DIODES (67%); MONITORS & DISPLAYS (67%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (95%)\n\nLoad-Date: August 9, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); SPORTS FANS (73%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); SPORTS SPONSORSHIP (90%); SUMMER OLYMPICS (90%); STADIUMS & ARENAS (89%); TRENDS & EVENTS (89%); MEN'S SPORTS (78%); OLYMPIC COMMITTEES (78%); OLYMPICS SPONSORSHIP (78%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (77%); SPORTING GOODS (75%); GOVERNMENT ADVISORS & MINISTERS (72%); MOBILE GAMES (72%); COVID CORONAVIRUS (62%); COVID-19 CORONAVIRUS (62%)\n\nCompany: ADANI ENTERPRISES LTD (92%)\n\nTicker: ADANIENT (NSE) (92%)\n\nIndustry: NAICS523130 COMMODITY CONTRACTS DEALING (92%); SIC5051 METALS SERVICE CENTERS & OFFICES (92%); SPONSORSHIP (90%); SPORTS SPONSORSHIP (90%); MEDIA CONTENT (78%); ACTIVEWEAR & SPORTSWEAR (75%); CLOTHING BY FUNCTION (75%); SPORTING GOODS (75%); MOBILE MEDIA (73%); MOBILE GAMES (72%); CLOTHING LABELS (67%); FASHION INDUSTRY (67%)\n\nGeographic: TOKYO, JAPAN (91%); NEW DELHI, INDIA (89%); INDIA (94%); JAPAN (90%)\n\nLoad-Date: July 23, 2021\n\n\n
\nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (91%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); WINTER OLYMPICS (90%); 2014 SOCHI WINTER OLYMPICS (89%); LANGUAGE & LANGUAGES (89%); OLYMPIC COMMITTEES (89%); SPORTS & RECREATION EVENTS (89%); WINTER SPORTS (89%); 2018 PYEONGCHANG WINTER OLYMPICS (78%); MEN'S SPORTS (78%); STADIUMS & ARENAS (78%); DICTIONARIES & THESAURI (70%)\n\nIndustry: PRESS AGENCY RELEASES (70%)\n\nGeographic: TOKYO, JAPAN (91%); HOKKAIDO, JAPAN (79%); JAPAN (94%); RUSSIAN FEDERATION (92%); UNITED ARAB EMIRATES (92%); INDIA (90%); GREECE (88%); TAIWAN (79%); UZBEKISTAN (79%); FRANCE (71%); UKRAINE (57%)\n\nLoad-Date: July 23, 2021\n\n\n
\nSubject: WOMEN'S SPORTS (95%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN (78%); ATHLETES (77%); CHILDREN (77%); SPORTS AWARDS (77%); WINTER OLYMPICS (77%); GOVERNMENT ADVISORS & MINISTERS (73%); EMOTIONS (65%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (91%); HARYANA, INDIA (92%); PUNJAB, INDIA (79%); INDIA (93%); UNITED KINGDOM (92%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); BADMINTON (90%); INTERNET SOCIAL NETWORKING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); PHOTO & VIDEO SHARING (78%); SOCIAL MEDIA (78%); EMOTIONS (77%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (78%); SOCIAL MEDIA (78%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: OLYMPICS (92%); KNITTING & CROCHETING (90%); SEWING & NEEDLECRAFTS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); PHOTO & VIDEO SHARING (78%)\n\nIndustry: SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (78%)\n\nGeographic: TOKYO, JAPAN (71%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); EQUESTRIAN SPORTS (90%); HORSES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (75%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); LONDON, ENGLAND (57%); INDIA (94%); UNITED KINGDOM (78%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); PRIME MINISTERS (55%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (94%); UNITED KINGDOM (73%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); TABLE TENNIS (89%); WEAPONS & ARMS (78%); BADMINTON (77%); BOXING (77%)\n\nCompany: RADIAL INC (63%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (63%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (63%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (63%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (63%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (63%); SIC7389 BUSINESS SERVICES (63%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (94%); AUSTRALIA (79%); GERMANY (79%); UNITED KINGDOM (69%)\n\nLoad-Date: July 26, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); BADMINTON (78%); 2012 LONDON SUMMER OLYMPICS (73%); PRESS CONFERENCES (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (90%); BEIJING, CHINA (79%); LONDON, ENGLAND (54%); NORTH CENTRAL CHINA (79%); INDIA (93%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (88%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%); SPRAINS & STRAINS (76%); EXERCISE & FITNESS (67%)\n\nGeographic: TOKYO, JAPAN (54%); TRINIDAD & TOBAGO (91%); CARIBBEAN ISLANDS (90%); INDIA (90%); RUSSIAN FEDERATION (72%)\n\nLoad-Date: July 24, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); RUNNING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); BOXING (78%); WOMEN'S SPORTS (78%); GOLF (77%)\n\nGeographic: TAIPEI, TAIWAN (78%); INDIA (94%); UNITED KINGDOM (90%); UZBEKISTAN (90%)\n\nLoad-Date: August 1, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); CELEBRITIES (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); ACTORS & ACTRESSES (89%); ATHLETES (78%); STADIUMS & ARENAS (78%); FILM (77%); SPORTS & RECREATION (73%); MUSIC COMPOSITION (68%); SONG WRITING (68%); VISUAL ARTISTS (67%)\n\nIndustry: CELEBRITIES (90%); SOCIAL MEDIA (90%); ACTORS & ACTRESSES (89%); FILM (77%); VISUAL ARTISTS (67%)\n\nGeographic: TOKYO, JAPAN (90%); MANIPUR, INDIA (90%); INDIA (98%)\n\nLoad-Date: July 25, 2021\n\n\n
\nSubject: OLYMPICS (93%); 2012 LONDON SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); BOXING (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); TOURNAMENTS (77%)\n\nGeographic: TOKYO, JAPAN (90%); LONDON, ENGLAND (73%); NEW DELHI, INDIA (59%); ATLANTA, GA, USA (58%); MUMBAI, MAHARASHTRA, INDIA (58%); ASSAM, INDIA (58%); INDIA (95%); GERMANY (78%); ALGERIA (75%); DOMINICAN REPUBLIC (54%)\n\nLoad-Date: July 23, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 9, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: AHMEDABAD, GUJARAT, INDIA (59%); INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: WOMEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (90%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); GUJARAT, INDIA (73%); INDIA (94%); ARGENTINA (92%); UNITED KINGDOM (73%); UNITED STATES (69%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (77%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BEIJING, CHINA (79%); TOKYO, JAPAN (72%); HARYANA, INDIA (74%); INDIA (90%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); WOMEN (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (92%); BELGIUM (71%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); PHOTO & VIDEO SHARING (89%); ATHLETES (78%); SPORTS & RECREATION (76%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); CELEBRITIES (90%); SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (89%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (77%); TRENDS & EVENTS (76%); ATHLETES (72%); WEIGHTLIFTING (53%)\n\nPerson: SONIA GANDHI (71%)\n\nGeographic: TOKYO, JAPAN (88%); MANIPUR, INDIA (94%); MEGHALAYA, INDIA (79%); INDIA (92%)\n\nLoad-Date: July 24, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); FIELD HOCKEY (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); BOXING (77%); BADMINTON (73%); 2012 LONDON SUMMER OLYMPICS (72%); WEIGHTLIFTING (50%)\n\nGeographic: LONDON, ENGLAND (53%); INDIA (92%); RUSSIAN FEDERATION (91%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS FANS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); SOFTBALL (89%); SPORTS & RECREATION (78%); SPORTS AWARDS (77%); INDUSTRIAL ACCIDENTS (72%); SALES FIGURES (72%); COVID CORONAVIRUS (68%); INFECTIOUS DISEASE (68%); ACCIDENTS & DISASTERS (60%); CHERNOBYL NUCLEAR DISASTER (60%); NUCLEAR ACCIDENTS (60%); COVID-19 CORONAVIRUS (53%)\n\nCompany: NOJIMA CORP (66%)\n\nTicker: 7419 (TSE) (66%)\n\nIndustry: NAICS443142 ELECTRONICS STORES (66%); TELEVISION EQUIPMENT (90%); TELEVISION INDUSTRY (77%); MANUFACTURING (67%); CHERNOBYL NUCLEAR DISASTER (60%); NUCLEAR ACCIDENTS (60%); NUCLEAR ENERGY (60%)\n\nGeographic: TOKYO, JAPAN (92%); BEIJING, CHINA (79%); TOHOKU, JAPAN (92%); JAPAN (94%)\n\nLoad-Date: July 22, 2021\n\n\n
\nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (76%); SPORTS & RECREATION (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); BANGKOK, THAILAND (72%); CHANDIGARH, INDIA (58%); CHHATTISGARH, INDIA (58%); INDIA (95%); NETHERLANDS (92%); PAKISTAN (58%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); ATHLETES (77%); BADMINTON (77%); CELEBRITIES (77%); MEN'S SPORTS (77%); SOCIAL MEDIA (69%)\n\nIndustry: CELEBRITIES (77%); SOCIAL MEDIA (69%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (72%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); CELEBRITIES (89%); PHOTO & VIDEO SHARING (89%); 2016 RIO SUMMER OLYMPICS (78%); SELFIES (78%); ATHLETES (72%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); CELEBRITIES (89%); PHOTO & VIDEO SHARING (89%); SELFIES (78%); INTERNET VIDEO (73%)\n\nGeographic: INDIA (96%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); EMOTIONS (89%); SUMMER OLYMPICS (89%); TENNIS (89%); TENNIS TOURNAMENTS (89%); MEN'S SPORTS (77%); NEGATIVE PERSONAL NEWS (77%); SPORTS OFFICIATING (77%); REFEREES & UMPIRES (72%); SPORTS & RECREATION EVENTS (72%); WOUNDS & INJURIES (52%)\n\nPerson: NOVAK DJOKOVIC (90%); RAFAEL NADAL (58%); ROGER FEDERER (58%)\n\nGeographic: TOKYO, JAPAN (91%); BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (53%); NEW YORK, USA (79%); AUSTRALIA (92%); ARGENTINA (79%); INDIA (74%)\n\nLoad-Date: July 31, 2021\n\n\n
\nSubject: WOMEN'S SPORTS (94%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); TOURNAMENTS (74%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (58%); HARYANA, INDIA (90%); INDIA (93%); UNITED KINGDOM (91%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
\nSubject: WOMEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (93%); ARGENTINA (79%); GERMANY (72%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); 2016 RIO SUMMER OLYMPICS (78%); AMATEUR SPORTS (78%); GOLF TOURNAMENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (75%); TOURNAMENTS (75%); GOLF & COUNTRY CLUBS (68%); COVID CORONAVIRUS (50%)\n\nIndustry: GOLF & COUNTRY CLUBS (68%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOLF (89%); TOURNAMENTS (89%); WEAPONS & ARMS (89%); 2012 LONDON SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%); SHOOTING SPORTS (73%)\n\nPerson: LYDIA KO (79%)\n\nGeographic: LOS ANGELES, CA, USA (73%); LONDON, ENGLAND (71%); BANGALORE, KARNATAKA, INDIA (58%); TOKYO, JAPAN (58%); KANTO, JAPAN (78%); CALIFORNIA, USA (56%); INDIA (90%); JAPAN (90%); AUSTRALIA (79%); NEW ZEALAND (79%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: OLYMPICS (91%); SHOOTING SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); INFECTIOUS DISEASE (89%); PANDEMICS (89%); WEAPONS & ARMS (89%); SPORTS & RECREATION (77%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: July 23, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (92%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS AWARDS (89%); CELEBRITIES (78%); COMPANY EARNINGS (78%); OLYMPIC COMMITTEES (78%); PARALYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (70%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (90%); HARYANA, INDIA (79%); MANIPUR, INDIA (79%); ODISHA, INDIA (79%); UTTAR PRADESH, INDIA (79%); WEST BENGAL, INDIA (79%); INDIA (93%); UNITED STATES (92%); AUSTRALIA (79%); BRAZIL (79%); CANADA (79%); JAPAN (79%); KAZAKHSTAN (79%); MALAYSIA (79%); PHILIPPINES (79%); SINGAPORE (73%)\n\nLoad-Date: July 29, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); SHOOTING SPORTS (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WOMEN'S SPORTS (89%); 2012 LONDON SUMMER OLYMPICS (78%); ATHLETES (78%); WRESTLING (78%); TOURNAMENTS (71%); GOLF (65%)\n\nGeographic: LONDON, ENGLAND (58%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); ARGENTINA (79%); AUSTRALIA (79%); UNITED KINGDOM (58%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 9, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); CELEBRITIES (78%); RUNNING (78%); TRACK & FIELD (78%); COVID CORONAVIRUS (70%); COVID-19 CORONAVIRUS (55%)\n\nIndustry: CELEBRITIES (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); AWARDS & PRIZES (78%); MEN'S SPORTS (78%); INTERNET SOCIAL NETWORKING (76%); 2012 LONDON SUMMER OLYMPICS (73%); BOXING (73%); OLYMPIC COMMITTEES (73%); WRESTLING (73%); PHOTO & VIDEO SHARING (71%); WEIGHTLIFTING (65%)\n\nIndustry: MEDIA CONTENT (78%); INTERNET SOCIAL NETWORKING (76%); PHOTO & VIDEO SHARING (71%)\n\nGeographic: LONDON, ENGLAND (53%); INDIA (97%); UNITED KINGDOM (53%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); LETTERS & COMMENTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION (89%); MEN'S SPORTS (78%); SPORTS FANS (78%); STADIUMS & ARENAS (78%); WOMEN (78%); PHYSICAL EDUCATION (77%); CURRICULA (76%); STUDENTS & STUDENT LIFE (66%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (73%); KOLKATA, WEST BENGAL, INDIA (73%); INDIA (94%); AUSTRALIA (79%); UNITED KINGDOM (56%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: BEIJING, CHINA (79%); LONDON, ENGLAND (55%); NORTH CENTRAL CHINA (79%); CHINA (88%)\n\nLoad-Date: August 2, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION (71%); HEADS OF STATE & GOVERNMENT (65%); PRIME MINISTERS (65%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: RAM NATH KOVIND (89%); NARENDRA MODI (79%); AKSHAY KUMAR (73%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); MEN'S SPORTS (78%); TOURNAMENTS (78%); WINTER OLYMPICS (78%)\n\nGeographic: AUSTRALIA (94%); INDIA (94%); ARGENTINA (92%); BELGIUM (91%); GERMANY (91%)\n\nLoad-Date: August 4, 2021\n\n\n
\nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN (78%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: INDIA (92%); GERMANY (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 5, 2021\n\n\n
\nSubject: BADMINTON (90%); EMOJIS & EMOTICONS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS AWARDS (89%); TOURNAMENTS (78%); ACTORS & ACTRESSES (76%)\n\nIndustry: EMOJIS & EMOTICONS (90%); MEDIA CONTENT (78%); ACTORS & ACTRESSES (76%); STREAMING MEDIA (73%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (87%); INDIA (93%); CHINA (75%)\n\nLoad-Date: July 31, 2021\n\n\n
\nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SUMMER OLYMPICS (90%); SOCIAL MEDIA (78%); SPORTS AWARDS (78%); MEN'S SPORTS (77%); WRESTLING (72%)\n\nCompany: TWITTER INC (91%)\n\nTicker: TWTR (NYSE) (91%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (91%); CELEBRITIES (90%); SOCIAL MEDIA (78%)\n\nGeographic: INDIA (90%); KAZAKHSTAN (57%)\n\nLoad-Date: August 7, 2021\n\n\n
\nSubject: OLYMPICS (91%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); BOXING (78%); FIELD HOCKEY (78%); WOMEN'S SPORTS (78%); BADMINTON (73%); WEIGHTLIFTING (50%)\n\nGeographic: TOKYO, JAPAN (88%); AZERBAIJAN (58%); KAZAKHSTAN (58%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); STADIUMS & ARENAS (77%)\n\nIndustry: STREAMING MEDIA (90%); TELEVISION INDUSTRY (66%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (90%); GERMANY (71%); PAKISTAN (59%)\n\nLoad-Date: August 8, 2021\n\n\n
\nSubject: PRIME MINISTERS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%)\n\nPerson: NARENDRA MODI (93%)\n\nGeographic: INDIA (94%); BELGIUM (55%)\n\nLoad-Date: August 4, 2021\n\n\n
newspaper_corpus_summary$Tokens [1] 586 264 911 349 424 467 392 605 300 591 343 295 315 298 298 344 370 336
[19] 690 420 436 397 475 225 722 688 333 372 221 344 484 591 640 348 357 523
[37] 276 567 359 415 518 533 414 391 345 354 601 554 216 288 277 466 232 395
[55] 832 415 399 361 890 299 360 440 823 289 526 674 633 633 420 232 267 688
[73] 320 248 563 357 781 633 562 624 240 251 426 597 869 591 576 633 364 427
[91] 562 271 411 588 566 380 342 241 242 251
ndoc(newspaper_corpus)[1] 1191
Checking for metadata
docvars(newspaper_corpus) Newspaper_Date
1 \n\n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
2 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
3 \n\n\n\n\n\nThe Hindu\nAugust 9, 2021 Monday\n\n\n
4 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
5 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
6 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
7 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
8 \n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
9 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
10 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
11 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
12 \n\n\n\n\n\nIndia Today Online\nAugust 4, 2021 Wednesday 02:36 PM GMT\n\n\n
13 \n\n\n\n\n\nIndia Today Online\nAugust 4, 2021 Wednesday 03:27 PM GMT\n\n\n
14 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
15 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
16 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
17 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
18 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
19 \n\n\n\n\n\nIndia Today Online\nAugust 3, 2021 Tuesday 12:21 AM GMT\n\n\n
20 \n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 11:37 PM GMT\n\n\n
21 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
22 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
23 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
24 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 04:36 PM GMT\n\n\n
25 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
26 \n\n\n\n\n\nMINT\nAugust 9, 2021 Monday\n\n\n
27 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
28 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
29 \n\n\n\n\n\nIndia Today Online\nAugust 3, 2021 Tuesday 08:24 PM GMT\n\n\n
30 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
31 \n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 02:01 PM GMT\n\n\n
32 \n\n\n\n\n\nIndian Express\nJuly 23, 2021 Friday\n\n\n
33 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
34 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
35 \n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 07:50 PM GMT\n\n\n
36 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
37 \n\n\n\n\n\nIndia Today Online\nJuly 25, 2021 Sunday 03:32 PM GMT\n\n\n
38 \n\n\n\n\n\nMINT\nAugust 1, 2021 Sunday\n\n\n
39 \n\n\n\n\n\nDNA\nJuly 24, 2021 Saturday\n\n\n
40 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
41 \n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 10:17 AM GMT\n\n\n
42 \n\n\n\n\n\nIndia Today Online\nAugust 3, 2021 Tuesday 02:59 PM GMT\n\n\n
43 \n\n\n\n\n\nThe Telegraph (India)\nJuly 22, 2021 Thursday\n\n\n
44 \n\n\n\n\n\nIndia Today Online\nJuly 27, 2021 Tuesday 08:57 PM GMT\n\n\n
45 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 06:54 PM GMT\n\n\n
46 \n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
47 \n\n\n\n\n\nIndia Today Online\nJuly 26, 2021 Monday 02:42 PM GMT\n\n\n
48 \n\n\n\n\n\nIndian Express\nAugust 2, 2021 Monday\n\n\n
49 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 11:58 AM GMT\n\n\n
50 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
51 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
52 \n\n\n\n\n\nIndia Today Online\nAugust 9, 2021 Monday 08:55 AM GMT\n\n\n
53 \n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
54 \n\n\n\n\n\nMINT\nJuly 23, 2021 Friday\n\n\n
55 \n\n\n\n\n\nIndian Express\nJuly 23, 2021 Friday\n\n\n
56 \n\n\n\n\n\nMINT\nAugust 6, 2021 Friday\n\n\n
57 \n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 10:23 AM GMT\n\n\n
58 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
59 \n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
60 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
61 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
62 \n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
63 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
64 \n\n\n\n\n\nIndian Express\nAugust 1, 2021 Sunday\n\n\n
65 \n\n\n\n\n\nIndian Express\nJuly 24, 2021 Saturday\n\n\n
66 \n\n\n\n\n\nFree Press Journal (India)\nJuly 23, 2021\n\n\n
67 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nPune Edition\n\n\n
68 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
69 \n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
70 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
71 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
72 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
73 \n\n\n\n\n\nThe Hindu\nJuly 24, 2021 Saturday\n\n\n
74 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
75 \n\n\n\n\n\nHindustan Times\nJuly 22, 2021 Thursday\n\n\n
76 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
77 \n\n\n\n\n\nIndian Express\nAugust 2, 2021 Monday\n\n\n
78 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nDelhi Edition\n\n\n
79 \n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 12:00 PM GMT\n\n\n
80 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
81 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
82 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
83 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nKolkata Edition\n\n\n
84 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
85 \n\n\n\n\n\nThe Telegraph (India)\nJuly 23, 2021 Friday\n\n\n
86 \n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
87 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
88 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nBangalore Edition\n\n\n
89 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
90 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
91 \n\n\n\n\n\nThe Telegraph (India)\nAugust 2, 2021 Monday\n\n\n
92 \n\n\n\n\n\nDNA\nAugust 1, 2021 Sunday\n\n\n
93 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
94 \n\n\n\n\n\nThe Telegraph (India)\nAugust 4, 2021 Wednesday\n\n\n
95 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
96 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
97 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
98 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
99 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
100 \n\n\n\n\n\nDNA\nAugust 3, 2021 Tuesday\n\n\n
101 \n\n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
102 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
103 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
104 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
105 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
106 \n\n\n\n\n\nIndian Express\nJuly 25, 2021 Sunday\n\n\n
107 \n\n\n\n\n\nIndian Express\nAugust 4, 2021 Wednesday\n\n\n
108 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
109 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
110 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
111 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
112 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
113 \n\n\n\n\n\nThe Telegraph (India)\nAugust 4, 2021 Wednesday\n\n\n
114 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
115 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
116 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nChennai Edition\n\n\n
117 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
118 \n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
119 \n\n\n\n\n\nDNA\nJuly 23, 2021 Friday\n\n\n
120 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 12:24 PM GMT\n\n\n
121 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
122 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 07:20 PM GMT\n\n\n
123 \n\n\n\n\n\nFree Press Journal (India)\nJuly 29, 2021\n\n\n
124 \n\n\n\n\n\nMINT\nAugust 3, 2021 Tuesday\n\n\n
125 \n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 09:19 AM GMT\n\n\n
126 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
127 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
128 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 03:36 PM GMT\n\n\n
129 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
130 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
131 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
132 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
133 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 12:09 PM GMT\n\n\n
134 \n\n\n\n\n\nThe Telegraph (India)\nAugust 2, 2021 Monday\n\n\n
135 \n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 06:28 PM GMT\n\n\n
136 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
137 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
138 \n\n\n\n\n\nIndian Express\nJuly 24, 2021 Saturday\n\n\n
139 \n\n\n\n\n\nDNA\nJuly 23, 2021 Friday\n\n\n
140 \n\n\n\n\n\nThe Telegraph (India)\nAugust 9, 2021 Monday\n\n\n
141 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
142 \n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
143 \n\n\n\n\n\nFree Press Journal (India)\nJuly 25, 2021\n\n\n
144 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
145 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
146 \n\n\n\n\n\nIndian Express\nJuly 31, 2021 Saturday\n\n\n
147 \n\n\n\n\n\nFree Press Journal (India)\nJuly 22, 2021\n\n\n
148 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
149 \n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 07:43 PM GMT\n\n\n
150 \n\n\n\n\n\nFree Press Journal (India)\nJuly 23, 2021\n\n\n
151 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
152 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
153 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
154 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
155 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
156 \n\n\n\n\n\nIndian Express\nAugust 2, 2021 Monday\n\n\n
157 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
158 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
159 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
160 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
161 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
162 \n\n\n\n\n\nThe Telegraph (India)\nJuly 22, 2021 Thursday\n\n\n
163 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
164 \n\n\n\n\n\nFree Press Journal (India)\nJuly 27, 2021\n\n\n
165 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 6, 2021 Friday\nDelhi Edition\n\n\n
166 \n\n\n\n\n\nDNA\nJuly 31, 2021 Saturday\n\n\n
167 \n\n\n\n\n\nMINT\nJuly 24, 2021 Saturday\n\n\n
168 \n\n\n\n\n\nFree Press Journal (India)\nJuly 30, 2021\n\n\n
169 \n\n\n\n\n\nDNA\nAugust 8, 2021 Sunday\n\n\n
170 \n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
171 \n\n\n\n\n\nIndian Express\nAugust 5, 2021 Thursday\n\n\n
172 \n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
173 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
174 \n\n\n\n\n\nDNA\nJuly 31, 2021 Saturday\n\n\n
175 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 6, 2021 Friday\nMumbai Edition\n\n\n
176 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
177 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
178 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
179 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
180 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
181 \n\n\n\n\n\nIndian Express\nJuly 27, 2021 Tuesday\n\n\n
182 \n\n\n\n\n\nThe Telegraph (India)\nJuly 24, 2021 Saturday\n\n\n
183 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 10:13 AM GMT\n\n\n
184 \n\n\n\n\n\nMINT\nJuly 24, 2021 Saturday\n\n\n
185 \n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 02:27 PM GMT\n\n\n
186 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
187 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
188 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
189 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 10:02 AM GMT\n\n\n
190 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
191 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
192 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
193 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nAhmedabad Edition\n\n\n
194 \n\n\n\n\n\nHindustan Times\nJuly 22, 2021 Thursday\n\n\n
195 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 6, 2021 Friday\nBangalore Edition\n\n\n
196 \n\n\n\n\n\nThe Telegraph (India)\nJuly 23, 2021 Friday\n\n\n
197 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
198 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
199 \n\n\n\n\n\nMINT\nAugust 2, 2021 Monday\n\n\n
200 \n\n\n\n\n\nThe Telegraph (India)\nJuly 23, 2021 Friday\n\n\n
201 \n\n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
202 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
203 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
204 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
205 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
206 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
207 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
208 \n\n\n\n\n\nHindustan Times\nJuly 22, 2021 Thursday\n\n\n
209 \n\n\n\n\n\nFree Press Journal (India)\nJuly 27, 2021\n\n\n
210 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
211 \n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
212 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
213 \n\n\n\n\n\nMINT\nJuly 23, 2021 Friday\n\n\n
214 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
215 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
216 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 6, 2021 Friday\nKolkata Edition\n\n\n
217 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nDelhi Edition\n\n\n
218 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
219 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
220 \n\n\n\n\n\nMINT\nAugust 1, 2021 Sunday\n\n\n
221 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
222 \n\n\n\n\n\nThe Telegraph (India)\nJuly 30, 2021 Friday\n\n\n
223 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
224 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
225 \n\n\n\n\n\nDNA\nJuly 30, 2021 Friday\n\n\n
226 \n\n\n\n\n\nDNA\nAugust 3, 2021 Tuesday\n\n\n
227 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
228 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
229 \n\n\n\n\n\nThe Telegraph (India)\nJuly 30, 2021 Friday\n\n\n
230 \n\n\n\n\n\nThe Telegraph (India)\nJuly 28, 2021 Wednesday\n\n\n
231 \n\n\n\n\n\nThe Hindu\nJuly 28, 2021 Wednesday\n\n\n
232 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
233 \n\n\n\n\n\nThe Telegraph (India)\nAugust 9, 2021 Monday\n\n\n
234 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 27, 2021 Tuesday\nMumbai Edition\n\n\n
235 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nKolkata Edition\n\n\n
236 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
237 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
238 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
239 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
240 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
241 \n\n\n\n\n\nMINT\nAugust 4, 2021 Wednesday\n\n\n
242 \n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
243 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
244 \n\n\n\n\n\nDNA\nJuly 26, 2021 Monday\n\n\n
245 \n\n\n\n\n\nDNA\nAugust 8, 2021 Sunday\n\n\n
246 \n\n\n\n\n\nDNA\nAugust 3, 2021 Tuesday\n\n\n
247 \n\n\n\n\n\nThe Telegraph (India)\nAugust 6, 2021 Friday\n\n\n
248 \n\n\n\n\n\nIndian Express\nJuly 30, 2021 Friday\n\n\n
249 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
250 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
251 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
252 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
253 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
254 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
255 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
256 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
257 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
258 \n\n\n\n\n\nFree Press Journal (India)\nJuly 22, 2021\n\n\n
259 \n\n\n\n\n\nIndian Express\nJuly 29, 2021 Thursday\n\n\n
260 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
261 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
262 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
263 \n\n\n\n\n\nIndia Today Online\nJuly 24, 2021 Saturday 08:56 PM GMT\n\n\n
264 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
265 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
266 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
267 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
268 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
269 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
270 \n\n\n\n\n\nFree Press Journal (India)\nAugust 4, 2021\n\n\n
271 \n\n\n\n\n\nMINT\nJuly 25, 2021 Sunday\n\n\n
272 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
273 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
274 \n\n\n\n\n\nDNA\nJuly 25, 2021 Sunday\n\n\n
275 \n\n\n\n\n\nThe Telegraph (India)\nAugust 9, 2021 Monday\n\n\n
276 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
277 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
278 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
279 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
280 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
281 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
282 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
283 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
284 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
285 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
286 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
287 \n\n\n\n\n\nThe Hindu\nJuly 27, 2021 Tuesday\n\n\n
288 \n\n\n\n\n\nThe Telegraph (India)\nJuly 24, 2021 Saturday\n\n\n
289 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
290 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
291 \n\n\n\n\n\nIndian Express\nJuly 25, 2021 Sunday\n\n\n
292 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
293 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
294 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 10:44 AM GMT\n\n\n
295 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
296 \n\n\n\n\n\nDNA\nAugust 4, 2021 Wednesday\n\n\n
297 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
298 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
299 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
300 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
301 \n\n\n\n\n\n\nMINT\nJuly 25, 2021 Sunday\n\n\n
302 \n\n\n\n\n\nMINT\nAugust 9, 2021 Monday\n\n\n
303 \n\n\n\n\n\nMINT\nAugust 9, 2021 Monday\n\n\n
304 \n\n\n\n\n\nFree Press Journal (India)\nJuly 31, 2021\n\n\n
305 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
306 \n\n\n\n\n\nThe Telegraph (India)\nAugust 2, 2021 Monday\n\n\n
307 \n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
308 \n\n\n\n\n\nThe Telegraph (India)\nJuly 28, 2021 Wednesday\n\n\n
309 \n\n\n\n\n\nDNA\nAugust 3, 2021 Tuesday\n\n\n
310 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
311 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
312 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
313 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
314 \n\n\n\n\n\nFree Press Journal (India)\nJuly 25, 2021\n\n\n
315 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
316 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
317 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
318 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
319 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
320 \n\n\n\n\n\nMINT\nAugust 2, 2021 Monday\n\n\n
321 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
322 \n\n\n\n\n\nThe Telegraph (India)\nAugust 3, 2021 Tuesday\n\n\n
323 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
324 \n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
325 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
326 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
327 \n\n\n\n\n\nFree Press Journal (India)\nAugust 9, 2021\n\n\n
328 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
329 \n\n\n\n\n\nThe Hindu\nJuly 31, 2021 Saturday\n\n\n
330 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nChennai Edition\n\n\n
331 \n\n\n\n\n\nMINT\nAugust 1, 2021 Sunday\n\n\n
332 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
333 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nChennai Edition\n\n\n
334 \n\n\n\n\n\nMINT\nJuly 31, 2021 Saturday\n\n\n
335 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
336 \n\n\n\n\n\nMINT\nAugust 2, 2021 Monday\n\n\n
337 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nDelhi Edition\n\n\n
338 \n\n\n\n\n\nDNA\nAugust 8, 2021 Sunday\n\n\n
339 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
340 \n\n\n\n\n\nDNA\nAugust 1, 2021 Sunday\n\n\n
341 \n\n\n\n\n\nIndian Express\nJuly 24, 2021 Saturday\n\n\n
342 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
343 \n\n\n\n\n\nThe Telegraph (India)\nAugust 6, 2021 Friday\n\n\n
344 \n\n\n\n\n\nDNA\nAugust 6, 2021 Friday\n\n\n
345 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
346 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
347 \n\n\n\n\n\nDNA\nAugust 1, 2021 Sunday\n\n\n
348 \n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
349 \n\n\n\n\n\nFree Press Journal (India)\nJuly 31, 2021\n\n\n
350 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nKolkata Edition\n\n\n
351 \n\n\n\n\n\nMINT\nAugust 3, 2021 Tuesday\n\n\n
352 \n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
353 \n\n\n\n\n\nMINT\nAugust 2, 2021 Monday\n\n\n
354 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nBangalore Edition\n\n\n
355 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
356 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 24, 2021 Saturday\nDelhi Edition\n\n\n
357 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
358 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 24, 2021 Saturday\nMumbai Edition\n\n\n
359 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 24, 2021 Saturday\nKolkata Edition\n\n\n
360 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
361 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 24, 2021 Saturday\nBangalore Edition\n\n\n
362 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
363 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
364 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
365 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
366 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
367 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
368 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
369 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
370 \n\n\n\n\n\nThe Telegraph (India)\nAugust 6, 2021 Friday\n\n\n
371 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
372 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
373 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
374 \n\n\n\n\n\nFree Press Journal (India)\nJuly 31, 2021\n\n\n
375 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
376 \n\n\n\n\n\nDNA\nJuly 25, 2021 Sunday\n\n\n
377 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
378 \n\n\n\n\n\nThe Telegraph (India)\nAugust 1, 2021 Sunday\n\n\n
379 \n\n\n\n\n\nIndian Express\nJuly 29, 2021 Thursday\n\n\n
380 \n\n\n\n\n\nDNA\nAugust 6, 2021 Friday\n\n\n
381 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
382 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
383 \n\n\n\n\n\nDNA\nAugust 4, 2021 Wednesday\n\n\n
384 \n\n\n\n\n\nDNA\nJuly 24, 2021 Saturday\n\n\n
385 \n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
386 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
387 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
388 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
389 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
390 \n\n\n\n\n\nThe Telegraph (India)\nAugust 5, 2021 Thursday\n\n\n
391 \n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
392 \n\n\n\n\n\nIndian Express\nJuly 27, 2021 Tuesday\n\n\n
393 \n\n\n\n\n\nMINT\nAugust 3, 2021 Tuesday\n\n\n
394 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
395 \n\n\n\n\n\nIndia Today Online\nAugust 9, 2021 Monday 06:51 PM GMT\n\n\n
396 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
397 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nHyderabad Edition\n\n\n
398 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 24, 2021 Saturday\nBangalore Edition\n\n\n
399 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nJaipur Edition\n\n\n
400 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nDelhi Edition\n\n\n
401 \n\n\n\n\n\n\nThe Telegraph (India)\nAugust 9, 2021 Monday\n\n\n
402 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
403 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
404 \n\n\n\n\n\nThe Hindu\nAugust 8, 2021 Sunday\n\n\n
405 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
406 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
407 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nLucknow Edition\n\n\n
408 \n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 09:30 PM GMT\n\n\n
409 \n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
410 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
411 \n\n\n\n\n\nThe Telegraph (India)\nJuly 29, 2021 Thursday\n\n\n
412 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nChennai Edition\n\n\n
413 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
414 \n\n\n\n\n\nIndian Express\nJuly 30, 2021 Friday\n\n\n
415 \n\n\n\n\n\nIndian Express\nAugust 1, 2021 Sunday\n\n\n
416 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
417 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 26, 2021 Monday\nKolkata Edition\n\n\n
418 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
419 \n\n\n\n\n\nIndian Express\nAugust 3, 2021 Tuesday\n\n\n
420 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nMumbai Edition\n\n\n
421 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
422 \n\n\n\n\n\nFree Press Journal (India)\nJuly 28, 2021\n\n\n
423 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nJaipur Edition\n\n\n
424 \n\n\n\n\n\nMINT\nAugust 9, 2021 Monday\n\n\n
425 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 04:33 AM GMT\n\n\n
426 \n\n\n\n\n\nMINT\nAugust 4, 2021 Wednesday\n\n\n
427 \n\n\n\n\n\nDNA\nAugust 8, 2021 Sunday\n\n\n
428 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nChennai Edition\n\n\n
429 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nKolkata Edition\n\n\n
430 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
431 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
432 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
433 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nBangalore Edition\n\n\n
434 \n\n\n\n\n\nIndian Express\nJuly 30, 2021 Friday\n\n\n
435 \n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 11:14 AM GMT\n\n\n
436 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
437 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nLucknow Edition\n\n\n
438 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 01:26 PM GMT\n\n\n
439 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
440 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 8, 2021 Sunday\nKolkata Edition\n\n\n
441 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nPune Edition\n\n\n
442 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
443 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 4, 2021 Wednesday\nBangalore Edition\n\n\n
444 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 4, 2021 Wednesday\nDelhi Edition\n\n\n
445 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 4, 2021 Wednesday\nKolkata Edition\n\n\n
446 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
447 \n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
448 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 02:14 PM GMT\n\n\n
449 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
450 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
451 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
452 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
453 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
454 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
455 \n\n\n\n\n\nDNA\nAugust 1, 2021 Sunday\n\n\n
456 \n\n\n\n\n\nFree Press Journal (India)\nJuly 27, 2021\n\n\n
457 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nJaipur Edition\n\n\n
458 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
459 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nBangalore Edition\n\n\n
460 \n\n\n\n\n\nDNA\nJuly 26, 2021 Monday\n\n\n
461 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nBangalore Edition\n\n\n
462 \n\n\n\n\n\nThe Telegraph (India)\nAugust 6, 2021 Friday\n\n\n
463 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
464 \n\n\n\n\n\nIndian Express\nAugust 3, 2021 Tuesday\n\n\n
465 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nJaipur Edition\n\n\n
466 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 9, 2021 Monday\nKolkata Edition\n\n\n
467 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
468 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
469 \n\n\n\n\n\nDNA\nAugust 6, 2021 Friday\n\n\n
470 \n\n\n\n\n\nDNA\nAugust 7, 2021 Saturday\n\n\n
471 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
472 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 27, 2021 Tuesday\nHyderabad Edition\n\n\n
473 \n\n\n\n\n\nThe Telegraph (India)\nAugust 6, 2021 Friday\n\n\n
474 \n\n\n\n\n\nIndian Express\nJuly 30, 2021 Friday\n\n\n
475 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 30, 2021 Friday\nKolkata Edition\n\n\n
476 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
477 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
478 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
479 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nJaipur Edition\n\n\n
480 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
481 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
482 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
483 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
484 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nPune Edition\n\n\n
485 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
486 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
487 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
488 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
489 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
490 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
491 \n\n\n\n\n\nThe Telegraph (India)\nAugust 2, 2021 Monday\n\n\n
492 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
493 \n\n\n\n\n\nFree Press Journal (India)\nAugust 1, 2021\n\n\n
494 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nAhmedabad Edition\n\n\n
495 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nHyderabad Edition\n\n\n
496 \n\n\n\n\n\nIndian Express\nAugust 1, 2021 Sunday\n\n\n
497 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nAhmedabad Edition\n\n\n
498 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
499 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
500 \n\n\n\n\n\nMINT\nJuly 24, 2021 Saturday\n\n\n
501 \n\n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 10:57 PM GMT\n\n\n
502 \n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 05:46 PM GMT\n\n\n
503 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
504 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nBangalore Edition\n\n\n
505 \n\n\n\n\n\nThe Hindu\nAugust 8, 2021 Sunday\n\n\n
506 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
507 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
508 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
509 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
510 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
511 \n\n\n\n\n\nFree Press Journal (India)\nJuly 31, 2021\n\n\n
512 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nAhmedabad Edition\n\n\n
513 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
514 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nChennai Edition\n\n\n
515 \n\n\n\n\n\nThe Telegraph (India)\nJuly 24, 2021 Saturday\n\n\n
516 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nMumbai Edition\n\n\n
517 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
518 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
519 \n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 10:09 AM GMT\n\n\n
520 \n\n\n\n\n\nIndian Express\nJuly 28, 2021 Wednesday\n\n\n
521 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
522 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
523 \n\n\n\n\n\nFree Press Journal (India)\nAugust 4, 2021\n\n\n
524 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nMumbai Edition\n\n\n
525 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nHyderabad Edition\n\n\n
526 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nAhmedabad Edition\n\n\n
527 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
528 \n\n\n\n\n\nDNA\nAugust 8, 2021 Sunday\n\n\n
529 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nLucknow Edition\n\n\n
530 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 4, 2021 Wednesday\nMumbai Edition\n\n\n
531 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nHyderabad Edition\n\n\n
532 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
533 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
534 \n\n\n\n\n\nFree Press Journal (India)\nAugust 8, 2021\n\n\n
535 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
536 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
537 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
538 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 06:31 PM GMT\n\n\n
539 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
540 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
541 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nHyderabad Edition\n\n\n
542 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
543 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nMumbai Edition\n\n\n
544 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
545 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nJaipur Edition\n\n\n
546 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nMumbai Edition\n\n\n
547 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
548 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
549 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
550 \n\n\n\n\n\nIndia Today Online\nAugust 9, 2021 Monday 01:33 PM GMT\n\n\n
551 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
552 \n\n\n\n\n\nIndia Today Online\nAugust 2, 2021 Monday 03:04 PM GMT\n\n\n
553 \n\n\n\n\n\nThe Telegraph (India)\nJuly 23, 2021 Friday\n\n\n
554 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nHyderabad Edition\n\n\n
555 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
556 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
557 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
558 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 1, 2021 Sunday\nKolkata Edition\n\n\n
559 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
560 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
561 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
562 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nHyderabad Edition\n\n\n
563 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nPune Edition\n\n\n
564 \n\n\n\n\n\nIndia Today Online\nJuly 26, 2021 Monday 10:44 AM GMT\n\n\n
565 \n\n\n\n\n\nThe Hindu\nAugust 7, 2021 Saturday\n\n\n
566 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
567 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
568 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nChennai Edition\n\n\n
569 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nMumbai Edition\n\n\n
570 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nPune Edition\n\n\n
571 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nDelhi Edition\n\n\n
572 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
573 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nJaipur Edition\n\n\n
574 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
575 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
576 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nAhmedabad Edition\n\n\n
577 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
578 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 31, 2021 Saturday\nKolkata Edition\n\n\n
579 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
580 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
581 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
582 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nMumbai Edition\n\n\n
583 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nChennai Edition\n\n\n
584 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nMumbai Edition\n\n\n
585 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
586 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
587 \n\n\n\n\n\nIndian Express\nAugust 5, 2021 Thursday\n\n\n
588 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nKolkata Edition\n\n\n
589 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
590 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nDelhi Edition\n\n\n
591 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nMumbai Edition\n\n\n
592 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nHyderabad Edition\n\n\n
593 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
594 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nAhmedabad Edition\n\n\n
595 \n\n\n\n\n\nIndia Today Online\nAugust 8, 2021 Sunday 04:21 AM GMT\n\n\n
596 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nChennai Edition\n\n\n
597 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
598 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
599 \n\n\n\n\n\nThe Hindu\nAugust 7, 2021 Saturday\n\n\n
600 \n\n\n\n\n\nThe Hindu\nJuly 31, 2021 Saturday\n\n\n
601 \n\n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
602 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
603 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
604 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 22, 2021 Thursday\nBangalore Edition\n\n\n
605 \n\n\n\n\n\nIndian Express\nAugust 5, 2021 Thursday\n\n\n
606 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
607 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
608 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nChennai Edition\n\n\n
609 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 22, 2021 Thursday\nJaipur Edition\n\n\n
610 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
611 \n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
612 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 22, 2021 Thursday\nMumbai Edition\n\n\n
613 \n\n\n\n\n\nThe Telegraph (India)\nAugust 3, 2021 Tuesday\n\n\n
614 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
615 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
616 \n\n\n\n\n\nMINT\nAugust 8, 2021 Sunday\n\n\n
617 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
618 \n\n\n\n\n\nFree Press Journal (India)\nAugust 9, 2021\n\n\n
619 \n\n\n\n\n\nMINT\nAugust 3, 2021 Tuesday\n\n\n
620 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
621 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
622 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nAhmedabad Edition\n\n\n
623 \n\n\n\n\n\nMINT\nJuly 27, 2021 Tuesday\n\n\n
624 \n\n\n\n\n\nIndian Express\nJuly 31, 2021 Saturday\n\n\n
625 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
626 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
627 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nPune Edition\n\n\n
628 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
629 \n\n\n\n\n\nIndia Today Online\nAugust 5, 2021 Thursday 04:35 PM GMT\n\n\n
630 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
631 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nHyderabad Edition\n\n\n
632 \n\n\n\n\n\nIndian Express\nJuly 26, 2021 Monday\n\n\n
633 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
634 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
635 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
636 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
637 \n\n\n\n\n\nIndian Express\nJuly 27, 2021 Tuesday\n\n\n
638 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 30, 2021 Friday\nMumbai Edition\n\n\n
639 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 24, 2021 Saturday\nJaipur Edition\n\n\n
640 \n\n\n\n\n\nFree Press Journal (India)\nJuly 26, 2021\n\n\n
641 \n\n\n\n\n\nIndian Express\nJuly 27, 2021 Tuesday\n\n\n
642 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nHyderabad Edition\n\n\n
643 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
644 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
645 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
646 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
647 \n\n\n\n\n\nIndian Express\nJuly 31, 2021 Saturday\n\n\n
648 \n\n\n\n\n\nIndian Express\nJuly 31, 2021 Saturday\n\n\n
649 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
650 \n\n\n\n\n\nFree Press Journal (India)\nAugust 4, 2021\n\n\n
651 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 3, 2021 Tuesday\nBangalore Edition\n\n\n
652 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nJaipur Edition\n\n\n
653 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
654 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nBangalore Edition\n\n\n
655 \n\n\n\n\n\nThe Hindu\nAugust 7, 2021 Saturday\n\n\n
656 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nLucknow Edition\n\n\n
657 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 3, 2021 Tuesday\nDelhi Edition\n\n\n
658 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
659 \n\n\n\n\n\nMINT\nJuly 25, 2021 Sunday\n\n\n
660 \n\n\n\n\n\nIndian Express\nJuly 28, 2021 Wednesday\n\n\n
661 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 31, 2021 Saturday\nMumbai Edition\n\n\n
662 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
663 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
664 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
665 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 31, 2021 Saturday\nBangalore Edition\n\n\n
666 \n\n\n\n\n\nDNA\nAugust 4, 2021 Wednesday\n\n\n
667 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 31, 2021 Saturday\nDelhi Edition\n\n\n
668 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
669 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
670 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
671 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nKolkata Edition\n\n\n
672 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nAhmedabad Edition\n\n\n
673 \n\n\n\n\n\nIndia Today Online\nJuly 25, 2021 Sunday 02:08 PM GMT\n\n\n
674 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
675 \n\n\n\n\n\nIndian Express\nAugust 2, 2021 Monday\n\n\n
676 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
677 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
678 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
679 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
680 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 9, 2021 Monday\nBangalore Edition\n\n\n
681 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
682 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
683 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nMumbai Edition\n\n\n
684 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
685 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nLucknow Edition\n\n\n
686 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
687 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nHyderabad Edition\n\n\n
688 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nDelhi Edition\n\n\n
689 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
690 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nPune Edition\n\n\n
691 \n\n\n\n\n\nHindustan Times\nJuly 22, 2021 Thursday\n\n\n
692 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
693 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
694 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
695 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
696 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
697 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
698 \n\n\n\n\n\nThe Telegraph (India)\nAugust 6, 2021 Friday\n\n\n
699 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
700 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 4, 2021 Wednesday\nPune Edition\n\n\n
701 \n\n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
702 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
703 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
704 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
705 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 24, 2021 Saturday\nAhmedabad Edition\n\n\n
706 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
707 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
708 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 6, 2021 Friday\nKolkata Edition\n\n\n
709 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
710 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 30, 2021 Friday\nPune Edition\n\n\n
711 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
712 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
713 \n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
714 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nBangalore Edition\n\n\n
715 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
716 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nAhmedabad Edition\n\n\n
717 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nKolkata Edition\n\n\n
718 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
719 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nHyderabad Edition\n\n\n
720 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
721 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
722 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
723 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
724 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
725 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
726 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
727 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
728 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nHyderabad Edition\n\n\n
729 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
730 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
731 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
732 \n\n\n\n\n\nThe Hindu\nAugust 8, 2021 Sunday\n\n\n
733 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
734 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nKolkata Edition\n\n\n
735 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
736 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
737 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nKolkata Edition\n\n\n
738 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nAhmedabad Edition\n\n\n
739 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nHyderabad Edition\n\n\n
740 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 30, 2021 Friday\nDelhi Edition\n\n\n
741 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
742 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nMumbai Edition\n\n\n
743 \n\n\n\n\n\nMINT\nAugust 2, 2021 Monday\n\n\n
744 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
745 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
746 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
747 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
748 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
749 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
750 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
751 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
752 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
753 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
754 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
755 \n\n\n\n\n\nMINT\nJuly 25, 2021 Sunday\n\n\n
756 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
757 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
758 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 24, 2021 Saturday\nChennai Edition\n\n\n
759 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
760 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nAhmedabad Edition\n\n\n
761 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
762 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
763 \n\n\n\n\n\nIndian Express\nAugust 5, 2021 Thursday\n\n\n
764 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
765 \n\n\n\n\n\nThe Hindu\nAugust 7, 2021 Saturday\n\n\n
766 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801 \n\n\n\n\n\n\nThe Hindu\nJuly 30, 2021 Friday\n\n\n
802 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 1, 2021 Sunday\nKolkata Edition\n\n\n
803 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nPune Edition\n\n\n
804 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
805 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
806 \n\n\n\n\n\nIndian Express\nJuly 29, 2021 Thursday\n\n\n
807 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
808 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
809 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
810 \n\n\n\n\n\nIndian Express\nJuly 29, 2021 Thursday\n\n\n
811 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
812 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
813 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nHyderabad Edition\n\n\n
814 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
815 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 26, 2021 Monday\nMumbai Edition\n\n\n
816 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
817 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
818 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 5, 2021 Thursday\nBangalore Edition\n\n\n
819 \n\n\n\n\n\nIndia Today Online\nAugust 4, 2021 Wednesday 03:12 PM GMT\n\n\n
820 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nAhmedabad Edition\n\n\n
821 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
822 \n\n\n\n\n\nFree Press Journal (India)\nAugust 9, 2021\n\n\n
823 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nAhmedabad Edition\n\n\n
824 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nAhmedabad Edition\n\n\n
825 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nHyderabad Edition\n\n\n
826 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nPune Edition\n\n\n
827 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nLucknow Edition\n\n\n
828 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
829 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
830 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nJaipur Edition\n\n\n
831 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 27, 2021 Tuesday\nDelhi Edition\n\n\n
832 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nHyderabad Edition\n\n\n
833 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
834 \n\n\n\n\n\nThe Hindu\nJuly 26, 2021 Monday\n\n\n
835 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
836 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
837 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
838 \n\n\n\n\n\nDNA\nJuly 25, 2021 Sunday\n\n\n
839 \n\n\n\n\n\nIndian Express\nJuly 28, 2021 Wednesday\n\n\n
840 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nPune Edition\n\n\n
841 \n\n\n\n\n\nMINT\nAugust 4, 2021 Wednesday\n\n\n
842 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
843 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
844 \n\n\n\n\n\nFree Press Journal (India)\nJuly 30, 2021\n\n\n
845 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nJaipur Edition\n\n\n
846 \n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 05:49 PM GMT\n\n\n
847 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
848 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nJaipur Edition\n\n\n
849 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nJaipur Edition\n\n\n
850 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
851 \n\n\n\n\n\nIndia Today Online\nJuly 26, 2021 Monday 11:43 PM GMT\n\n\n
852 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nAhmedabad Edition\n\n\n
853 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nLucknow Edition\n\n\n
854 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 5, 2021 Thursday\nKolkata Edition\n\n\n
855 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 5, 2021 Thursday\nMumbai Edition\n\n\n
856 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
857 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nHyderabad Edition\n\n\n
858 \n\n\n\n\n\nThe Telegraph (India)\nAugust 3, 2021 Tuesday\n\n\n
859 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nHyderabad Edition\n\n\n
860 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
861 \n\n\n\n\n\nHindustan Times\nJuly 27, 2021 Tuesday\n\n\n
862 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
863 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nHyderabad Edition\n\n\n
864 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
865 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
866 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nChennai Edition\n\n\n
867 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nBangalore Edition\n\n\n
868 \n\n\n\n\n\nMINT\nJuly 26, 2021 Monday\n\n\n
869 \n\n\n\n\n\nIndia Today Online\nJuly 31, 2021 Saturday 05:05 PM GMT\n\n\n
870 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
871 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nDelhi Edition\n\n\n
872 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nAhmedabad Edition\n\n\n
873 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nChennai Edition\n\n\n
874 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
875 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
876 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
877 \n\n\n\n\n\nThe Telegraph (India)\nAugust 5, 2021 Thursday\n\n\n
878 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nLucknow Edition\n\n\n
879 \n\n\n\n\n\nHindustan Times\nJuly 25, 2021 Sunday\n\n\n
880 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
881 \n\n\n\n\n\nThe Telegraph (India)\nAugust 4, 2021 Wednesday\n\n\n
882 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 4, 2021 Wednesday\nPune Edition\n\n\n
883 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
884 \n\n\n\n\n\nThe Telegraph (India)\nAugust 3, 2021 Tuesday\n\n\n
885 \n\n\n\n\n\nDNA\nJuly 28, 2021 Wednesday\n\n\n
886 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
887 \n\n\n\n\n\nFree Press Journal (India)\nJuly 27, 2021\n\n\n
888 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
889 \n\n\n\n\n\nDNA\nJuly 31, 2021 Saturday\n\n\n
890 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nKolkata Edition\n\n\n
891 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
892 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nChennai Edition\n\n\n
893 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nBangalore Edition\n\n\n
894 \n\n\n\n\n\nIndia Today Online\nAugust 6, 2021 Friday 08:19 PM GMT\n\n\n
895 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
896 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
897 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 5, 2021 Thursday\nDelhi Edition\n\n\n
898 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
899 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 30, 2021 Friday\nKolkata Edition\n\n\n
900 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
901 \n\n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
902 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nAhmedabad Edition\n\n\n
903 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
904 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
905 \n\n\n\n\n\nThe Telegraph (India)\nJuly 28, 2021 Wednesday\n\n\n
906 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nJaipur Edition\n\n\n
907 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
908 \n\n\n\n\n\nMINT\nAugust 6, 2021 Friday\n\n\n
909 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nBangalore Edition\n\n\n
910 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
911 \n\n\n\n\n\nThe Hindu\nJuly 26, 2021 Monday\n\n\n
912 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nKolkata Edition\n\n\n
913 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
914 \n\n\n\n\n\nThe Hindu\nJuly 30, 2021 Friday\n\n\n
915 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
916 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
917 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
918 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
919 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
920 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
921 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nPune Edition\n\n\n
922 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 27, 2021 Tuesday\nBangalore Edition\n\n\n
923 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nPune Edition\n\n\n
924 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
925 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
926 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
927 \n\n\n\n\n\nFree Press Journal (India)\nAugust 3, 2021\n\n\n
928 \n\n\n\n\n\nHindustan Times\nJuly 29, 2021 Thursday\n\n\n
929 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
930 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 26, 2021 Monday\nDelhi Edition\n\n\n
931 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
932 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
933 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
934 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
935 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
936 \n\n\n\n\n\nThe Hindu\nJuly 26, 2021 Monday\n\n\n
937 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
938 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nMumbai Edition\n\n\n
939 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
940 \n\n\n\n\n\nThe Telegraph (India)\nAugust 9, 2021 Monday\n\n\n
941 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
942 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
943 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nKolkata Edition\n\n\n
944 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nChennai Edition\n\n\n
945 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nAhmedabad Edition\n\n\n
946 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nMumbai Edition\n\n\n
947 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nKolkata Edition\n\n\n
948 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nJuly 26, 2021 Monday\nBangalore Edition\n\n\n
949 \n\n\n\n\n\nMINT\nJuly 31, 2021 Saturday\n\n\n
950 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
951 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
952 \n\n\n\n\n\nHindustan Times\nAugust 9, 2021 Monday\n\n\n
953 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
954 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
955 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
956 \n\n\n\n\n\nThe Telegraph (India)\nAugust 9, 2021 Monday\n\n\n
957 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
958 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
959 \n\n\n\n\n\nThe Telegraph (India)\nAugust 7, 2021 Saturday\n\n\n
960 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nChennai Edition\n\n\n
961 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nMumbai Edition\n\n\n
962 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nDelhi Edition\n\n\n
963 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nDelhi Edition\n\n\n
964 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
965 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
966 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
967 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
968 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nKolkata Edition\n\n\n
969 \n\n\n\n\n\nThe Hindu\nJuly 26, 2021 Monday\n\n\n
970 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
971 \n\n\n\n\n\nHindustan Times\nAugust 4, 2021 Wednesday\n\n\n
972 \n\n\n\n\n\nFree Press Journal (India)\nJuly 31, 2021\n\n\n
973 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
974 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nHyderabad Edition\n\n\n
975 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
976 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nLucknow Edition\n\n\n
977 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
978 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
979 \n\n\n\n\n\nHindustan Times\nJuly 28, 2021 Wednesday\n\n\n
980 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
981 \n\n\n\n\n\nIndian Express\nAugust 5, 2021 Thursday\n\n\n
982 \n\n\n\n\n\nFree Press Journal (India)\nJuly 30, 2021\n\n\n
983 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nPune Edition\n\n\n
984 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nKolkata Edition\n\n\n
985 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nAhmedabad Edition\n\n\n
986 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 28, 2021 Wednesday\nLucknow Edition\n\n\n
987 \n\n\n\n\n\nHindustan Times\nJuly 31, 2021 Saturday\n\n\n
988 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 8, 2021 Sunday\nKolkata Edition\n\n\n
989 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
990 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nMumbai Edition\n\n\n
991 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nLucknow Edition\n\n\n
992 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nBangalore Edition\n\n\n
993 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nMumbai Edition\n\n\n
994 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nChennai Edition\n\n\n
995 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
996 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nPune Edition\n\n\n
997 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nMumbai Edition\n\n\n
998 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
999 \n\n\n\n\n\nThe Telegraph (India)\nAugust 8, 2021 Sunday\n\n\n
1000 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nMumbai Edition\n\n\n
1001 \n\n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nAhmedabad Edition\n\n\n
1002 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nChennai Edition\n\n\n
1003 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nKolkata Edition\n\n\n
1004 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
1005 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
1006 \n\n\n\n\n\nIndian Express\nAugust 8, 2021 Sunday\n\n\n
1007 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nHyderabad Edition\n\n\n
1008 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nJaipur Edition\n\n\n
1009 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nLucknow Edition\n\n\n
1010 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nJaipur Edition\n\n\n
1011 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nMumbai Edition\n\n\n
1012 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 3, 2021 Tuesday\nDelhi Edition\n\n\n
1013 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 7, 2021 Saturday\nKolkata Edition\n\n\n
1014 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 30, 2021 Friday\nKolkata Edition\n\n\n
1015 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nDelhi Edition\n\n\n
1016 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nChennai Edition\n\n\n
1017 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nLucknow Edition\n\n\n
1018 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 2, 2021 Monday\nJaipur Edition\n\n\n
1019 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nKolkata Edition\n\n\n
1020 \n\n\n\n\n\nThe Hindu\nAugust 9, 2021 Monday\n\n\n
1021 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nMumbai Edition\n\n\n
1022 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
1023 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nLucknow Edition\n\n\n
1024 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nBangalore Edition\n\n\n
1025 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
1026 \n\n\n\n\n\nMINT\nAugust 6, 2021 Friday\n\n\n
1027 \n\n\n\n\n\nIndian Express\nAugust 6, 2021 Friday\n\n\n
1028 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
1029 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nLucknow Edition\n\n\n
1030 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nBangalore Edition\n\n\n
1031 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nAhmedabad Edition\n\n\n
1032 \n\n\n\n\n\nHindustan Times\nAugust 8, 2021 Sunday\n\n\n
1033 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nAhmedabad Edition\n\n\n
1034 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
1035 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nJaipur Edition\n\n\n
1036 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 31, 2021 Saturday\nChennai Edition\n\n\n
1037 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
1038 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nAhmedabad Edition\n\n\n
1039 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
1040 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nMumbai Edition\n\n\n
1041 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nMumbai Edition\n\n\n
1042 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nHyderabad Edition\n\n\n
1043 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
1044 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 4, 2021 Wednesday\nKolkata Edition\n\n\n
1045 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 4, 2021 Wednesday\nAhmedabad Edition\n\n\n
1046 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nPune Edition\n\n\n
1047 \n\n\n\n\n\nIndia Today Online\nJuly 28, 2021 Wednesday 03:32 PM GMT\n\n\n
1048 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nBangalore Edition\n\n\n
1049 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
1050 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nChennai Edition\n\n\n
1051 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nMumbai Edition\n\n\n
1052 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
1053 \n\n\n\n\n\nHindustan Times\nJuly 30, 2021 Friday\n\n\n
1054 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 6, 2021 Friday\nMumbai Edition\n\n\n
1055 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 29, 2021 Thursday\nPune Edition\n\n\n
1056 \n\n\n\n\n\nDNA\nJuly 27, 2021 Tuesday\n\n\n
1057 \n\n\n\n\n\nIndian Express\nJuly 26, 2021 Monday\n\n\n
1058 \n\n\n\n\n\nIndian Express\nJuly 23, 2021 Friday\n\n\n
1059 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nLucknow Edition\n\n\n
1060 \n\n\n\n\n\nHindustan Times\nJuly 26, 2021 Monday\n\n\n
1061 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nKolkata Edition\n\n\n
1062 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
1063 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
1064 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
1065 \n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
1066 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nDelhi Edition\n\n\n
1067 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nMumbai Edition\n\n\n
1068 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 24, 2021 Saturday\nHyderabad Edition\n\n\n
1069 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
1070 \n\n\n\n\n\nThe Telegraph (India)\nAugust 1, 2021 Sunday\n\n\n
1071 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
1072 \n\n\n\n\n\nThe Hindu\nAugust 3, 2021 Tuesday\n\n\n
1073 \n\n\n\n\n\nFree Press Journal (India)\nAugust 9, 2021\n\n\n
1074 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nAhmedabad Edition\n\n\n
1075 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
1076 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
1077 \n\n\n\n\n\nThe Hindu\nAugust 3, 2021 Tuesday\n\n\n
1078 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
1079 \n\n\n\n\n\nMINT\nJuly 22, 2021 Thursday\n\n\n
1080 \n\n\n\n\n\nThe Telegraph (India)\nJuly 31, 2021 Saturday\n\n\n
1081 \n\n\n\n\n\nThe Hindu\nJuly 24, 2021 Saturday\n\n\n
1082 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
1083 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
1084 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
1085 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
1086 \n\n\n\n\n\nMINT\nJuly 27, 2021 Tuesday\n\n\n
1087 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
1088 \n\n\n\n\n\nMINT\nAugust 5, 2021 Thursday\n\n\n
1089 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
1090 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
1091 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nMumbai Edition\n\n\n
1092 \n\n\n\n\n\nMINT\nAugust 4, 2021 Wednesday\n\n\n
1093 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
1094 \n\n\n\n\n\nHindustan Times\nJuly 24, 2021 Saturday\n\n\n
1095 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
1096 \n\n\n\n\n\nThe Telegraph (India)\nJuly 25, 2021 Sunday\n\n\n
1097 \n\n\n\n\n\nMINT\nJuly 27, 2021 Tuesday\n\n\n
1098 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
1099 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nJaipur Edition\n\n\n
1100 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
1101 \n\n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
1102 \n\n\n\n\n\nMINT\nJuly 28, 2021 Wednesday\n\n\n
1103 \n\n\n\n\n\nDNA\nAugust 4, 2021 Wednesday\n\n\n
1104 \n\n\n\n\n\nThe Telegraph (India)\nJuly 30, 2021 Friday\n\n\n
1105 \n\n\n\n\n\nFree Press Journal (India)\nJuly 27, 2021\n\n\n
1106 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
1107 \n\n\n\n\n\nFree Press Journal (India)\nAugust 4, 2021\n\n\n
1108 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nKolkata Edition\n\n\n
1109 \n\n\n\n\n\nHindustan Times\nAugust 1, 2021 Sunday\n\n\n
1110 \n\n\n\n\n\nDNA\nJuly 30, 2021 Friday\n\n\n
1111 \n\n\n\n\n\nDNA\nAugust 4, 2021 Wednesday\n\n\n
1112 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 27, 2021 Tuesday\nKolkata Edition\n\n\n
1113 \n\n\n\n\n\nDNA\nJuly 26, 2021 Monday\n\n\n
1114 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 26, 2021 Monday\nAhmedabad Edition\n\n\n
1115 \n\n\n\n\n\nDNA\nJuly 29, 2021 Thursday\n\n\n
1116 \n\n\n\n\n\nFree Press Journal (India)\nJuly 25, 2021\n\n\n
1117 \n\n\n\n\n\nFree Press Journal (India)\nJuly 30, 2021\n\n\n
1118 \n\n\n\n\n\nFree Press Journal (India)\nJuly 24, 2021\n\n\n
1119 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
1120 \n\n\n\n\n\nThe Telegraph (India)\nJuly 28, 2021 Wednesday\n\n\n
1121 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
1122 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nBangalore Edition\n\n\n
1123 \n\n\n\n\n\nThe Telegraph (India)\nJuly 30, 2021 Friday\n\n\n
1124 \n\n\n\n\n\nDNA\nAugust 2, 2021 Monday\n\n\n
1125 \n\n\n\n\n\nThe Telegraph (India)\nJuly 26, 2021 Monday\n\n\n
1126 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
1127 \n\n\n\n\n\nDNA\nAugust 6, 2021 Friday\n\n\n
1128 \n\n\n\n\n\nThe Telegraph (India)\nJuly 29, 2021 Thursday\n\n\n
1129 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
1130 \n\n\n\n\n\nMINT\nAugust 6, 2021 Friday\n\n\n
1131 \n\n\n\n\n\nHindustan Times\nAugust 2, 2021 Monday\n\n\n
1132 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
1133 \n\n\n\n\n\nFree Press Journal (India)\nJuly 27, 2021\n\n\n
1134 \n\n\n\n\n\nFree Press Journal (India)\nJuly 31, 2021\n\n\n
1135 \n\n\n\n\n\nFree Press Journal (India)\nJuly 26, 2021\n\n\n
1136 \n\n\n\n\n\nThe Hindu\nAugust 9, 2021 Monday\n\n\n
1137 \n\n\n\n\n\nFree Press Journal (India)\nAugust 7, 2021\n\n\n
1138 \n\n\n\n\n\nThe Hindu\nAugust 8, 2021 Sunday\n\n\n
1139 \n\n\n\n\n\nIndian Express\nAugust 9, 2021 Monday\n\n\n
1140 \n\n\n\n\n\nMINT\nAugust 3, 2021 Tuesday\n\n\n
1141 \n\n\n\n\n\nThe Hindu\nJuly 25, 2021 Sunday\n\n\n
1142 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
1143 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nLucknow Edition\n\n\n
1144 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
1145 \n\n\n\n\n\nMINT\nAugust 6, 2021 Friday\n\n\n
1146 \n\n\n\n\n\nHindustan Times\nAugust 6, 2021 Friday\n\n\n
1147 \n\n\n\n\n\nHindustan Times\nAugust 3, 2021 Tuesday\n\n\n
1148 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
1149 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
1150 \n\n\n\n\n\nDNA\nAugust 6, 2021 Friday\n\n\n
1151 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nDelhi Edition\n\n\n
1152 \n\n\n\n\n\nHindustan Times\nJuly 23, 2021 Friday\n\n\n
1153 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 23, 2021 Friday\nAhmedabad Edition\n\n\n
1154 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
1155 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
1156 \n\n\n\n\n\nThe Hindu\nAugust 2, 2021 Monday\n\n\n
1157 \n\n\n\n\n\nHindustan Times\nAugust 5, 2021 Thursday\n\n\n
1158 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nJaipur Edition\n\n\n
1159 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
1160 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nLucknow Edition\n\n\n
1161 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nHyderabad Edition\n\n\n
1162 \n\n\n\n\n\nMINT\nJuly 30, 2021 Friday\n\n\n
1163 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nAhmedabad Edition\n\n\n
1164 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nPune Edition\n\n\n
1165 \n\n\n\n\n\nHindustan Times\nAugust 7, 2021 Saturday\n\n\n
1166 \n\n\n\n\n\nThe Hindu\nJuly 26, 2021 Monday\n\n\n
1167 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
1168 \n\n\n\n\n\nThe Hindu\nAugust 5, 2021 Thursday\n\n\n
1169 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 5, 2021 Thursday\nJaipur Edition\n\n\n
1170 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nPune Edition\n\n\n
1171 \n\n\n\n\n\nThe Hindu\nAugust 2, 2021 Monday\n\n\n
1172 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 1, 2021 Sunday\nBangalore Edition\n\n\n
1173 \n\n\n\n\n\nThe Telegraph (India)\nJuly 27, 2021 Tuesday\n\n\n
1174 \n\n\n\n\n\nMINT\nJuly 25, 2021 Sunday\n\n\n
1175 \n\n\n\n\n\nThe Hindu\nAugust 6, 2021 Friday\n\n\n
1176 \n\n\n\n\n\nIndia Today Online\nAugust 7, 2021 Saturday 04:44 PM GMT\n\n\n
1177 \n\n\n\n\n\nIndian Express\nAugust 7, 2021 Saturday\n\n\n
1178 \n\n\n\n\n\nEconomic Times (E-Paper Edition)\nAugust 3, 2021 Tuesday\nKolkata Edition\n\n\n
1179 \n\n\n\n\n\nFree Press Journal (India)\nAugust 6, 2021\n\n\n
1180 \n\n\n\n\n\nMINT\nAugust 7, 2021 Saturday\n\n\n
1181 \n\n\n\n\n\nMINT\nJuly 29, 2021 Thursday\n\n\n
1182 \n\n\n\n\n\nFree Press Journal (India)\nAugust 5, 2021\n\n\n
1183 \n\n\n\n\n\nThe Hindu\nJuly 30, 2021 Friday\n\n\n
1184 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 9, 2021 Monday\nJaipur Edition\n\n\n
1185 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
1186 \n\n\n\n\n\nTimes of India (Electronic Edition)\nAugust 8, 2021 Sunday\nAhmedabad Edition\n\n\n
1187 \n\n\n\n\n\nDNA\nAugust 5, 2021 Thursday\n\n\n
1188 \n\n\n\n\n\nFree Press Journal (India)\nJuly 25, 2021\n\n\n
1189 \n\n\n\n\n\nFree Press Journal (India)\nAugust 2, 2021\n\n\n
1190 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nJaipur Edition\n\n\n
1191 \n\n\n\n\n\nTimes of India (Electronic Edition)\nJuly 25, 2021 Sunday\nMumbai Edition\n\n\n
Tags
1 \nSubject: OLYMPICS (92%); CRICKET (90%); OLYMPIC COMMITTEES (90%); SPORTS GOVERNING BODIES (90%); SPORTS & RECREATION EVENTS (89%); AGREEMENTS (78%); WOMEN'S SPORTS (78%); ASSOCIATIONS & ORGANIZATIONS (77%); TALKS & MEETINGS (77%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (57%)\n\nIndustry: BUDGETS (66%); TELEVISION INDUSTRY (50%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (92%); LOS ANGELES, CA, USA (79%); BIRMINGHAM, ENGLAND (58%); CALIFORNIA, USA (58%); INDIA (94%); UNITED KINGDOM (79%); FRANCE (58%)\n\nLoad-Date: August 8, 2021\n\n\n
2 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (89%); EQUESTRIAN SPORTS (78%); WOMEN'S SPORTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (91%)\n\nLoad-Date: August 1, 2021\n\n\n
3 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (78%); SPORTS AWARDS (78%)\n\nGeographic: NEW DELHI, INDIA (59%); INDIA (92%)\n\nLoad-Date: August 9, 2021\n\n\n
4 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); ATHLETES (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); BOAT RACING (89%); ROWING (89%); ARCHERY (78%); BADMINTON (78%); BOXING (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); TOURNAMENTS (76%); BOATING & RAFTING (75%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%); UNITED KINGDOM (73%)\n\nLoad-Date: July 27, 2021\n\n\n
5 \nSubject: ARMIES (94%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ARMED FORCES (90%); HEADS OF STATE & GOVERNMENT (90%); PHOTO & VIDEO SHARING (90%); PRIME MINISTERS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); HUMAN RESOURCES & PERSONNEL MANAGEMENT (78%); TRACK & FIELD (78%); EDUCATION & TRAINING (77%); MILITARY SERVICE (77%); SOCIAL MEDIA (77%); EDUCATION SYSTEMS & INSTITUTIONS (74%); GOVERNMENT ADVISORS & MINISTERS (73%); STUDENTS & STUDENT LIFE (73%); INTERNET SOCIAL NETWORKING (72%); WEAPONS & ARMS (72%)\n\nIndustry: ARMIES (94%); ARMED FORCES (90%); PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%); MEDIA CONTENT (78%); MILITARY SERVICE (77%); SOCIAL MEDIA (77%); EDUCATION SYSTEMS & INSTITUTIONS (74%); INTERNET SOCIAL NETWORKING (72%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: GUJARAT, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
6 \nSubject: DRUGS IN SPORTS (94%); OLYMPICS (92%); SPORTS & RECREATION (92%); SPORTS & RECREATION EVENTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); OLYMPIC COMMITTEES (89%); WINTER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); ACADEMY AWARDS (78%); ENTERTAINMENT & ARTS AWARDS (78%); GENDER EQUALITY (78%); SPORTS GOVERNING BODIES (78%); WOMEN (78%); WOMEN'S SPORTS (78%); CONTROLLED SUBSTANCES CRIME (76%); NEGATIVE MISC NEWS (76%); NEGATIVE NEWS (76%); INVESTIGATIONS (73%); WINTER SPORTS (73%); SCANDALS (71%); AUTO RACING (66%); DISCRIMINATION (66%); FIFA WORLD CUP (66%); DOCUMENTARY FILMS (65%); TALIBAN (60%); ALTERNATIVE DISPUTE RESOLUTION (50%)\n\nCompany: NETFLIX INC (54%); AL MUDON INTERNATIONAL REAL ESTATE CO KSCC (51%)\n\nTicker: NFLX (NASDAQ) (54%); ALMUDON (KUW) (51%)\n\nIndustry: NAICS532282 VIDEO TAPE & DISC RENTAL (54%); SIC7841 VIDEO TAPE RENTAL (54%); NAICS531110 LESSORS OF RESIDENTIAL BUILDINGS & DWELLINGS (51%); SIC6513 OPERATORS OF APARTMENT BUILDINGS (51%); ACADEMY AWARDS (78%); ENTERTAINMENT & ARTS AWARDS (78%); DOCUMENTARY FILMS (65%); MOTOR VEHICLES (61%)\n\nGeographic: RUSSIAN FEDERATION (93%); AFGHANISTAN (52%)\n\nLoad-Date: July 27, 2021\n\n\n
7 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ARCHERY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); WEAPONS & ARMS (89%); BADMINTON (78%); BOXING (78%); ROWING (78%); SHOOTING SPORTS (78%); BOAT RACING (73%); BOATING & RAFTING (73%)\n\nCompany: RADIAL INC (63%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (63%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (63%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (63%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (63%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (63%); SIC7389 BUSINESS SERVICES (63%); MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (91%); ARGENTINA (79%)\n\nLoad-Date: July 28, 2021\n\n\n
8 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); SPORTS AWARDS (89%); CELEBRITIES (78%); SPORTS & RECREATION EVENTS (78%); TENNIS (73%); WEATHER (73%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (73%); TOKYO, JAPAN (58%); KARNATAKA, INDIA (78%); INDIA (92%); JAPAN (58%)\n\nLoad-Date: August 7, 2021\n\n\n
9 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); FIELD HOCKEY (89%); MEN'S SPORTS (89%); BOXING (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); GOLF (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (93%); UNITED KINGDOM (68%)\n\nLoad-Date: July 31, 2021\n\n\n
10 \nSubject: OLYMPICS (92%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); 2020 TOKYO SUMMER OLYMPICS (78%); WORLD WAR II (64%)\n\nGeographic: LOS ANGELES, CA, USA (90%); BERLIN, GERMANY (88%); TOKYO, JAPAN (88%); HELSINKI, FINLAND (79%); AMSTERDAM, NETHERLANDS (71%); MELBOURNE, AUSTRALIA (67%); LONDON, ENGLAND (54%); CALIFORNIA, USA (76%); INDIA (99%); NETHERLANDS (94%); AUSTRALIA (92%); GERMANY (92%); PAKISTAN (91%); UNITED KINGDOM (79%); MEXICO (76%)\n\nLoad-Date: August 5, 2021\n\n\n
11 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); BOXING (78%); MEN'S SPORTS (78%); WEIGHTLIFTING (75%); 2012 LONDON SUMMER OLYMPICS (73%); EXERCISE & FITNESS (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LONDON, ENGLAND (51%); INDIA (94%); GERMANY (68%)\n\nLoad-Date: August 7, 2021\n\n\n
12 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (89%); PHOTO & VIDEO SHARING (78%); BADMINTON (73%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (78%)\n\nGeographic: ASSAM, INDIA (74%); INDIA (91%)\n\nLoad-Date: August 4, 2021\n\n\n
13 \nSubject: BOXING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); WRESTLING (78%); GOVERNMENT ADVISORS & MINISTERS (67%)\n\nIndustry: BUDGETS (73%); HIGHWAYS & STREETS (53%)\n\nGeographic: TAIPEI, TAIWAN (76%); ASSAM, INDIA (91%)\n\nLoad-Date: August 4, 2021\n\n\n
14 \nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (92%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); ATHLETES (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); WRESTLING (78%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
15 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (78%); MEN'S SPORTS (78%); TOURNAMENTS (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); BELGIUM (52%)\n\nLoad-Date: August 3, 2021\n\n\n
16 \nSubject: OLYMPICS (90%); PUBLIC POLICY (78%); WOMEN'S SPORTS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); SPORTS AWARDS (77%); SPORTS REGULATION & POLICY (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: CHANDIGARH, INDIA (90%); HARYANA, INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
17 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); FIELD HOCKEY (89%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); BADMINTON (78%); GOLF (77%); ARCHERY (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%)\n\nLoad-Date: July 30, 2021\n\n\n
18 \nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); WOMEN'S SPORTS (94%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); ARGENTINA (95%); INDIA (90%); JAPAN (58%)\n\nLoad-Date: August 3, 2021\n\n\n
19 \nSubject: OLYMPICS (92%); MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FACT CHECKING (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); SOCIAL MEDIA (78%); SPORTS AWARDS (78%); NEGATIVE PERSONAL NEWS (77%); FAKE NEWS (72%); NEGATIVE NEWS (72%); NEGATIVE MISC NEWS (60%)\n\nCompany: FACEBOOK INC (58%)\n\nTicker: FB (NASDAQ) (58%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (58%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (78%)\n\nGeographic: MOSCOW, RUSSIAN FEDERATION (87%); INDIA (95%); PAKISTAN (79%); RUSSIAN FEDERATION (79%); AFGHANISTAN (70%); UNITED KINGDOM (58%)\n\nLoad-Date: August 2, 2021\n\n\n
20 \nSubject: ARMIES (94%); OLYMPICS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); MILITARY SERVICE (77%); WEAPONS & ARMS (77%)\n\nIndustry: ARMIES (94%); MILITARY SERVICE (77%)\n\nGeographic: HARYANA, INDIA (74%); INDIA (94%); GERMANY (79%); POLAND (53%)\n\nLoad-Date: August 7, 2021\n\n\n
21 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ARCHERY (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); BADMINTON (89%); WEAPONS & ARMS (89%); BOXING (78%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); TOURNAMENTS (76%); GOLF (73%); OLYMPIC COMMITTEES (73%); SHOOTING SPORTS (73%)\n\nCompany: RADIAL INC (62%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (62%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (62%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (62%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (62%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (62%); SIC7389 BUSINESS SERVICES (62%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (88%); TAIPEI, TAIWAN (54%); INDIA (94%); RUSSIAN FEDERATION (77%); JAPAN (73%); THAILAND (54%)\n\nLoad-Date: July 29, 2021\n\n\n
22 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BOXING (89%); SPORTS & RECREATION EVENTS (89%); ATHLETES (77%); SPORTS AWARDS (77%); 2012 LONDON SUMMER OLYMPICS (72%); MARTIAL ARTS (72%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: BEIJING, CHINA (79%); TAIPEI, TAIWAN (75%); LONDON, ENGLAND (56%); ASSAM, INDIA (90%); MEGHALAYA, INDIA (79%); NORTH CENTRAL CHINA (79%); INDIA (95%); CHINA (79%)\n\nLoad-Date: August 4, 2021\n\n\n
23 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SHOOTINGS (89%); WOMEN'S SPORTS (78%); ATHLETES (73%); WEIGHTLIFTING (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (92%); INDIA (94%); GERMANY (93%); AUSTRALIA (79%); JAPAN (58%); NEW ZEALAND (52%); BELGIUM (51%)\n\nLoad-Date: August 5, 2021\n\n\n
24 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (78%)\n\nIndustry: DAIRY PRODUCTS (74%)\n\nGeographic: HARYANA, INDIA (59%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
25 \nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); POPULATION & DEMOGRAPHICS (89%); SPORTS AWARDS (89%); WRESTLING (89%); POPULATION SIZE (77%); ARCHERY (73%); MARTIAL ARTS (73%); OLYMPIC COMMITTEES (73%); SAILING (73%); TABLE TENNIS (73%); WEIGHTLIFTING (73%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (71%); INFECTIOUS DISEASE (71%); EXERCISE & FITNESS (68%); ASSOCIATIONS & ORGANIZATIONS (60%)\n\nGeographic: HARYANA, INDIA (92%); KERALA, INDIA (92%); PUNJAB, INDIA (91%); MANIPUR, INDIA (90%); UTTAR PRADESH, INDIA (90%); TAMIL NADU, INDIA (78%); WEST BENGAL, INDIA (78%); INDIA (99%)\n\nLoad-Date: August 5, 2021\n\n\n
26 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); CULTURE DEPARTMENTS (89%); SAFETY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (73%); FAMILY (69%)\n\nGeographic: NEW DELHI, INDIA (90%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
27 \nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); MEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); BELGIUM (90%); INDIA (90%); JAPAN (58%)\n\nLoad-Date: August 2, 2021\n\n\n
28 \nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); OLYMPICS (91%); BADMINTON (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (77%)\n\nIndustry: STREAMING MEDIA (89%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); TAIPEI, TAIWAN (73%); INDIA (93%)\n\nLoad-Date: August 1, 2021\n\n\n
29 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); WRESTLING (78%)\n\nIndustry: BUDGETS (73%); HIGHWAYS & STREETS (54%)\n\nGeographic: TAIPEI, TAIWAN (53%); ASSAM, INDIA (92%)\n\nLoad-Date: August 3, 2021\n\n\n
30 \nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); MEN'S SPORTS (95%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); GERMANY (94%); INDIA (91%); AUSTRALIA (79%); BELGIUM (58%); JAPAN (58%)\n\nLoad-Date: August 4, 2021\n\n\n
31 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ACTORS & ACTRESSES (89%); VIRAL VIDEOS (78%); FILM (77%); SPORTS & RECREATION EVENTS (77%); FUNDRAISING (74%); FILM DIRECTORS (62%); SCIENCE FICTION & FANTASY FILMS (62%)\n\nIndustry: CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); ACTORS & ACTRESSES (89%); VIRAL VIDEOS (78%); FILM (77%); FILM DIRECTORS (62%); SCIENCE FICTION & FANTASY FILMS (62%)\n\nPerson: AMITABH BACHCHAN (94%); SHAH RUKH KHAN (93%)\n\nGeographic: GERMANY (93%); ARGENTINA (92%); AUSTRALIA (92%); UNITED KINGDOM (90%)\n\nLoad-Date: August 6, 2021\n\n\n
32 \nSubject: 2020 TOKYO SUMMER OLYMPICS (96%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (89%); TOURNAMENTS (89%); FILM (88%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (77%); TRENDS & EVENTS (77%); TRIVIA (77%); EXTREME SPORTS (75%); SOCIAL MEDIA (73%); BASKETBALL (72%); BLOGS & MESSAGE BOARDS (72%); SKATEBOARDING (72%); BOARDSPORTS (70%); ANIMATION (69%); DOCUMENTARY FILMS (68%)\n\nCompany: GOOGLE LLC (93%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (93%); INTERNET SOCIAL NETWORKING (89%); STREAMING MEDIA (89%); FILM (88%); SOCIAL MEDIA (73%); BLOGS & MESSAGE BOARDS (72%); ANIMATION (69%); DOCUMENTARY FILMS (68%)\n\nGeographic: TOKYO, JAPAN (90%); JAPAN (90%)\n\nLoad-Date: July 23, 2021\n\n\n
33 \nSubject: OLYMPICS (90%); SPORTS REGULATION & POLICY (90%); 2020 TOKYO SUMMER OLYMPICS (89%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); GOVERNMENT ADVISORS & MINISTERS (78%); MEN'S SPORTS (78%); PUBLIC POLICY (78%); REGIONAL & LOCAL GOVERNMENTS (78%); ATHLETES (77%); SPORTS & RECREATION (77%); PRESS CONFERENCES (73%); TOURNAMENTS (71%); POPULATION SIZE (68%)\n\nGeographic: HARYANA, INDIA (94%); CHANDIGARH, INDIA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
34 \nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (78%); 2016 RIO SUMMER OLYMPICS (77%); SPORTS AWARDS (77%); SPORTS & RECREATION (67%)\n\nIndustry: STREAMING MEDIA (89%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); TAIPEI, TAIWAN (58%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
35 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); HEADS OF STATE & GOVERNMENT (71%); PRIME MINISTERS (56%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 7, 2021\n\n\n
36 \nSubject: 2012 LONDON SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); BOXING (89%); MEN'S SPORTS (89%); SPORTS & RECREATION EVENTS (89%); WOMEN'S SPORTS (89%); WRESTLING (89%); ATHLETES (78%); BADMINTON (78%); EXERCISE & FITNESS (73%); WEIGHTLIFTING (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (97%); BELGIUM (71%)\n\nLoad-Date: August 7, 2021\n\n\n
37 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FACT CHECKING (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); WOMEN'S SPORTS (90%); FAKE NEWS (77%)\n\nCompany: FACEBOOK INC (57%)\n\nTicker: FB (NASDAQ) (57%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (57%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); WEBSITES & PORTALS (78%)\n\nGeographic: BUDAPEST, HUNGARY (91%); TOKYO, JAPAN (91%); HARYANA, INDIA (74%); INDIA (93%); HUNGARY (87%); PAKISTAN (79%); BELARUS (73%); INDONESIA (51%)\n\nLoad-Date: July 25, 2021\n\n\n
38 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); OLYMPICS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); MEN (73%)\n\nGeographic: TOKYO, JAPAN (91%); BEIJING, CHINA (79%); LOS ANGELES, CA, USA (73%); PUNJAB, INDIA (88%); INDIA (95%); UNITED KINGDOM (92%); JAPAN (89%); AUSTRALIA (79%); PAKISTAN (73%); BELGIUM (58%)\n\nLoad-Date: August 1, 2021\n\n\n
39 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (92%); WEIGHTLIFTING (92%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); ARCHERY (78%); EXERCISE & FITNESS (71%)\n\nGeographic: GLASGOW, SCOTLAND (53%); MANIPUR, INDIA (90%); INDIA (79%)\n\nLoad-Date: July 24, 2021\n\n\n
40 \nSubject: 2020 TOKYO SUMMER OLYMPICS (94%); MEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%); BLOGS & MESSAGE BOARDS (67%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%); BLOGS & MESSAGE BOARDS (67%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (91%); UNITED KINGDOM (91%); AUSTRALIA (79%); NEW ZEALAND (78%); JAPAN (58%)\n\nLoad-Date: August 1, 2021\n\n\n
41 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ACTORS & ACTRESSES (89%); CELEBRITIES (89%); INTERNET SOCIAL NETWORKING (89%); SOCIAL MEDIA (89%); 2016 RIO SUMMER OLYMPICS (79%); EMOJIS & EMOTICONS (78%)\n\nCompany: ABHISHEK CORP LTD (92%)\n\nIndustry: NAICS313110 FIBER, YARN & THREAD MILLS (92%); SIC2281 YARN SPINNING MILLS (92%); ACTORS & ACTRESSES (89%); CELEBRITIES (89%); INTERNET SOCIAL NETWORKING (89%); SOCIAL MEDIA (89%); EMOJIS & EMOTICONS (78%)\n\nPerson: AMITABH BACHCHAN (79%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
42 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); BOXING (79%); TRANSPORTATION DEPARTMENTS (77%); MARTIAL ARTS (74%); TOURNAMENTS (67%)\n\nIndustry: HIGHWAYS & STREETS (77%); TRANSPORTATION DEPARTMENTS (77%)\n\nGeographic: TAIPEI, TAIWAN (92%); ASSAM, INDIA (94%); INDIA (95%)\n\nLoad-Date: August 3, 2021\n\n\n
43 \nSubject: TENNIS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); MATERNITY LEAVE (78%); TENNIS TOURNAMENTS (78%); WOMEN'S SPORTS (78%); RANKINGS (77%); EMOTIONS (64%)\n\nGeographic: TOKYO, JAPAN (90%); HOBART, AUSTRALIA (71%); UZBEKISTAN (88%); AUSTRALIA (79%); RUSSIAN FEDERATION (78%); UKRAINE (57%); GERMANY (53%)\n\nLoad-Date: July 22, 2021\n\n\n
44 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); FACT CHECKING (90%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); VIRAL VIDEOS (90%); FAKE NEWS (77%); SPORTS AWARDS (77%); STADIUMS & ARENAS (77%)\n\nCompany: FACEBOOK INC (56%)\n\nTicker: FB (NASDAQ) (56%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (56%); FIREWORKS (91%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (90%); SOCIAL MEDIA (90%); VIRAL VIDEOS (90%)\n\nGeographic: TAIPEI, TAIWAN (94%); TOKYO, JAPAN (92%); TAIWAN (95%); INDIA (93%); JAPAN (79%)\n\nLoad-Date: July 27, 2021\n\n\n
45 \nSubject: MEN'S SPORTS (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); GOVERNMENT ADVISORS & MINISTERS (90%); SUMMER OLYMPICS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); SPORTS AWARDS (77%); REGIONAL & LOCAL GOVERNMENTS (72%)\n\nGeographic: MANIPUR, INDIA (93%); INDIA (95%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
46 \nSubject: 2020 TOKYO SUMMER OLYMPICS (94%); OLYMPICS (91%); ATHLETES (90%); DIVING (90%); KNITTING & CROCHETING (90%); PHOTO & VIDEO SHARING (90%); SEWING & NEEDLECRAFTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); WATER SPORTS (90%); LGBTQ+ PERSONS (89%); SPORTS & RECREATION FACILITIES & VENUES (78%)\n\nIndustry: PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%)\n\nGeographic: UNITED KINGDOM (90%)\n\nLoad-Date: August 3, 2021\n\n\n
47 \nSubject: SOCIAL MEDIA (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FACT CHECKING (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); INTERNET SOCIAL NETWORKING (89%); ACTORS & ACTRESSES (78%); SPORTS & RECREATION (66%)\n\nIndustry: SOCIAL MEDIA (92%); INTERNET SOCIAL NETWORKING (89%); ACTORS & ACTRESSES (78%)\n\nGeographic: BUDAPEST, HUNGARY (57%); HUNGARY (90%)\n\nLoad-Date: July 26, 2021\n\n\n
48 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ATHLETES (90%); INTERNET SOCIAL NETWORKING (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); EMOJIS & EMOTICONS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (89%); FIELD HOCKEY (79%); BADMINTON (78%); EMOTIONS (78%); TENNIS (78%); TRENDS (77%); SOCIAL MEDIA (73%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); EMOJIS & EMOTICONS (89%); SHORT FORM CONTENT (78%); SOCIAL MEDIA (73%)\n\nGeographic: INDIA (97%)\n\nLoad-Date: August 3, 2021\n\n\n
49 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); WRESTLING (77%)\n\nIndustry: SOCIAL MEDIA (90%); DAIRY PRODUCTS (74%)\n\nGeographic: ASSAM, INDIA (59%)\n\nLoad-Date: August 5, 2021\n\n\n
50 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); FILM (89%); FILM DIRECTORS (79%); PROFESSIONAL SPORTS (78%); RUNNING (78%); SPORTS AWARDS (78%); BOXING (72%); TRACK & FIELD (72%); SOCIAL MEDIA (70%); VISUAL ARTISTS (70%)\n\nIndustry: ACTORS & ACTRESSES (90%); FILM (89%); FILM DIRECTORS (79%); SOCIAL MEDIA (70%); VISUAL ARTISTS (70%)\n\nPerson: AKSHAY KUMAR (79%); SHAH RUKH KHAN (79%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (59%); MELBOURNE, AUSTRALIA (54%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
51 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); 2012 LONDON SUMMER OLYMPICS (72%); SOCIAL MEDIA (71%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (71%)\n\nGeographic: BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (55%); HARYANA, INDIA (78%); INDIA (93%)\n\nLoad-Date: August 7, 2021\n\n\n
52 \nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (93%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (78%); MEN'S SPORTS (78%); SELFIES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); 2012 LONDON SUMMER OLYMPICS (72%); GOVERNMENT & PUBLIC ADMINISTRATION (64%); REGIONAL & LOCAL GOVERNMENTS (64%)\n\nCompany: XIAOMI INC (90%); QUALCOMM INC (53%)\n\nTicker: 01810 (HKSE) (90%); QCOM (NASDAQ) (53%)\n\nIndustry: NAICS334111 ELECTRONIC COMPUTER MANUFACTURING (90%); SIC3571 ELECTRONIC COMPUTERS (90%); NAICS334413 SEMICONDUCTOR & RELATED DEVICE MANUFACTURING (53%); NAICS334220 RADIO & TELEVISION BROADCASTING & WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING (53%); MOBILE & CELLULAR TELEPHONES (91%); SMARTPHONES (90%); CAMERAS (89%); INTERNET SOCIAL NETWORKING (78%); SELFIES (78%); CONSUMER ELECTRONICS MFG (73%); TELEPHONE EQUIPMENT MFG (73%); LIGHT EMITTING DIODES (67%); MONITORS & DISPLAYS (67%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (95%)\n\nLoad-Date: August 9, 2021\n\n\n
53 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); SPORTS FANS (73%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
54 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); SPORTS SPONSORSHIP (90%); SUMMER OLYMPICS (90%); STADIUMS & ARENAS (89%); TRENDS & EVENTS (89%); MEN'S SPORTS (78%); OLYMPIC COMMITTEES (78%); OLYMPICS SPONSORSHIP (78%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (77%); SPORTING GOODS (75%); GOVERNMENT ADVISORS & MINISTERS (72%); MOBILE GAMES (72%); COVID CORONAVIRUS (62%); COVID-19 CORONAVIRUS (62%)\n\nCompany: ADANI ENTERPRISES LTD (92%)\n\nTicker: ADANIENT (NSE) (92%)\n\nIndustry: NAICS523130 COMMODITY CONTRACTS DEALING (92%); SIC5051 METALS SERVICE CENTERS & OFFICES (92%); SPONSORSHIP (90%); SPORTS SPONSORSHIP (90%); MEDIA CONTENT (78%); ACTIVEWEAR & SPORTSWEAR (75%); CLOTHING BY FUNCTION (75%); SPORTING GOODS (75%); MOBILE MEDIA (73%); MOBILE GAMES (72%); CLOTHING LABELS (67%); FASHION INDUSTRY (67%)\n\nGeographic: TOKYO, JAPAN (91%); NEW DELHI, INDIA (89%); INDIA (94%); JAPAN (90%)\n\nLoad-Date: July 23, 2021\n\n\n
55 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (91%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); WINTER OLYMPICS (90%); 2014 SOCHI WINTER OLYMPICS (89%); LANGUAGE & LANGUAGES (89%); OLYMPIC COMMITTEES (89%); SPORTS & RECREATION EVENTS (89%); WINTER SPORTS (89%); 2018 PYEONGCHANG WINTER OLYMPICS (78%); MEN'S SPORTS (78%); STADIUMS & ARENAS (78%); DICTIONARIES & THESAURI (70%)\n\nIndustry: PRESS AGENCY RELEASES (70%)\n\nGeographic: TOKYO, JAPAN (91%); HOKKAIDO, JAPAN (79%); JAPAN (94%); RUSSIAN FEDERATION (92%); UNITED ARAB EMIRATES (92%); INDIA (90%); GREECE (88%); TAIWAN (79%); UZBEKISTAN (79%); FRANCE (71%); UKRAINE (57%)\n\nLoad-Date: July 23, 2021\n\n\n
56 \nSubject: WOMEN'S SPORTS (95%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN (78%); ATHLETES (77%); CHILDREN (77%); SPORTS AWARDS (77%); WINTER OLYMPICS (77%); GOVERNMENT ADVISORS & MINISTERS (73%); EMOTIONS (65%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (91%); HARYANA, INDIA (92%); PUNJAB, INDIA (79%); INDIA (93%); UNITED KINGDOM (92%)\n\nLoad-Date: August 6, 2021\n\n\n
57 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); BADMINTON (90%); INTERNET SOCIAL NETWORKING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); PHOTO & VIDEO SHARING (78%); SOCIAL MEDIA (78%); EMOTIONS (77%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (78%); SOCIAL MEDIA (78%)\n\nLoad-Date: August 2, 2021\n\n\n
58 \nSubject: OLYMPICS (92%); KNITTING & CROCHETING (90%); SEWING & NEEDLECRAFTS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); PHOTO & VIDEO SHARING (78%)\n\nIndustry: SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (78%)\n\nGeographic: TOKYO, JAPAN (71%)\n\nLoad-Date: August 6, 2021\n\n\n
59 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); EQUESTRIAN SPORTS (90%); HORSES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (75%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); LONDON, ENGLAND (57%); INDIA (94%); UNITED KINGDOM (78%)\n\nLoad-Date: August 2, 2021\n\n\n
60 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); PRIME MINISTERS (55%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (94%); UNITED KINGDOM (73%)\n\nLoad-Date: August 6, 2021\n\n\n
61 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); TABLE TENNIS (89%); WEAPONS & ARMS (78%); BADMINTON (77%); BOXING (77%)\n\nCompany: RADIAL INC (63%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (63%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (63%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (63%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (63%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (63%); SIC7389 BUSINESS SERVICES (63%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (94%); AUSTRALIA (79%); GERMANY (79%); UNITED KINGDOM (69%)\n\nLoad-Date: July 26, 2021\n\n\n
62 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); BADMINTON (78%); 2012 LONDON SUMMER OLYMPICS (73%); PRESS CONFERENCES (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (90%); BEIJING, CHINA (79%); LONDON, ENGLAND (54%); NORTH CENTRAL CHINA (79%); INDIA (93%)\n\nLoad-Date: August 2, 2021\n\n\n
63 \nSubject: OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (88%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%); SPRAINS & STRAINS (76%); EXERCISE & FITNESS (67%)\n\nGeographic: TOKYO, JAPAN (54%); TRINIDAD & TOBAGO (91%); CARIBBEAN ISLANDS (90%); INDIA (90%); RUSSIAN FEDERATION (72%)\n\nLoad-Date: July 24, 2021\n\n\n
64 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); RUNNING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); BOXING (78%); WOMEN'S SPORTS (78%); GOLF (77%)\n\nGeographic: TAIPEI, TAIWAN (78%); INDIA (94%); UNITED KINGDOM (90%); UZBEKISTAN (90%)\n\nLoad-Date: August 1, 2021\n\n\n
65 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); CELEBRITIES (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); ACTORS & ACTRESSES (89%); ATHLETES (78%); STADIUMS & ARENAS (78%); FILM (77%); SPORTS & RECREATION (73%); MUSIC COMPOSITION (68%); SONG WRITING (68%); VISUAL ARTISTS (67%)\n\nIndustry: CELEBRITIES (90%); SOCIAL MEDIA (90%); ACTORS & ACTRESSES (89%); FILM (77%); VISUAL ARTISTS (67%)\n\nGeographic: TOKYO, JAPAN (90%); MANIPUR, INDIA (90%); INDIA (98%)\n\nLoad-Date: July 25, 2021\n\n\n
66 \nSubject: OLYMPICS (93%); 2012 LONDON SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); BOXING (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); TOURNAMENTS (77%)\n\nGeographic: TOKYO, JAPAN (90%); LONDON, ENGLAND (73%); NEW DELHI, INDIA (59%); ATLANTA, GA, USA (58%); MUMBAI, MAHARASHTRA, INDIA (58%); ASSAM, INDIA (58%); INDIA (95%); GERMANY (78%); ALGERIA (75%); DOMINICAN REPUBLIC (54%)\n\nLoad-Date: July 23, 2021\n\n\n
67 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 9, 2021\n\n\n
68 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: AHMEDABAD, GUJARAT, INDIA (59%); INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 8, 2021\n\n\n
69 \nSubject: WOMEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (90%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); GUJARAT, INDIA (73%); INDIA (94%); ARGENTINA (92%); UNITED KINGDOM (73%); UNITED STATES (69%)\n\nLoad-Date: August 5, 2021\n\n\n
70 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (77%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BEIJING, CHINA (79%); TOKYO, JAPAN (72%); HARYANA, INDIA (74%); INDIA (90%)\n\nLoad-Date: August 7, 2021\n\n\n
71 \nSubject: MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); WOMEN (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (92%); BELGIUM (71%)\n\nLoad-Date: August 2, 2021\n\n\n
72 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); PHOTO & VIDEO SHARING (89%); ATHLETES (78%); SPORTS & RECREATION (76%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); CELEBRITIES (90%); SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (89%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
73 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (77%); TRENDS & EVENTS (76%); ATHLETES (72%); WEIGHTLIFTING (53%)\n\nPerson: SONIA GANDHI (71%)\n\nGeographic: TOKYO, JAPAN (88%); MANIPUR, INDIA (94%); MEGHALAYA, INDIA (79%); INDIA (92%)\n\nLoad-Date: July 24, 2021\n\n\n
74 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); FIELD HOCKEY (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); BOXING (77%); BADMINTON (73%); 2012 LONDON SUMMER OLYMPICS (72%); WEIGHTLIFTING (50%)\n\nGeographic: LONDON, ENGLAND (53%); INDIA (92%); RUSSIAN FEDERATION (91%)\n\nLoad-Date: August 5, 2021\n\n\n
75 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS FANS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); SOFTBALL (89%); SPORTS & RECREATION (78%); SPORTS AWARDS (77%); INDUSTRIAL ACCIDENTS (72%); SALES FIGURES (72%); COVID CORONAVIRUS (68%); INFECTIOUS DISEASE (68%); ACCIDENTS & DISASTERS (60%); CHERNOBYL NUCLEAR DISASTER (60%); NUCLEAR ACCIDENTS (60%); COVID-19 CORONAVIRUS (53%)\n\nCompany: NOJIMA CORP (66%)\n\nTicker: 7419 (TSE) (66%)\n\nIndustry: NAICS443142 ELECTRONICS STORES (66%); TELEVISION EQUIPMENT (90%); TELEVISION INDUSTRY (77%); MANUFACTURING (67%); CHERNOBYL NUCLEAR DISASTER (60%); NUCLEAR ACCIDENTS (60%); NUCLEAR ENERGY (60%)\n\nGeographic: TOKYO, JAPAN (92%); BEIJING, CHINA (79%); TOHOKU, JAPAN (92%); JAPAN (94%)\n\nLoad-Date: July 22, 2021\n\n\n
76 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (76%); SPORTS & RECREATION (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); BANGKOK, THAILAND (72%); CHANDIGARH, INDIA (58%); CHHATTISGARH, INDIA (58%); INDIA (95%); NETHERLANDS (92%); PAKISTAN (58%)\n\nLoad-Date: August 6, 2021\n\n\n
77 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); ATHLETES (77%); BADMINTON (77%); CELEBRITIES (77%); MEN'S SPORTS (77%); SOCIAL MEDIA (69%)\n\nIndustry: CELEBRITIES (77%); SOCIAL MEDIA (69%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (72%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
78 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 7, 2021\n\n\n
79 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); CELEBRITIES (89%); PHOTO & VIDEO SHARING (89%); 2016 RIO SUMMER OLYMPICS (78%); SELFIES (78%); ATHLETES (72%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); CELEBRITIES (89%); PHOTO & VIDEO SHARING (89%); SELFIES (78%); INTERNET VIDEO (73%)\n\nGeographic: INDIA (96%)\n\nLoad-Date: August 2, 2021\n\n\n
80 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); EMOTIONS (89%); SUMMER OLYMPICS (89%); TENNIS (89%); TENNIS TOURNAMENTS (89%); MEN'S SPORTS (77%); NEGATIVE PERSONAL NEWS (77%); SPORTS OFFICIATING (77%); REFEREES & UMPIRES (72%); SPORTS & RECREATION EVENTS (72%); WOUNDS & INJURIES (52%)\n\nPerson: NOVAK DJOKOVIC (90%); RAFAEL NADAL (58%); ROGER FEDERER (58%)\n\nGeographic: TOKYO, JAPAN (91%); BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (53%); NEW YORK, USA (79%); AUSTRALIA (92%); ARGENTINA (79%); INDIA (74%)\n\nLoad-Date: July 31, 2021\n\n\n
81 \nSubject: WOMEN'S SPORTS (94%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); TOURNAMENTS (74%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (58%); HARYANA, INDIA (90%); INDIA (93%); UNITED KINGDOM (91%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
82 \nSubject: WOMEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (93%); ARGENTINA (79%); GERMANY (72%)\n\nLoad-Date: August 2, 2021\n\n\n
83 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); 2016 RIO SUMMER OLYMPICS (78%); AMATEUR SPORTS (78%); GOLF TOURNAMENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (75%); TOURNAMENTS (75%); GOLF & COUNTRY CLUBS (68%); COVID CORONAVIRUS (50%)\n\nIndustry: GOLF & COUNTRY CLUBS (68%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
84 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOLF (89%); TOURNAMENTS (89%); WEAPONS & ARMS (89%); 2012 LONDON SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%); SHOOTING SPORTS (73%)\n\nPerson: LYDIA KO (79%)\n\nGeographic: LOS ANGELES, CA, USA (73%); LONDON, ENGLAND (71%); BANGALORE, KARNATAKA, INDIA (58%); TOKYO, JAPAN (58%); KANTO, JAPAN (78%); CALIFORNIA, USA (56%); INDIA (90%); JAPAN (90%); AUSTRALIA (79%); NEW ZEALAND (79%)\n\nLoad-Date: August 8, 2021\n\n\n
85 \nSubject: OLYMPICS (91%); SHOOTING SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); INFECTIOUS DISEASE (89%); PANDEMICS (89%); WEAPONS & ARMS (89%); SPORTS & RECREATION (77%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: July 23, 2021\n\n\n
86 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (92%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS AWARDS (89%); CELEBRITIES (78%); COMPANY EARNINGS (78%); OLYMPIC COMMITTEES (78%); PARALYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (70%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (90%); HARYANA, INDIA (79%); MANIPUR, INDIA (79%); ODISHA, INDIA (79%); UTTAR PRADESH, INDIA (79%); WEST BENGAL, INDIA (79%); INDIA (93%); UNITED STATES (92%); AUSTRALIA (79%); BRAZIL (79%); CANADA (79%); JAPAN (79%); KAZAKHSTAN (79%); MALAYSIA (79%); PHILIPPINES (79%); SINGAPORE (73%)\n\nLoad-Date: July 29, 2021\n\n\n
87 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); SHOOTING SPORTS (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WOMEN'S SPORTS (89%); 2012 LONDON SUMMER OLYMPICS (78%); ATHLETES (78%); WRESTLING (78%); TOURNAMENTS (71%); GOLF (65%)\n\nGeographic: LONDON, ENGLAND (58%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); ARGENTINA (79%); AUSTRALIA (79%); UNITED KINGDOM (58%)\n\nLoad-Date: August 8, 2021\n\n\n
88 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); ATHLETES (78%); WOMEN'S SPORTS (78%); COVID-19 CORONAVIRUS (77%); ISOLATION & QUARANTINE (77%); NEGATIVE MISC NEWS (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); BOARDSPORTS (73%); EXTREME SPORTS (73%); GYMNASTICS (73%); SKATEBOARDING (73%); INFECTIOUS DISEASE (72%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); INDIA (89%); NETHERLANDS (79%)\n\nLoad-Date: August 9, 2021\n\n\n
89 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); CELEBRITIES (78%); RUNNING (78%); TRACK & FIELD (78%); COVID CORONAVIRUS (70%); COVID-19 CORONAVIRUS (55%)\n\nIndustry: CELEBRITIES (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
90 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); AWARDS & PRIZES (78%); MEN'S SPORTS (78%); INTERNET SOCIAL NETWORKING (76%); 2012 LONDON SUMMER OLYMPICS (73%); BOXING (73%); OLYMPIC COMMITTEES (73%); WRESTLING (73%); PHOTO & VIDEO SHARING (71%); WEIGHTLIFTING (65%)\n\nIndustry: MEDIA CONTENT (78%); INTERNET SOCIAL NETWORKING (76%); PHOTO & VIDEO SHARING (71%)\n\nGeographic: LONDON, ENGLAND (53%); INDIA (97%); UNITED KINGDOM (53%)\n\nLoad-Date: August 7, 2021\n\n\n
91 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); LETTERS & COMMENTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION (89%); MEN'S SPORTS (78%); SPORTS FANS (78%); STADIUMS & ARENAS (78%); WOMEN (78%); PHYSICAL EDUCATION (77%); CURRICULA (76%); STUDENTS & STUDENT LIFE (66%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (73%); KOLKATA, WEST BENGAL, INDIA (73%); INDIA (94%); AUSTRALIA (79%); UNITED KINGDOM (56%)\n\nLoad-Date: August 2, 2021\n\n\n
92 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: BEIJING, CHINA (79%); LONDON, ENGLAND (55%); NORTH CENTRAL CHINA (79%); CHINA (88%)\n\nLoad-Date: August 2, 2021\n\n\n
93 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION (71%); HEADS OF STATE & GOVERNMENT (65%); PRIME MINISTERS (65%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: RAM NATH KOVIND (89%); NARENDRA MODI (79%); AKSHAY KUMAR (73%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
94 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); MEN'S SPORTS (78%); TOURNAMENTS (78%); WINTER OLYMPICS (78%)\n\nGeographic: AUSTRALIA (94%); INDIA (94%); ARGENTINA (92%); BELGIUM (91%); GERMANY (91%)\n\nLoad-Date: August 4, 2021\n\n\n
95 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN (78%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: INDIA (92%); GERMANY (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 5, 2021\n\n\n
96 \nSubject: BADMINTON (90%); EMOJIS & EMOTICONS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS AWARDS (89%); TOURNAMENTS (78%); ACTORS & ACTRESSES (76%)\n\nIndustry: EMOJIS & EMOTICONS (90%); MEDIA CONTENT (78%); ACTORS & ACTRESSES (76%); STREAMING MEDIA (73%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (87%); INDIA (93%); CHINA (75%)\n\nLoad-Date: July 31, 2021\n\n\n
97 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SUMMER OLYMPICS (90%); SOCIAL MEDIA (78%); SPORTS AWARDS (78%); MEN'S SPORTS (77%); WRESTLING (72%)\n\nCompany: TWITTER INC (91%)\n\nTicker: TWTR (NYSE) (91%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (91%); CELEBRITIES (90%); SOCIAL MEDIA (78%)\n\nGeographic: INDIA (90%); KAZAKHSTAN (57%)\n\nLoad-Date: August 7, 2021\n\n\n
98 \nSubject: OLYMPICS (91%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); BOXING (78%); FIELD HOCKEY (78%); WOMEN'S SPORTS (78%); BADMINTON (73%); WEIGHTLIFTING (50%)\n\nGeographic: TOKYO, JAPAN (88%); AZERBAIJAN (58%); KAZAKHSTAN (58%)\n\nLoad-Date: August 8, 2021\n\n\n
99 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); STADIUMS & ARENAS (77%)\n\nIndustry: STREAMING MEDIA (90%); TELEVISION INDUSTRY (66%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (90%); GERMANY (71%); PAKISTAN (59%)\n\nLoad-Date: August 8, 2021\n\n\n
100 \nSubject: PRIME MINISTERS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%)\n\nPerson: NARENDRA MODI (93%)\n\nGeographic: INDIA (94%); BELGIUM (55%)\n\nLoad-Date: August 4, 2021\n\n\n
101 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (90%); RUSSIAN FEDERATION (86%); BELARUS (79%)\n\nLoad-Date: August 5, 2021\n\n\n
102 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); MEN'S SPORTS (89%); WOMEN'S SPORTS (78%); BOXING (77%); STADIUMS & ARENAS (77%); BADMINTON (73%); FIELD HOCKEY (72%); WEIGHTLIFTING (50%)\n\nGeographic: BEIJING, CHINA (79%); TOKYO, JAPAN (73%); NORTH CENTRAL CHINA (79%); INDIA (93%); GERMANY (70%); PAKISTAN (58%); CZECH REPUBLIC (55%)\n\nLoad-Date: August 8, 2021\n\n\n
103 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (77%); PRESS CONFERENCES (73%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: BEIJING, CHINA (79%); LONDON, ENGLAND (71%); NORTH CENTRAL CHINA (79%); INDIA (94%)\n\nLoad-Date: August 1, 2021\n\n\n
104 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); TOURNAMENTS (89%); ATHLETES (77%); TRACK & FIELD (77%); WRESTLING (72%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); HARYANA, INDIA (73%); INDIA (92%); BELGIUM (69%); GERMANY (69%); CZECH REPUBLIC (55%)\n\nLoad-Date: August 7, 2021\n\n\n
105 \nSubject: MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); GOLF (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); WRESTLING (90%); RACEWALKING (78%); OLYMPIC COMMITTEES (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (91%); GERMANY (88%); RUSSIAN FEDERATION (78%)\n\nLoad-Date: August 4, 2021\n\n\n
106 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); DRUGS IN SPORTS (90%); NEGATIVE PERSONAL NEWS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); INVESTIGATIONS (89%); OLYMPIC COMMITTEES (89%); RUNNING (89%); SPORTS & RECREATION EVENTS (89%); SPORTS GOVERNING BODIES (89%); WINTER OLYMPICS (89%); CONTROLLED SUBSTANCES CRIME (88%); WHISTLEBLOWERS (88%); 2014 SOCHI WINTER OLYMPICS (78%); 2016 RIO SUMMER OLYMPICS (78%); 2018 PYEONGCHANG WINTER OLYMPICS (78%); PROFESSIONAL SPORTS (78%); SPORTS AWARDS (78%); WINTER SPORTS (78%); NEGATIVE NEWS (75%); TOXICOLOGY LABORATORIES (74%); TRACK & FIELD (73%); INTELLIGENCE SERVICES (68%); SOCCER (68%); ACCREDITATION (65%); FIFA WORLD CUP (54%); SOCCER TOURNAMENTS (54%)\n\nIndustry: TOXICOLOGY LABORATORIES (74%)\n\nGeographic: MOSCOW, RUSSIAN FEDERATION (58%); RUSSIAN FEDERATION (94%)\n\nLoad-Date: July 26, 2021\n\n\n
107 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); CELEBRITIES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BOXING (89%); ATHLETES (78%); EMOJIS & EMOTICONS (78%); PHOTO & VIDEO SHARING (77%); SOCIAL MEDIA (77%); 2012 LONDON SUMMER OLYMPICS (72%); SPORTS FANS (72%)\n\nIndustry: ACTORS & ACTRESSES (90%); CELEBRITIES (90%); EMOJIS & EMOTICONS (78%); PHOTO & VIDEO SHARING (77%); SOCIAL MEDIA (77%)\n\nGeographic: TOKYO, JAPAN (88%); ASSAM, INDIA (59%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
108 \nSubject: HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); PRIME MINISTERS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); FIELD HOCKEY (78%); MEN'S SPORTS (78%); SUMMER OLYMPICS (78%); TOURNAMENTS (76%); INTERNET SOCIAL NETWORKING (72%)\n\nIndustry: INTERNET SOCIAL NETWORKING (72%); INTERNET VIDEO (72%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); BELGIUM (53%)\n\nLoad-Date: August 3, 2021\n\n\n
109 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); INFECTIOUS DISEASE (84%); GOLF TOURNAMENTS (78%); WOMEN'S SPORTS (78%); SPORTS AWARDS (77%); COVID CORONAVIRUS (65%); CORONAVIRUSES (60%); COVID-19 CORONAVIRUS (60%); VIRUSES (50%)\n\nPerson: LYDIA KO (92%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); NEW ZEALAND (90%); INDIA (89%); JAPAN (73%)\n\nLoad-Date: August 7, 2021\n\n\n
110 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); PRIME MINISTERS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); SOCIAL MEDIA (89%); SPORTS AWARDS (78%)\n\nIndustry: SOCIAL MEDIA (89%); MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (90%); INDIA (94%)\n\nLoad-Date: July 25, 2021\n\n\n
111 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); DRUGS IN SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); SPORTS AWARDS (79%); SPORTS & RECREATION EVENTS (78%); EXERCISE & FITNESS (77%)\n\nIndustry: PRESS AGENCY RELEASES (71%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (94%); JAPAN (78%); INDONESIA (77%)\n\nLoad-Date: July 26, 2021\n\n\n
112 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); GOLF (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION EVENTS (79%); RANKINGS (71%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (93%); NEW ZEALAND (79%); IRAN, ISLAMIC REPUBLIC OF (53%); KYRGYZSTAN (53%); AZERBAIJAN (52%)\n\nLoad-Date: August 7, 2021\n\n\n
113 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); ATHLETES (90%); GOLF (90%); GOLF TOURNAMENTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (77%); SECONDARY SCHOOLS (50%)\n\nIndustry: SECONDARY SCHOOLS (50%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 4, 2021\n\n\n
114 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); CELEBRITIES (90%); DEPLATFORMING (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SOCIAL MEDIA (89%); 2016 RIO SUMMER OLYMPICS (78%); COPYRIGHT (78%); SPORTS FANS (78%); WOMEN (78%); OLYMPIC COMMITTEES (77%); COPYRIGHT INFRINGEMENT (73%); LICENSING AGREEMENTS (73%)\n\nCompany: FACEBOOK INC (90%)\n\nTicker: FB (NASDAQ) (90%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (90%); CELEBRITIES (90%); SOCIAL MEDIA (89%)\n\nPerson: USAIN BOLT (79%)\n\nLoad-Date: August 5, 2021\n\n\n
115 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GENDER EQUALITY (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%)\n\nGeographic: BEIJING, CHINA (79%); MUMBAI, MAHARASHTRA, INDIA (58%); NORTH CENTRAL CHINA (79%); INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
116 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); COVID CORONAVIRUS (89%); WOMEN'S SPORTS (78%); FAMILY (77%); ISOLATION & QUARANTINE (77%); PSYCHOLOGICAL STRESS (77%); SOCIAL DISTANCING (77%); GYMNASTICS (73%); BREASTFEEDING (64%); INFANTS & TODDLERS (62%); SWIMMING (60%)\n\nIndustry: HOTELS & MOTELS (88%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); INDIA (89%); NETHERLANDS (79%); SPAIN (65%)\n\nLoad-Date: August 9, 2021\n\n\n
117 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); 2016 RIO SUMMER OLYMPICS (78%); DIVING (78%); OLYMPIC COMMITTEES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); ADOLESCENTS (77%); EXTREME SPORTS (76%); STATE & NATIONAL SYMBOLS (74%); BOARDSPORTS (71%); WATER SPORTS (71%); SKATEBOARDING (69%)\n\nCompany: AL MUDON INTERNATIONAL REAL ESTATE CO KSCC (90%)\n\nTicker: ALMUDON (KUW) (90%)\n\nIndustry: NAICS531110 LESSORS OF RESIDENTIAL BUILDINGS & DWELLINGS (90%); SIC6513 OPERATORS OF APARTMENT BUILDINGS (90%)\n\nGeographic: TOKYO, JAPAN (58%); KUWAIT (90%); JAPAN (88%)\n\nLoad-Date: July 27, 2021\n\n\n
118 \nSubject: OLYMPICS (91%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); TOURNAMENTS (89%); CELEBRITIES (78%); SPORTS AWARDS (78%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (94%); UNITED KINGDOM (78%); PAKISTAN (73%)\n\nLoad-Date: August 7, 2021\n\n\n
119 \nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SHOOTING SPORTS (89%); TENNIS (89%); TOURNAMENTS (89%); WEAPONS & ARMS (89%); WOMEN'S SPORTS (89%); CELEBRITIES (78%); ROWING (73%); TABLE TENNIS (73%); COVID CORONAVIRUS (72%); COVID-19 CORONAVIRUS (72%); INFECTIOUS DISEASE (72%); WEIGHTLIFTING (72%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: INDIA (93%); NETHERLANDS (78%); NEW ZEALAND (54%)\n\nLoad-Date: July 23, 2021\n\n\n
120 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); CELEBRITIES (78%); INTERNET SOCIAL NETWORKING (78%); PHOTO & VIDEO SHARING (78%); TRACK & FIELD (78%); CHILD DEVELOPMENT (71%); GOVERNMENT ADVISORS & MINISTERS (57%); CHILDREN (56%)\n\nIndustry: SOCIAL MEDIA (90%); CELEBRITIES (78%); INTERNET SOCIAL NETWORKING (78%); PHOTO & VIDEO SHARING (78%)\n\nGeographic: INDIA (95%)\n\nLoad-Date: August 8, 2021\n\n\n
121 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ATHLETES (90%); RUNNING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION EVENTS (89%); SIKHS & SIKHISM (74%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (98%)\n\nLoad-Date: August 8, 2021\n\n\n
122 \nSubject: MEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (77%); GOVERNMENT ADVISORS & MINISTERS (73%); ATHLETES (72%)\n\nGeographic: MADHYA PRADESH, INDIA (90%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
123 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ACTORS & ACTRESSES (90%); ATHLETES (90%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); 2012 LONDON SUMMER OLYMPICS (78%); 2016 RIO SUMMER OLYMPICS (78%); RACE & ETHNICITY (73%)\n\nIndustry: ACTORS & ACTRESSES (90%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); LONDON, ENGLAND (58%); HARYANA, INDIA (74%); INDIA (92%); COLOMBIA (91%); ALGERIA (70%); DOMINICAN REPUBLIC (56%)\n\nLoad-Date: July 29, 2021\n\n\n
124 \nSubject: MEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); SPORTS & RECREATION EVENTS (78%); PRIME MINISTERS (52%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: NEW DELHI, INDIA (89%); TOKYO, JAPAN (88%); BELGIUM (91%)\n\nLoad-Date: August 3, 2021\n\n\n
125 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); GYMNASTICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRENDS (90%); INTERNET SOCIAL NETWORKING (89%); MUSIC (89%); MUSIC COMPOSITION (89%); TRENDS & EVENTS (89%); ATHLETES (78%); FILM (77%); STATE & NATIONAL SYMBOLS (77%); SONG WRITING (75%)\n\nIndustry: INTERNET SOCIAL NETWORKING (89%); FILM (77%); MUSIC INDUSTRY (75%)\n\nGeographic: ISRAEL (94%)\n\nLoad-Date: August 2, 2021\n\n\n
126 \nSubject: OLYMPICS (93%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); TRACK & FIELD (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); 2012 LONDON SUMMER OLYMPICS (73%); OLYMPIC COMMITTEES (73%); WRESTLING (73%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (56%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); PARIS, FRANCE (56%); HARYANA, INDIA (73%); INDIA (94%); GERMANY (88%); UNITED KINGDOM (77%); BELGIUM (72%)\n\nLoad-Date: August 7, 2021\n\n\n
127 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); ANIMATION (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (77%); SPORTS & RECREATION (73%)\n\nIndustry: ANIMATION (78%)\n\nGeographic: INDIA (93%); NEW ZEALAND (91%); BELGIUM (52%)\n\nLoad-Date: July 24, 2021\n\n\n
128 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FACT CHECKING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); ATHLETES (89%); INTERNET SOCIAL NETWORKING (89%); PHOTO & VIDEO SHARING (89%); SOCIAL MEDIA (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); VIRAL VIDEOS (89%); SHORT FORM VIDEOS (78%); FAKE NEWS (72%)\n\nIndustry: INTERNET SOCIAL NETWORKING (89%); INTERNET VIDEO (89%); PHOTO & VIDEO SHARING (89%); SOCIAL MEDIA (89%); VIRAL VIDEOS (89%); SHORT FORM VIDEOS (78%)\n\nGeographic: BUDAPEST, HUNGARY (91%); HARYANA, INDIA (74%); RAJASTHAN, INDIA (59%); UTTAR PRADESH, INDIA (59%); INDIA (91%); HUNGARY (69%)\n\nLoad-Date: August 8, 2021\n\n\n
129 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); ARCHERY (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); SPORTS AWARDS (89%); TOURNAMENTS (89%); SPORTS & RECREATION EVENTS (78%); TRACK & FIELD (78%); 2016 RIO SUMMER OLYMPICS (77%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (71%); IRELAND (56%)\n\nLoad-Date: August 1, 2021\n\n\n
130 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); ATHLETES (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); AUSTRALIA (92%); GERMANY (92%); BELGIUM (90%); JAPAN (58%); NEW ZEALAND (56%)\n\nLoad-Date: August 3, 2021\n\n\n
131 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (74%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (88%); BEIJING, CHINA (79%); NORTH CENTRAL CHINA (79%); INDIA (93%); CZECH REPUBLIC (55%); GERMANY (53%)\n\nLoad-Date: August 7, 2021\n\n\n
132 \nSubject: WOMEN'S SPORTS (96%); CRICKET (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); MEN'S SPORTS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (78%); WOMEN (78%); EMOTIONS (69%)\n\nCompany: BEST INC (54%)\n\nTicker: BEST (NYSE) (54%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (54%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (54%); MEDIA CONTENT (73%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (95%); AUSTRALIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
133 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); PHOTO & VIDEO SHARING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); INTERNET SOCIAL NETWORKING (89%); ATHLETES (78%); SOCIAL MEDIA (78%); SPORTS & RECREATION EVENTS (78%); ACTORS & ACTRESSES (76%); HEADS OF STATE & GOVERNMENT (65%); PRIME MINISTERS (50%)\n\nIndustry: CELEBRITIES (90%); PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%); INTERNET SOCIAL NETWORKING (89%); SOCIAL MEDIA (78%); ACTORS & ACTRESSES (76%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
134 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); GENDER EQUALITY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); BADMINTON (89%); EMOTIONS (89%); NEGATIVE PERSONAL NEWS (79%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); MURDER (65%)\n\nGeographic: BEIJING, CHINA (79%); NORTH CENTRAL CHINA (79%); CHINA (90%); TAIWAN (78%)\n\nLoad-Date: August 2, 2021\n\n\n
135 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (89%); TRACK & FIELD (89%); INTERNET SOCIAL NETWORKING (78%); SOCIAL MEDIA (78%); DEFENSE DEPARTMENTS (72%); GOVERNMENT ADVISORS & MINISTERS (72%); SPORTS & RECREATION (71%)\n\nCompany: BEST INC (90%)\n\nTicker: BEST (NYSE) (90%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (90%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (90%); INTERNET SOCIAL NETWORKING (78%); SOCIAL MEDIA (78%); DEFENSE DEPARTMENTS (72%)\n\nPerson: NARENDRA MODI (93%); RAM NATH KOVIND (79%)\n\nGeographic: INDIA (99%)\n\nLoad-Date: August 7, 2021\n\n\n
136 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); BOXING (89%); FIELD HOCKEY (89%); MEN'S SPORTS (89%); WOMEN'S SPORTS (89%); WRESTLING (89%); BADMINTON (78%); SPORTS & RECREATION EVENTS (78%); 2012 LONDON SUMMER OLYMPICS (77%); WEIGHTLIFTING (77%); ARCHERY (72%); GOLF (70%)\n\nGeographic: LONDON, ENGLAND (88%); INDIA (95%); GERMANY (79%); UNITED KINGDOM (72%)\n\nLoad-Date: August 7, 2021\n\n\n
137 \nSubject: SPORTS & RECREATION (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CRICKET (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); WEIGHTLIFTING (72%); HOME HEALTH TESTING (66%)\n\nIndustry: MEDIA CONTENT (78%); HOME HEALTH TESTING (66%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: July 30, 2021\n\n\n
138 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); EXERCISE & FITNESS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); WOMEN'S SPORTS (78%); PRIME MINISTERS (53%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: July 25, 2021\n\n\n
139 \nSubject: 2020 TOKYO SUMMER OLYMPICS (93%); OLYMPICS (92%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); OLYMPIC COMMITTEES (89%); LANGUAGE & LANGUAGES (78%); MEN'S SPORTS (77%); STADIUMS & ARENAS (77%); DICTIONARIES & THESAURI (73%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (93%); JAPAN (92%); RUSSIAN FEDERATION (92%); UNITED ARAB EMIRATES (92%); GREECE (88%); TAIWAN (79%); UZBEKISTAN (79%); AUSTRIA (72%); UKRAINE (72%); FRANCE (69%)\n\nLoad-Date: July 23, 2021\n\n\n
140 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); PARALYMPICS (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); TRACK & FIELD (78%); SPORTS GOVERNING BODIES (73%); BIOMECHANICS (70%); OBESITY (68%); PHOTO & VIDEO SHARING (68%)\n\nIndustry: INTERNET VIDEO (68%); PHOTO & VIDEO SHARING (68%); TELEVISION INDUSTRY (51%)\n\nGeographic: HARYANA, INDIA (78%); INDIA (94%); EUROPE (67%)\n\nLoad-Date: August 9, 2021\n\n\n
141 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SWIMMING (90%); EMOTIONS (78%); SPORTS & RECREATION (78%)\n\nGeographic: AUSTRALIA (93%); UNITED STATES (90%); OCEANIA (57%)\n\nLoad-Date: July 27, 2021\n\n\n
142 \nSubject: OLYMPICS (92%); WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); SPORTS & RECREATION (77%); LANGUAGE & LANGUAGES (71%)\n\nIndustry: STREAMING MEDIA (71%); TELEVISION INDUSTRY (71%); TELEVISION PROGRAMMING (65%); HIGH DEFINITION TELEVISION (60%)\n\nGeographic: TAIPEI, TAIWAN (79%); MUMBAI, MAHARASHTRA, INDIA (74%); EAST CHINA (78%); INDIA (95%); CHINA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
143 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ATHLETES (89%); MEN'S SPORTS (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (88%); SPORTS AWARDS (78%); MOVIE REVIEWS (75%); SPORTS & RECREATION (73%)\n\nCompany: BEST INC (58%)\n\nTicker: BEST (NYSE) (58%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (58%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (58%); MOVIE REVIEWS (75%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); NEW ZEALAND (92%); ARGENTINA (79%); AUSTRALIA (79%); GERMANY (79%); NETHERLANDS (79%)\n\nLoad-Date: July 25, 2021\n\n\n
144 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); RUNNING (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (89%); STADIUMS & ARENAS (78%); COVID CORONAVIRUS (73%); SIKHS & SIKHISM (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LOS ANGELES, CA, USA (73%); INDIA (90%)\n\nLoad-Date: August 7, 2021\n\n\n
145 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); WEIGHTLIFTING (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (73%); MANIPUR, INDIA (59%); INDIA (90%)\n\nLoad-Date: July 24, 2021\n\n\n
146 \nSubject: ACTORS & ACTRESSES (90%); BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); CELEBRITIES (77%); POP & ROCK (76%); SOCIAL MEDIA (76%)\n\nCompany: LAKSHMI ENERGY & FOODS LTD (85%)\n\nTicker: LAKSHMIEFL (NSE) (85%)\n\nIndustry: NAICS311212 RICE MILLING (85%); SIC2044 RICE MILLING (85%); ACTORS & ACTRESSES (90%); CELEBRITIES (77%); SOCIAL MEDIA (76%)\n\nGeographic: TOKYO, JAPAN (58%); INDIA (79%); JAPAN (73%)\n\nLoad-Date: July 31, 2021\n\n\n
147 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); MEN'S SPORTS (90%); STATE & NATIONAL SYMBOLS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (89%); GENDER EQUALITY (78%); SPORTS & RECREATION (78%); TABLE TENNIS (73%); OLYMPIC COMMITTEES (72%); CULTURE DEPARTMENTS (68%); COVID CORONAVIRUS (57%); COVID-19 CORONAVIRUS (57%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); JAPAN (79%)\n\nLoad-Date: July 23, 2021\n\n\n
148 \nSubject: MEN'S SPORTS (93%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); PRIME MINISTERS (71%); HEADS OF STATE & GOVERNMENT (70%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (92%); INDIA (93%); GERMANY (92%); AUSTRALIA (79%); NEW ZEALAND (71%); JAPAN (58%); SPAIN (56%); BELGIUM (52%)\n\nLoad-Date: August 5, 2021\n\n\n
149 \nSubject: ARMIES (93%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); AWARDS & PRIZES (78%); DEFENSE DEPARTMENTS (78%); SHOOTING SPORTS (78%); WEAPONS & ARMS (78%)\n\nIndustry: ARMIES (93%); DEFENSE DEPARTMENTS (78%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); CHINA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
150 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); RANKINGS (90%); SUMMER OLYMPICS (90%); TENNIS (90%); TENNIS TOURNAMENTS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (89%); TWINS & MULTIPLE BIRTHS (89%); SPORTS AWARDS (78%); TOURNAMENTS (77%); PREGNANCY & CHILDBIRTH (71%)\n\nPerson: NOVAK DJOKOVIC (58%)\n\nGeographic: TOKYO, JAPAN (91%); ATLANTA, GA, USA (73%); MUMBAI, MAHARASHTRA, INDIA (59%); HOBART, AUSTRALIA (57%); INDIA (93%); AUSTRALIA (92%); UKRAINE (88%); UZBEKISTAN (88%); NETHERLANDS (53%)\n\nLoad-Date: July 23, 2021\n\n\n
151 \nSubject: ARMIES (97%); OLYMPICS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); MOUNTAINS (88%); MOUNTAIN CLIMBING (86%); FIELD HOCKEY (78%); SHOOTING SPORTS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (78%); SAILING (74%); SIKHS & SIKHISM (73%); ENGINEERING (72%); PROFESSIONAL WORKERS (72%); TOURNAMENTS (72%); BOAT RACING (68%); ASSOCIATIONS & ORGANIZATIONS (67%)\n\nIndustry: ARMIES (97%); ENGINEERING (72%)\n\nGeographic: JAKARTA, INDONESIA (55%); HIMALAYAS (79%); MOUNT EVEREST (79%); PUNJAB, INDIA (78%); INDIA (96%); INDONESIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
152 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (89%); WOMEN'S SPORTS (89%); OLYMPIC COMMITTEES (78%); SPORTS GOVERNING BODIES (78%); TRIATHLONS (78%); WOMEN (78%); 2012 LONDON SUMMER OLYMPICS (73%); EXERCISE & FITNESS (62%); SOCIAL MEDIA (61%); VIRAL VIDEOS (61%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (57%)\n\nIndustry: SOCIAL MEDIA (61%); VIRAL VIDEOS (61%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%); USAIN BOLT (79%); NAOMI OSAKA (78%)\n\nGeographic: TOKYO, JAPAN (91%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (55%); INDIA (96%)\n\nLoad-Date: July 30, 2021\n\n\n
153 \nSubject: OLYMPICS (92%); TRACK & FIELD (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); BOXING (78%); SPORTS & RECREATION EVENTS (78%); 2012 LONDON SUMMER OLYMPICS (73%); OLYMPIC COMMITTEES (73%); WRESTLING (73%); WEIGHTLIFTING (72%); TOURNAMENTS (60%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (56%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LONDON, ENGLAND (57%); HARYANA, INDIA (74%); INDIA (96%); UNITED KINGDOM (72%)\n\nLoad-Date: August 7, 2021\n\n\n
154 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (92%); SPORTS AWARDS (91%); WRESTLING (91%); ATHLETES (90%); MEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (79%); NEGATIVE PERSONAL NEWS (77%); HEADS OF STATE & GOVERNMENT (73%); 2012 LONDON SUMMER OLYMPICS (72%); MURDER (67%); PRIME MINISTERS (64%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BEIJING, CHINA (79%); HELSINKI, FINLAND (73%); MUMBAI, MAHARASHTRA, INDIA (58%); HARYANA, INDIA (73%); INDIA (94%); COLOMBIA (79%); BULGARIA (53%)\n\nLoad-Date: August 5, 2021\n\n\n
155 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); APPOINTMENTS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); GOVERNMENT ADVISORS & MINISTERS (78%); REGIONAL & LOCAL GOVERNMENTS (78%); SPORTS & RECREATION EVENTS (77%); SPORTS & RECREATION FACILITIES & VENUES (77%); CULTURE DEPARTMENTS (76%); POLICE FORCES (71%)\n\nOrganization: ASHA (55%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: HIMACHAL PRADESH, INDIA (92%); PUNJAB, INDIA (79%); INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
156 \nSubject: WOMEN'S SPORTS (92%); ACTORS & ACTRESSES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); DIWALI (89%); MEN'S SPORTS (89%); WOMEN (78%); SOCIAL MEDIA (74%)\n\nIndustry: ACTORS & ACTRESSES (90%); SOCIAL MEDIA (74%)\n\nPerson: SHAH RUKH KHAN (94%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (57%)\n\nLoad-Date: August 2, 2021\n\n\n
157 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MEN'S SPORTS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); WEIGHTLIFTING (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (89%); INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
158 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); MEN'S SPORTS (89%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%); GERMANY (91%)\n\nLoad-Date: August 6, 2021\n\n\n
159 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); ATHLETES (73%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (92%); BELGIUM (90%); GERMANY (72%)\n\nLoad-Date: August 3, 2021\n\n\n
160 \nSubject: WOMEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); WOMEN (90%); SPORTS CAMPS & SCHOOLS (89%); TOURNAMENTS (89%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); SYDNEY, AUSTRALIA (58%); MADHYA PRADESH, INDIA (92%); JHARKHAND, INDIA (79%); INDIA (93%); GERMANY (79%); NETHERLANDS (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 3, 2021\n\n\n
161 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); STADIUMS & ARENAS (78%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: TOKYO, JAPAN (88%); HARYANA, INDIA (79%); INDIA (79%); ASIA (77%); POLAND (53%)\n\nLoad-Date: August 7, 2021\n\n\n
162 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BOXING (89%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); WRESTLING (78%); BADMINTON (73%)\n\nGeographic: TOKYO, JAPAN (88%); HARYANA, INDIA (59%); INDIA (97%)\n\nLoad-Date: July 22, 2021\n\n\n
163 \nSubject: WRESTLING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LONDON, ENGLAND (55%); INDIA (94%); KAZAKHSTAN (88%); KYRGYZSTAN (69%); AZERBAIJAN (58%); IRAN, ISLAMIC REPUBLIC OF (53%)\n\nLoad-Date: August 7, 2021\n\n\n
164 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOVERNMENT ADVISORS & MINISTERS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); APPOINTMENTS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); REGIONAL & LOCAL GOVERNMENTS (78%); POLICE FORCES (73%); WEIGHTLIFTING (69%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MANIPUR, INDIA (95%); INDIA (94%)\n\nLoad-Date: July 28, 2021\n\n\n
165 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); CONSUMERS (90%); REGULATORY COMPLIANCE (90%); SUMMER OLYMPICS (90%); SELF REGULATING ORGANIZATIONS (79%); WOMEN'S SPORTS (78%); BADMINTON (73%); BOXING (73%); WEIGHTLIFTING (73%)\n\nCompany: ADITYA BIRLA GROUP (53%)\n\nIndustry: MARKETING & ADVERTISING (92%); CELEBRITIES (90%); MARKETING & ADVERTISING REGULATION (90%)\n\nLoad-Date: August 6, 2021\n\n\n
166 \nSubject: BADMINTON (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%)\n\nGeographic: TAIPEI, TAIWAN (90%)\n\nLoad-Date: August 2, 2021\n\n\n
167 \nSubject: WEIGHTLIFTING (94%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); MANIPUR, INDIA (73%); INDIA (92%); INDONESIA (56%)\n\nLoad-Date: July 24, 2021\n\n\n
168 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); CULTURE DEPARTMENTS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS AWARDS (89%); SPORTS & RECREATION EVENTS (78%); GOVERNMENT ADVISORS & MINISTERS (73%); LANGUAGE & LANGUAGES (71%)\n\nGeographic: TOKYO, JAPAN (88%); NEW DELHI, INDIA (79%); TAIPEI, TAIWAN (79%); MUMBAI, MAHARASHTRA, INDIA (78%); ASSAM, INDIA (90%); INDIA (97%); UKRAINE (58%)\n\nLoad-Date: July 30, 2021\n\n\n
169 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); TRACK & FIELD (78%); ARMIES (70%); CRICKET (67%)\n\nIndustry: ARMIES (70%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (58%); TOKYO, JAPAN (57%); HARYANA, INDIA (90%); PUNJAB, INDIA (90%); MANIPUR, INDIA (79%); INDIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
170 \nSubject: MEN'S SPORTS (95%); 2020 TOKYO SUMMER OLYMPICS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (90%); TELEVISION INDUSTRY (65%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (95%); BELGIUM (90%); UNITED KINGDOM (73%); JAPAN (58%); PAKISTAN (57%)\n\nLoad-Date: August 2, 2021\n\n\n
171 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); MEN'S SPORTS (92%); OLYMPICS (92%); CELEBRITIES (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EMOTIONS (78%); ACTORS & ACTRESSES (75%); SOCIAL MEDIA (75%); COACHES & TRAINERS (73%); SPORTS FANS (73%)\n\nCompany: TWITTER INC (91%)\n\nTicker: TWTR (NYSE) (91%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (91%); CELEBRITIES (90%); ACTORS & ACTRESSES (75%); SOCIAL MEDIA (75%)\n\nPerson: SHAH RUKH KHAN (94%); AKSHAY KUMAR (92%)\n\nGeographic: INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
172 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); WRESTLING (89%); 2016 RIO SUMMER OLYMPICS (78%); NEGATIVE PERSONAL NEWS (78%); 2012 LONDON SUMMER OLYMPICS (73%); MURDER (66%); PRIME MINISTERS (55%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (89%); BEIJING, CHINA (79%); HELSINKI, FINLAND (73%); HARYANA, INDIA (73%); INDIA (93%); COLOMBIA (79%); BULGARIA (73%)\n\nLoad-Date: August 5, 2021\n\n\n
173 \nSubject: MEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); ATHLETES (73%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (94%); AUSTRALIA (92%); GERMANY (92%); BELGIUM (90%); JAPAN (58%); NEW ZEALAND (56%)\n\nLoad-Date: August 3, 2021\n\n\n
174 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); WOMEN'S SPORTS (91%); BADMINTON (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%)\n\nIndustry: STREAMING MEDIA (90%)\n\nGeographic: TAIPEI, TAIWAN (90%); INDIA (73%)\n\nLoad-Date: August 2, 2021\n\n\n
175 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); MEN'S SPORTS (78%); NEGATIVE PERSONAL NEWS (78%); CONSUMERS (74%); BADMINTON (73%); BOXING (73%); WEIGHTLIFTING (73%); COVID CORONAVIRUS (70%); EXECUTIVES (67%); INFECTIOUS DISEASE (66%); COVID-19 CORONAVIRUS (52%)\n\nCompany: ADITYA BIRLA GROUP (51%)\n\nIndustry: CELEBRITIES (90%); MARKETING & ADVERTISING (90%); MARKETING & ADVERTISING REGULATION (90%)\n\nGeographic: GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
176 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); AIR FARES (77%); SPORTS & RECREATION (68%); EXECUTIVES (66%)\n\nCompany: INTERGLOBE AVIATION LTD (91%)\n\nTicker: INDIGO (NSE) (91%)\n\nIndustry: NAICS481111 SCHEDULED PASSENGER AIR TRANSPORTATION (91%); SIC4512 AIR TRANSPORTATION, SCHEDULED (91%); AIRLINES (90%); MEDIA CONTENT (78%); AIR FARES (77%)\n\nGeographic: NEW DELHI, INDIA (74%)\n\nLoad-Date: August 8, 2021\n\n\n
177 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); WOMEN'S SPORTS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (78%); INTERNET SOCIAL NETWORKING (76%); 2012 LONDON SUMMER OLYMPICS (73%); COLLEGE & UNIVERSITY SPORTS (73%)\n\nIndustry: MEDIA CONTENT (78%); INTERNET SOCIAL NETWORKING (76%); COLLEGE & UNIVERSITY SPORTS (73%)\n\nGeographic: LONDON, ENGLAND (54%); PUNJAB, INDIA (74%); INDIA (93%); CROATIA (73%); GERMANY (52%)\n\nLoad-Date: August 2, 2021\n\n\n
178 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%)\n\nGeographic: BEIJING, CHINA (79%); LONDON, ENGLAND (57%); SYDNEY, AUSTRALIA (56%); NORTH CENTRAL CHINA (79%); ARGENTINA (99%); INDIA (94%); AUSTRALIA (79%); NETHERLANDS (78%); LATIN AMERICA (58%); UNITED KINGDOM (57%)\n\nLoad-Date: August 4, 2021\n\n\n
179 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); BADMINTON (90%); CRICKET (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); ATHLETES (77%); SPORTS AWARDS (77%); SPORTS & RECREATION (76%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (89%); TAIPEI, TAIWAN (67%); INDIA (93%); JAPAN (58%); THAILAND (52%)\n\nLoad-Date: July 30, 2021\n\n\n
180 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); PROFESSIONAL SPORTS (78%); WINTER OLYMPICS (78%); TOURNAMENTS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); KUALA LUMPUR, MALAYSIA (58%); AUSTRALIA (97%); INDIA (95%); NEW ZEALAND (78%); JAPAN (73%); SPAIN (56%)\n\nLoad-Date: July 25, 2021\n\n\n
181 \nSubject: OLYMPICS (90%); APPOINTMENTS (78%); POLICE FORCES (78%); SPORTS AWARDS (77%); GOVERNMENT & PUBLIC ADMINISTRATION (75%); GOVERNMENT ADVISORS & MINISTERS (70%); WEIGHTLIFTING (69%); REGIONAL & LOCAL GOVERNMENTS (68%); HEADS OF STATE & GOVERNMENT (67%); PRIME MINISTERS (67%)\n\nIndustry: AIRPORTS (89%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MANIPUR, INDIA (94%); INDIA (79%)\n\nLoad-Date: July 28, 2021\n\n\n
182 \nSubject: TENNIS (99%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); WOMEN'S SPORTS (89%); ARCHERY (78%); BOXING (78%); EMOTIONS (78%); SPORTS & RECREATION EVENTS (78%); TABLE TENNIS (73%); WEIGHTLIFTING (72%)\n\nGeographic: TOKYO, JAPAN (88%); TAIPEI, TAIWAN (87%); INDIA (96%); JAPAN (58%)\n\nLoad-Date: July 25, 2021\n\n\n
183 \nSubject: MEN'S SPORTS (95%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); MEN (89%); EMOJIS & EMOTICONS (78%); NEGATIVE PERSONAL NEWS (78%); PHOTO & VIDEO SHARING (78%); SPORTS & RECREATION EVENTS (78%); ACTORS & ACTRESSES (72%); EMOTIONS (67%)\n\nIndustry: CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); EMOJIS & EMOTICONS (78%); PHOTO & VIDEO SHARING (78%); ACTORS & ACTRESSES (72%)\n\nGeographic: INDIA (96%); GERMANY (92%); UNITED STATES (79%)\n\nLoad-Date: August 5, 2021\n\n\n
184 \nSubject: WEIGHTLIFTING (94%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); MANIPUR, INDIA (73%); INDIA (92%); INDONESIA (56%)\n\nLoad-Date: July 24, 2021\n\n\n
185 \nSubject: WOMEN'S SPORTS (96%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (78%); SOCIAL MEDIA (78%)\n\nIndustry: CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (78%); SOCIAL MEDIA (78%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
186 \nSubject: TENNIS (93%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ATHLETES (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (78%); TENNIS TOURNAMENTS (77%)\n\nPerson: ASHLEIGH BARTY (79%); GARBINE MUGURUZA (79%); KEI NISHIKORI (79%); NAOMI OSAKA (79%)\n\nGeographic: INDIA (88%); UZBEKISTAN (55%); SPAIN (52%)\n\nLoad-Date: July 27, 2021\n\n\n
187 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); TABLE TENNIS (89%); WEAPONS & ARMS (89%); BADMINTON (78%); MEN'S SPORTS (78%); WEIGHTLIFTING (78%); ARCHERY (73%); MARTIAL ARTS (73%)\n\nCompany: ABHISHEK CORP LTD (85%)\n\nIndustry: NAICS313110 FIBER, YARN & THREAD MILLS (85%); SIC2281 YARN SPINNING MILLS (85%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); TAIPEI, TAIWAN (56%); INDIA (94%); NETHERLANDS (79%); NEW ZEALAND (55%)\n\nLoad-Date: July 23, 2021\n\n\n
188 \nSubject: SHOOTING SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIREARMS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WEAPONS & ARMS (89%); SPORTS & RECREATION (66%)\n\nOrganization: NATIONAL RIFLE ASSOCIATION OF AMERICA (84%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (95%)\n\nLoad-Date: July 27, 2021\n\n\n
189 \nSubject: MEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (89%); PHOTO & VIDEO SHARING (89%); ACTORS & ACTRESSES (77%)\n\nIndustry: CELEBRITIES (90%); SOCIAL MEDIA (90%); INTERNET SOCIAL NETWORKING (89%); PHOTO & VIDEO SHARING (89%); ACTORS & ACTRESSES (77%)\n\nPerson: SHAH RUKH KHAN (94%); AKSHAY KUMAR (90%)\n\nGeographic: INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
190 \nSubject: GOLF (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); ATHLETES (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); HEADS OF STATE & GOVERNMENT (74%); SPORTS FANS (73%); TOURNAMENTS (72%); PRIME MINISTERS (60%)\n\nPerson: LYDIA KO (73%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); JAPAN (79%); NEW ZEALAND (79%); UNITED STATES (79%)\n\nLoad-Date: August 8, 2021\n\n\n
191 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 1, 2021\n\n\n
192 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION EVENTS (89%); PRIME MINISTERS (50%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); PAKISTAN (91%); ASIA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
193 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); HEADS OF STATE & GOVERNMENT (77%); PRIME MINISTERS (72%); HISTORY (71%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BERLIN, GERMANY (90%); GUJARAT, INDIA (59%); GERMANY (95%); INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
194 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); PANDEMICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); SPORTS & RECREATION (89%); TOURNAMENTS (89%); WEAPONS & ARMS (89%); 2016 RIO SUMMER OLYMPICS (78%); CELEBRITIES (78%); INFECTIOUS DISEASE (78%); MARTIAL ARTS (78%); SPORTS AWARDS (78%); TABLE TENNIS (78%); WEIGHTLIFTING (78%); COVID-19 CORONAVIRUS REGULATION & POLICY (77%); TRENDS & EVENTS (77%); BADMINTON (73%); SHOOTING SPORTS (73%)\n\nIndustry: CELEBRITIES (78%); TRAVEL BANS (56%)\n\nGeographic: TOKYO, JAPAN (91%); BEIJING, CHINA (79%); WUHAN, HUBEI, CHINA (79%); NORTH CENTRAL CHINA (79%); CHINA (95%); INDIA (93%)\n\nLoad-Date: July 22, 2021\n\n\n
195 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); CONSUMERS (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); BADMINTON (73%); BOXING (73%); WEIGHTLIFTING (73%); COVID CORONAVIRUS (70%); INFECTIOUS DISEASE (66%); COVID-19 CORONAVIRUS (51%)\n\nCompany: ADITYA BIRLA GROUP (52%)\n\nIndustry: CELEBRITIES (90%); MARKETING & ADVERTISING (90%); MARKETING & ADVERTISING REGULATION (90%)\n\nGeographic: GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
196 \nSubject: ARCHERY (92%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); RANKINGS (89%); 2012 LONDON SUMMER OLYMPICS (78%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS AWARDS (78%)\n\nGeographic: TAIPEI, TAIWAN (77%); TOKYO, JAPAN (73%); MAHARASHTRA, INDIA (73%); INDIA (95%); KAZAKHSTAN (76%)\n\nLoad-Date: July 23, 2021\n\n\n
197 \nSubject: MEN'S SPORTS (93%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: ACTORS & ACTRESSES (90%); CELEBRITIES (90%)\n\nPerson: AKSHAY KUMAR (90%); SHAH RUKH KHAN (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%); GERMANY (79%); MEXICO (52%)\n\nLoad-Date: August 5, 2021\n\n\n
198 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); 2016 RIO SUMMER OLYMPICS (78%); ARCHERY (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); WEIGHTLIFTING (77%); RANKINGS (71%); FIREARMS (69%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (97%); CHINA (51%)\n\nLoad-Date: July 23, 2021\n\n\n
199 \nSubject: WOMEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); MEN'S SPORTS (78%); POOL & BILLIARDS (78%); SUMMER OLYMPICS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%); GERMANY (79%); NETHERLANDS (79%); UNITED KINGDOM (71%)\n\nLoad-Date: August 2, 2021\n\n\n
200 \nSubject: MEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS AWARDS (89%); TENNIS (89%); TENNIS TOURNAMENTS (89%); WEAPONS & ARMS (89%); ARCHERY (78%); SHOOTING SPORTS (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (73%); COVID CORONAVIRUS (51%); COVID-19 CORONAVIRUS (51%)\n\nPerson: NOVAK DJOKOVIC (89%)\n\nGeographic: NEW ZEALAND (91%); AUSTRALIA (79%); BOLIVIA (79%); CROATIA (54%)\n\nLoad-Date: July 23, 2021\n\n\n
201 \nSubject: WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); EXERCISE & FITNESS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (93%); CHINA (79%); INDONESIA (56%)\n\nLoad-Date: July 24, 2021\n\n\n
202 \nSubject: MEN'S SPORTS (92%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (89%); FILM (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); PHOTO & VIDEO SHARING (72%); FILM DIRECTORS (64%)\n\nIndustry: ACTORS & ACTRESSES (89%); FILM (78%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (72%); FILM DIRECTORS (64%)\n\nPerson: SHAH RUKH KHAN (93%)\n\nGeographic: INDIA (94%); GERMANY (79%); MEXICO (56%)\n\nLoad-Date: August 5, 2021\n\n\n
203 \nSubject: 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); MARATHONS (89%); RUNNING (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); TRACK & FIELD (78%)\n\nCompany: GOLDEN LAND PROPERTY DEVELOPMENT PCL (53%)\n\nTicker: GOLD (SET) (53%)\n\nIndustry: NAICS237210 LAND SUBDIVISION (53%); SIC6552 LAND SUBDIVIDERS & DEVELOPERS, EXCEPT CEMETERIES (53%)\n\nGeographic: VENEZUELA, BOLIVARIAN REPUBLIC OF (68%)\n\nLoad-Date: August 9, 2021\n\n\n
204 \nSubject: ARCHERY (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); ATHLETES (78%); RANKINGS (78%); 2012 LONDON SUMMER OLYMPICS (73%); NEGATIVE PERSONAL NEWS (73%); SPORTS & RECREATION (73%); PSYCHOLOGY (66%)\n\nIndustry: PSYCHOLOGY (66%)\n\nGeographic: TOKYO, JAPAN (91%); LONDON, ENGLAND (57%); INDIA (89%); GUATEMALA (66%); RUSSIAN FEDERATION (55%)\n\nLoad-Date: July 23, 2021\n\n\n
205 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ACTORS & ACTRESSES (90%); ENTERTAINMENT & ARTS AWARDS (90%); MARTIAL ARTS (90%); SINGERS & MUSICIANS (90%); SPORTS FANS (90%); SUMMER OLYMPICS (90%); CELEBRITIES (78%); GRAMMY AWARDS (78%); MUSIC (78%); SPORTS AWARDS (78%); PHOTO & VIDEO SHARING (77%); ACADEMY AWARDS (75%); GOLDEN GLOBE AWARDS (75%); NOVELS & SHORT STORIES (70%); FILM DIRECTORS (67%); GRANDCHILDREN (66%)\n\nCompany: GUCCI GROUP NV (95%)\n\nIndustry: NAICS316992 WOMEN'S HANDBAG & PURSE MANUFACTURING (95%); SIC3171 WOMEN'S HANDBAGS & PURSES (95%); ACTORS & ACTRESSES (90%); ENTERTAINMENT & ARTS AWARDS (90%); FASHION DESIGNERS (90%); SINGERS & MUSICIANS (90%); CELEBRITIES (78%); GRAMMY AWARDS (78%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (77%); MOVIE FILMING (76%); MOVIE RELEASE DATES (76%); ACADEMY AWARDS (75%); GOLDEN GLOBE AWARDS (75%); FASHION & APPAREL (72%); FILM DIRECTORS (67%); FASHION DESIGN (66%)\n\nPerson: ADAM DRIVER (92%); AL PACINO (79%); JARED LETO (79%); JEREMY IRONS (79%)\n\nGeographic: INDIA (74%); EUROPE (73%); UNITED STATES (67%)\n\nLoad-Date: July 31, 2021\n\n\n
206 \nSubject: WOMEN'S SPORTS (94%); CELEBRITIES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (77%); MEN'S SPORTS (77%); SPORTS & RECREATION EVENTS (77%); SUMMER OLYMPICS (77%); SPORTS FANS (73%)\n\nIndustry: CELEBRITIES (90%)\n\nGeographic: INDIA (96%); ARGENTINA (93%); AUSTRALIA (79%)\n\nLoad-Date: August 3, 2021\n\n\n
207 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); NEGATIVE NEWS (78%); SPORTS AWARDS (78%); NEGATIVE MISC NEWS (60%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); TOKYO, JAPAN (58%); GERMANY (94%); INDIA (94%); JAPAN (79%)\n\nLoad-Date: August 6, 2021\n\n\n
208 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); ATHLETES (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); PRESS CONFERENCES (73%); WOUNDS & INJURIES (71%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (90%)\n\nLoad-Date: July 22, 2021\n\n\n
209 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (89%); FIELD HOCKEY (78%); BOXING (77%); MEN'S SPORTS (77%); SPORTS & RECREATION EVENTS (77%); TRENDS & EVENTS (77%); 2012 LONDON SUMMER OLYMPICS (72%); ARCHERY (72%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: July 28, 2021\n\n\n
210 \nSubject: OLYMPICS (91%); TENNIS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); MARRIAGE (87%); ATHLETES (78%); TENNIS TOURNAMENTS (78%); TOURNAMENTS (78%); WOMEN'S SPORTS (78%); DELAYS & POSTPONEMENTS (77%); PREGNANCY & CHILDBIRTH (72%); COVID CORONAVIRUS (66%); COVID-19 CORONAVIRUS (66%); INFECTIOUS DISEASE (66%)\n\nIndustry: CELEBRITIES (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); DUBAI, UNITED ARAB EMIRATES (53%); INDIA (90%); JAPAN (58%); UNITED ARAB EMIRATES (53%)\n\nLoad-Date: July 22, 2021\n\n\n
211 \nSubject: MEN'S SPORTS (91%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (89%); PRIME MINISTERS (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (89%); TOKYO, JAPAN (73%); INDIA (95%); GERMANY (94%); MEXICO (73%)\n\nLoad-Date: August 5, 2021\n\n\n
212 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); SPORTS SPONSORSHIP (78%); PRIME MINISTERS (77%); GOVERNMENT ADVISORS & MINISTERS (72%); TOURNAMENTS (68%)\n\nIndustry: SPORTS SPONSORSHIP (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); ODISHA, INDIA (91%); INDIA (95%)\n\nLoad-Date: August 5, 2021\n\n\n
213 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (91%); MEN'S SPORTS (90%); PRIME MINISTERS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (89%); STADIUMS & ARENAS (89%); TRENDS & EVENTS (89%); CULTURE DEPARTMENTS (78%); GOVERNMENT ADVISORS & MINISTERS (78%); OLYMPIC COMMITTEES (78%); SPORTS GOVERNING BODIES (78%); TABLE TENNIS (73%); COVID CORONAVIRUS (67%); COVID-19 CORONAVIRUS (67%)\n\nIndustry: MEDIA CONTENT (73%); FIREWORKS (69%)\n\nPerson: NARENDRA MODI (93%)\n\nGeographic: NEW DELHI, INDIA (92%); TOKYO, JAPAN (90%); INDIA (96%); JAPAN (92%)\n\nLoad-Date: July 23, 2021\n\n\n
214 \nSubject: OLYMPICS (91%); WRESTLING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (77%); OLYMPIC COMMITTEES (72%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (93%); KAZAKHSTAN (72%); RUSSIAN FEDERATION (72%)\n\nLoad-Date: August 5, 2021\n\n\n
215 \nSubject: OLYMPICS (92%); WOMEN'S SPORTS (91%); 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); PRIME MINISTERS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (78%); HEADS OF STATE & GOVERNMENT (76%); EMOTIONS (69%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (95%); ARGENTINA (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 6, 2021\n\n\n
216 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); CONSUMERS (90%); NEGATIVE PERSONAL NEWS (90%); SUMMER OLYMPICS (90%); REGULATORY COMPLIANCE (89%); SELF REGULATING ORGANIZATIONS (79%); WOMEN'S SPORTS (78%); BADMINTON (73%); BOXING (73%); WEIGHTLIFTING (73%)\n\nCompany: ADITYA BIRLA GROUP (54%)\n\nIndustry: MARKETING & ADVERTISING (93%); CELEBRITIES (90%); MARKETING & ADVERTISING REGULATION (90%); MARKETING & ADVERTISING AGENCIES (79%)\n\nLoad-Date: August 6, 2021\n\n\n
217 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); BOXING (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (78%); ARCHERY (73%); EXERCISE & FITNESS (73%); COVID CORONAVIRUS (50%)\n\nGeographic: TOKYO, JAPAN (90%); MANIPUR, INDIA (90%); INDIA (96%); CHINA (79%)\n\nLoad-Date: August 1, 2021\n\n\n
218 \nSubject: WOMEN'S SPORTS (92%); OLYMPICS (91%); 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); UNITED KINGDOM (92%)\n\nLoad-Date: August 6, 2021\n\n\n
219 \nSubject: WRESTLING (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); TOURNAMENTS (89%); ATHLETES (77%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); LONDON, ENGLAND (51%); INDIA (93%); AZERBAIJAN (90%); KYRGYZSTAN (76%); IRAN, ISLAMIC REPUBLIC OF (53%)\n\nLoad-Date: August 6, 2021\n\n\n
220 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); PROFILES & BIOGRAPHIES (89%); AGREEMENTS (78%); DRAMA FILMS (78%); DRAMA LITERATURE (78%); FILM DIRECTORS (78%); FILM (73%)\n\nIndustry: DRAMA FILMS (78%); FILM DIRECTORS (78%); MEDIA CONTENT (78%); MOVIE & VIDEO PRODUCTION (78%); MOVIE INDUSTRY (78%); FILM (73%)\n\nGeographic: NEW DELHI, INDIA (74%); MANIPUR, INDIA (90%); INDIA (91%)\n\nLoad-Date: August 1, 2021\n\n\n
221 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); BADMINTON (78%); CELEBRITIES (78%); SPORTS & RECREATION EVENTS (78%); OLYMPIC COMMITTEES (72%)\n\nIndustry: CELEBRITIES (78%); OUTDOOR ADVERTISING (69%); MARKETING & ADVERTISING (68%); TELEVISION ADVERTISING (52%); TELEVISION INDUSTRY (52%)\n\nGeographic: TOKYO, JAPAN (90%); HYDERABAD, ANDHRA PRADESH, INDIA (50%); JAPAN (59%); RUSSIAN FEDERATION (57%)\n\nLoad-Date: July 28, 2021\n\n\n
222 \nSubject: BOXING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPIC COMMITTEES (90%); OLYMPICS (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (90%); DRUGS IN SPORTS (78%); NEGATIVE NEWS (77%); SPORTS AWARDS (77%); 2012 LONDON SUMMER OLYMPICS (72%); SPORTS OFFICIATING (72%); SOCIAL MEDIA (71%); FRAUD & FINANCIAL CRIME (67%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (55%)\n\nIndustry: SOCIAL MEDIA (71%)\n\nGeographic: TOKYO, JAPAN (88%); COLOMBIA (90%)\n\nLoad-Date: July 30, 2021\n\n\n
223 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); SPORTS & RECREATION EVENTS (78%); 2016 RIO SUMMER OLYMPICS (77%); CHILDREN (77%); WEDDINGS & ENGAGEMENTS (73%)\n\nIndustry: MEDIA CONTENT (78%); FOOD INDUSTRY (76%)\n\nGeographic: HARYANA, INDIA (89%); INDIA (90%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
224 \nSubject: 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); BADMINTON (78%); ATHLETES (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (93%); JAPAN (73%); HONG KONG (67%); SPAIN (51%)\n\nLoad-Date: July 31, 2021\n\n\n
225 \nSubject: BOXING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS OFFICIATING (90%); SUMMER OLYMPICS (90%); VERDICTS (88%); REFEREES & UMPIRES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); INTERNET SOCIAL NETWORKING (72%); SOCIAL MEDIA (72%); COVID CORONAVIRUS (51%); COVID-19 CORONAVIRUS (51%)\n\nIndustry: INTERNET SOCIAL NETWORKING (72%); SOCIAL MEDIA (72%)\n\nGeographic: COLOMBIA (92%); INDIA (79%)\n\nLoad-Date: July 30, 2021\n\n\n
226 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (91%); WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); MEN'S SPORTS (89%); REGIONAL & LOCAL GOVERNMENTS (89%); SPORTS AWARDS (89%); SPORTS SPONSORSHIP (89%); STADIUMS & ARENAS (89%); SPORTS & RECREATION FACILITIES & VENUES (78%); GOVERNMENT ADVISORS & MINISTERS (73%); TOURNAMENTS (70%)\n\nCompany: TATA GROUP (74%)\n\nIndustry: NAICS541330 ENGINEERING SERVICES (74%); NAICS311920 COFFEE & TEA MANUFACTURING (74%); SIC4911 ELECTRIC SERVICES (74%); SIC3312 STEEL WORKS, BLAST FURNACES (INCLUDING COKE OVENS) & ROLLING MILLS (74%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (74%); SPORTS SPONSORSHIP (89%)\n\nGeographic: TOKYO, JAPAN (73%); ODISHA, INDIA (97%); INDIA (93%); AUSTRALIA (79%)\n\nLoad-Date: August 3, 2021\n\n\n
227 \nSubject: WEIGHTLIFTING (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EXERCISE & FITNESS (89%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); FACE MASK MANDATES (75%); COVID CORONAVIRUS (70%); COVID-19 CORONAVIRUS (55%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (73%); SYDNEY, AUSTRALIA (72%); MANIPUR, INDIA (79%); QUEENSLAND, AUSTRALIA (52%); INDIA (94%); AUSTRALIA (79%); GREECE (58%)\n\nLoad-Date: July 24, 2021\n\n\n
228 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); EXERCISE & FITNESS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); PROFILES & BIOGRAPHIES (89%); AGREEMENTS (78%); DRAMA FILMS (78%); DRAMA LITERATURE (78%); FILM DIRECTORS (78%); WOMEN'S SPORTS (77%); FILM (73%); TRENDS & EVENTS (72%)\n\nIndustry: MOVIE INDUSTRY (93%); MOVIE & VIDEO PRODUCTION (91%); DRAMA FILMS (78%); FILM DIRECTORS (78%); MEDIA CONTENT (78%); FILM (73%)\n\nGeographic: TOKYO, JAPAN (88%); MANIPUR, INDIA (92%); INDIA (92%)\n\nLoad-Date: August 1, 2021\n\n\n
229 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); WOMEN'S SPORTS (89%); 2016 RIO SUMMER OLYMPICS (78%); ARCHERY (78%); SPORTS AWARDS (78%)\n\nGeographic: TOKYO, JAPAN (88%); TAIPEI, TAIWAN (72%); ASSAM, INDIA (73%); INDIA (95%); UKRAINE (55%); THAILAND (54%)\n\nLoad-Date: July 31, 2021\n\n\n
230 \nSubject: OLYMPICS (92%); LETTERS & COMMENTS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); 2020 TOKYO SUMMER OLYMPICS (89%); EXERCISE & FITNESS (89%); SUMMER OLYMPICS (89%); SPORTS & RECREATION (88%); 2016 RIO SUMMER OLYMPICS (77%); CULTURE DEPARTMENTS (72%); ISLANDS & REEFS (72%); OLYMPIC COMMITTEES (72%); SPORTS FANS (72%); LOW INCOME PERSONS (60%); RURAL COMMUNITIES (60%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (88%); TOKYO, JAPAN (88%); HYDERABAD, ANDHRA PRADESH, INDIA (58%); KOLKATA, WEST BENGAL, INDIA (58%); MANIPUR, INDIA (73%); INDIA (94%)\n\nLoad-Date: July 28, 2021\n\n\n
231 \nSubject: BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); SPORTS AWARDS (78%)\n\nGeographic: TOKYO, JAPAN (90%); HYDERABAD, ANDHRA PRADESH, INDIA (58%); HONG KONG (73%); JAPAN (59%); THAILAND (56%); NETHERLANDS (51%)\n\nLoad-Date: July 28, 2021\n\n\n
232 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: PUNJAB, INDIA (79%); INDIA (90%); AUSTRALIA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
233 \nSubject: SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); EMOTIONS (75%); COVID CORONAVIRUS (64%); COVID-19 CORONAVIRUS (64%); INFECTIOUS DISEASE (64%); PANDEMICS (64%)\n\nGeographic: TOKYO, JAPAN (90%)\n\nLoad-Date: August 9, 2021\n\n\n
234 \nSubject: TABLE TENNIS (90%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); INFECTIOUS DISEASE (89%); WOMEN'S SPORTS (78%); EMOTIONS (77%); VACCINES (76%)\n\nIndustry: VACCINES (76%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); KOLKATA, WEST BENGAL, INDIA (58%); INDIA (91%); GERMANY (90%); FRANCE (79%); EUROPE (58%)\n\nLoad-Date: July 27, 2021\n\n\n
235 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS FANS (89%); COACHES & TRAINERS (78%); SPORTS AWARDS (78%); SPORTS CAMPS & SCHOOLS (78%); WOMEN (78%); WOMEN'S SPORTS (78%); ADOLESCENTS & TEENS (77%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (88%); INDIA (94%); UNITED KINGDOM (58%)\n\nLoad-Date: August 8, 2021\n\n\n
236 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (89%)\n\nCompany: ABHISHEK CORP LTD (92%)\n\nIndustry: NAICS313110 FIBER, YARN & THREAD MILLS (92%); SIC2281 YARN SPINNING MILLS (92%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (91%); INDONESIA (52%)\n\nLoad-Date: July 24, 2021\n\n\n
237 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS & RECREATION (89%); TOURNAMENTS (89%); 2012 LONDON SUMMER OLYMPICS (78%); 2016 RIO SUMMER OLYMPICS (78%); INTERVIEWS (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); PSYCHOLOGICAL STRESS (72%)\n\nGeographic: LONDON, ENGLAND (56%); INDIA (94%)\n\nLoad-Date: July 23, 2021\n\n\n
238 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); NEWS REPORTING (89%)\n\nIndustry: NEWS REPORTING (89%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (88%); MANIPUR, INDIA (74%); INDIA (91%); INDONESIA (54%)\n\nLoad-Date: July 24, 2021\n\n\n
239 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); GOLF (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BOXING (78%); WOMEN'S SPORTS (78%); WRESTLING (78%); GOLF TOURNAMENTS (77%); TOURNAMENTS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (91%); ARGENTINA (90%); BELARUS (73%); NIGERIA (52%)\n\nLoad-Date: August 3, 2021\n\n\n
240 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (77%); EMOTIONS (67%); DIVIDENDS (62%)\n\nGeographic: UTTAR PRADESH, INDIA (90%); INDIA (99%); INDONESIA (72%); UNITED STATES (72%); BELGIUM (55%)\n\nLoad-Date: August 5, 2021\n\n\n
241 \nSubject: WOMEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (89%); TOURNAMENTS (89%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WOMEN (78%); SUMMER OLYMPICS (77%); YOUTH SPORTS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); ARGENTINA (94%); AUSTRALIA (90%); GERMANY (79%)\n\nLoad-Date: August 4, 2021\n\n\n
242 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GYMNASTICS (90%); MENTAL HEALTH (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); CRICKET (89%); TENNIS (89%); TENNIS TOURNAMENTS (89%); CELEBRITIES (78%); COACHES & TRAINERS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); MENTORS & ROLE MODELS (77%)\n\nIndustry: CELEBRITIES (78%)\n\nPerson: SIMONE BILES (94%); NAOMI OSAKA (79%)\n\nGeographic: TOKYO, JAPAN (88%); OSAKA, JAPAN (51%); ENGLAND (90%); WALES (70%); UNITED KINGDOM (50%)\n\nLoad-Date: July 29, 2021\n\n\n
243 \nSubject: SHOOTING SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIREARMS (90%); OLYMPICS (90%); WEAPONS & ARMS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); RANKINGS (67%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (90%)\n\nLoad-Date: July 27, 2021\n\n\n
244 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOARDSPORTS (90%); EXTREME SPORTS (90%); SHOOTING SPORTS (90%); SKATEBOARDING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); WEAPONS & ARMS (72%); EMOTIONS (67%)\n\nCompany: AL MUDON INTERNATIONAL REAL ESTATE CO KSCC (90%)\n\nTicker: ALMUDON (KUW) (90%)\n\nIndustry: NAICS531110 LESSORS OF RESIDENTIAL BUILDINGS & DWELLINGS (90%); SIC6513 OPERATORS OF APARTMENT BUILDINGS (90%)\n\nGeographic: TOKYO, JAPAN (89%); JAPAN (90%); KUWAIT (88%)\n\nLoad-Date: July 26, 2021\n\n\n
245 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); WEAPONS & ARMS (68%); ARMIES (55%)\n\nCompany: DAV (54%)\n\nIndustry: NAICS334417 ELECTRONIC CONNECTOR MANUFACTURING (54%); SIC5063 ELECTRICAL APPARATUS & EQUIPMENT (54%); ARMIES (55%)\n\nGeographic: BEIJING, CHINA (79%); HARYANA, INDIA (90%); NORTH CENTRAL CHINA (79%); CHANDIGARH, INDIA (78%); QUEENSLAND, AUSTRALIA (71%); AUSTRALIA (79%); CHINA (79%); INDONESIA (74%); POLAND (53%)\n\nLoad-Date: August 8, 2021\n\n\n
246 \nSubject: MEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (77%); PRIME MINISTERS (51%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (95%); BELGIUM (90%); PAKISTAN (74%); UNITED KINGDOM (74%); JAPAN (73%)\n\nLoad-Date: August 3, 2021\n\n\n
247 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); GOLF (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); WRESTLING (90%); 2016 RIO SUMMER OLYMPICS (89%); TOURNAMENTS (89%); MEN'S SPORTS (79%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (95%); UNITED KINGDOM (90%); GERMANY (79%); AZERBAIJAN (50%)\n\nLoad-Date: August 6, 2021\n\n\n
248 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ALTERNATIVE MEDICINE (90%); INFECTIOUS DISEASE (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); DISEASES & DISORDERS (89%); SKIN DISORDERS (89%); SPORTS AWARDS (78%); CONSUMER HEALTH INFORMATION (76%); HISTORY (76%); ACNE (75%); MALARIA (75%); MEDICINE & HEALTH (74%); CELEBRITIES (72%); HERPES INFECTIONS (70%); SHINGLES (70%); VIRUSES (65%); CHICKEN POX (64%)\n\nIndustry: ALTERNATIVE MEDICINE (90%); ANTIBIOTICS (76%); CONSUMER HEALTH INFORMATION (76%); CELEBRITIES (72%)\n\nGeographic: TOKYO, JAPAN (73%); AUSTRALIA (79%); INDIA (79%); CHINA (77%); MIDDLE EAST (57%)\n\nLoad-Date: July 31, 2021\n\n\n
249 \nSubject: MEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WINTER OLYMPICS (90%); WOMEN'S SPORTS (89%); SPORTS AWARDS (78%); WOMEN (78%); FESTIVALS (76%); INTERNET SOCIAL NETWORKING (75%); VIRTUAL EVENTS (75%); TRENDS & EVENTS (73%); GOVERNMENT ADVISORS & MINISTERS (70%); SOCIAL MEDIA (70%); WEIGHTLIFTING (63%)\n\nCompany: FACEBOOK INC (54%)\n\nTicker: FB (NASDAQ) (54%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (54%); MEDIA CONTENT (78%); FESTIVALS (76%); INTERNET SOCIAL NETWORKING (75%); SOCIAL MEDIA (70%)\n\nGeographic: MANIPUR, INDIA (93%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
250 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS GOVERNING BODIES (89%); SPORTS REGULATION & POLICY (89%); 2016 RIO SUMMER OLYMPICS (78%); HEADS OF STATE & GOVERNMENT (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (77%); 2012 LONDON SUMMER OLYMPICS (72%); PRIME MINISTERS (71%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (90%); CHENNAI, TAMIL NADU, INDIA (73%); LONDON, ENGLAND (52%); FRANKFURT AM MAIN, GERMANY (79%); INDIA (94%); GERMANY (90%); CHINA (79%); EUROPE (79%); TUNISIA (79%); VENEZUELA, BOLIVARIAN REPUBLIC OF (79%); UNITED STATES (78%)\n\nLoad-Date: July 27, 2021\n\n\n
251 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%); RAM NATH KOVIND (79%)\n\nGeographic: INDIA (96%)\n\nLoad-Date: August 1, 2021\n\n\n
252 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SUMMER OLYMPICS (90%); WEDDINGS & ENGAGEMENTS (89%); WOUNDS & INJURIES (89%); ATHLETES (78%); SPORTS AWARDS (78%); SPORTS INJURIES (78%); MARRIAGE (74%); MUSCULOSKELETAL DISORDERS & INJURIES (72%); BASKETBALL (70%); CERTIFICATES, DEGREES & DIPLOMAS (70%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: HARYANA, INDIA (90%); ALGERIA (79%)\n\nLoad-Date: July 29, 2021\n\n\n
253 \nSubject: EXERCISE & FITNESS (91%); WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION (89%); WOMEN'S SPORTS (77%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (74%)\n\nLoad-Date: July 28, 2021\n\n\n
254 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); COOKING & ENTERTAINING (90%); SPORTS AWARDS (78%); PHOTO & VIDEO SHARING (76%); SELFIES (76%)\n\nIndustry: MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (76%); SELFIES (76%)\n\nGeographic: MANIPUR, INDIA (90%); INDIA (90%)\n\nLoad-Date: July 29, 2021\n\n\n
255 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); RANKINGS (69%)\n\nGeographic: NEW DELHI, INDIA (89%); INDIA (91%); KAZAKHSTAN (90%); AZERBAIJAN (55%)\n\nLoad-Date: August 7, 2021\n\n\n
256 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); GOVERNMENT ADVISORS & MINISTERS (77%); SPORTS & RECREATION (77%); SPORTS & RECREATION EVENTS (77%); STADIUMS & ARENAS (77%); OLYMPIC COMMITTEES (72%); REGIONAL & LOCAL GOVERNMENTS (67%)\n\nGeographic: TOKYO, JAPAN (88%); UTTAR PRADESH, INDIA (93%); INDIA (99%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
257 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); EMOTIONS (78%); SPORTS AWARDS (78%); TRENDS & EVENTS (76%); BASKETBALL (73%); SPORTS FANS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: PUNJAB, INDIA (59%); INDIA (79%); GERMANY (78%)\n\nLoad-Date: August 5, 2021\n\n\n
258 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SPORTS FANS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (89%); SPORTS & RECREATION (89%); WOMEN'S SPORTS (89%); PROFESSIONAL SPORTS (78%); BADMINTON (73%); BOXING (73%); OLYMPIC COMMITTEES (73%); SPORTING GOODS (73%); DEMOGRAPHIC GROUPS (71%); TICKET SALES (65%)\n\nIndustry: SPORTING GOODS (73%); TICKET SALES (65%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (90%); TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); SOUTH INDIA (79%); KARNATAKA, INDIA (78%); INDIA (97%); NEW ZEALAND (79%); JAPAN (78%); UNITED KINGDOM (77%)\n\nLoad-Date: July 23, 2021\n\n\n
259 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); GYMNASTICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ATHLETES (89%); HANDBALL (89%); WOMEN (89%); CELEBRITIES (79%); MEN'S SPORTS (79%); FINES & PENALTIES (67%); DANCERS (65%); BEACHES (64%)\n\nIndustry: ACTIVEWEAR & SPORTSWEAR (90%); SWIMWEAR (89%); CELEBRITIES (79%); DANCERS (65%)\n\nPerson: PINK (50%)\n\nGeographic: GERMANY (94%); NORWAY (91%)\n\nLoad-Date: July 29, 2021\n\n\n
260 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SHOOTING SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (89%); ATHLETES (78%); TOURNAMENTS (78%); OLYMPIC COMMITTEES (73%); SPORTS & RECREATION (69%)\n\nGeographic: BEIJING, CHINA (79%); MUMBAI, MAHARASHTRA, INDIA (73%); NORTH CENTRAL CHINA (79%); INDIA (94%); CHINA (90%); IRAN, ISLAMIC REPUBLIC OF (73%); SWITZERLAND (69%); RUSSIAN FEDERATION (54%)\n\nLoad-Date: July 25, 2021\n\n\n
261 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); COACHES & TRAINERS (73%); VOLLEYBALL (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: KERALA, INDIA (90%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
262 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ARMIES (72%); SPORTS & RECREATION (72%); WEAPONS & ARMS (71%)\n\nCompany: MAHINDRA & MAHINDRA LTD (58%)\n\nTicker: MHID (LSE) (58%); M&M (NSE) (58%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (58%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (58%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (58%); MOTOR VEHICLES (90%); MOTORCYCLES (90%); MEDIA CONTENT (78%); ARMIES (72%)\n\nGeographic: NEW DELHI, INDIA (89%); TOKYO, JAPAN (88%)\n\nLoad-Date: August 7, 2021\n\n\n
263 \nSubject: ANIMATION (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VISUAL ARTISTS (90%); SIKHS & SIKHISM (79%); FILM (78%); INTERNET SOCIAL NETWORKING (78%); MOVIE REVIEWS (78%); WOMEN'S SPORTS (78%); STADIUMS & ARENAS (73%); WEIGHTLIFTING (68%); SPORTS & RECREATION (54%)\n\nIndustry: ANIMATION (92%); VISUAL ARTISTS (90%); FILM (78%); INTERNET SOCIAL NETWORKING (78%); MOVIE REVIEWS (78%)\n\nGeographic: ODISHA, INDIA (59%); INDIA (94%)\n\nLoad-Date: July 24, 2021\n\n\n
264 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); AIR FARES (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); BADMINTON (73%); SPORTS & RECREATION (71%); WEIGHTLIFTING (66%); EXECUTIVES (60%)\n\nIndustry: AIRLINES (89%); AIR FARES (78%)\n\nGeographic: NEW DELHI, INDIA (89%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
265 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); MONSOONS (79%); SPORTS AWARDS (78%); TOURNAMENTS (77%); TRANSPORTATION DEPARTMENTS (77%); HOME BASED EMPLOYMENT (69%); EMOTIONS (60%); DROUGHT (54%)\n\nIndustry: TRANSPORTATION DEPARTMENTS (77%)\n\nGeographic: TAIPEI, TAIWAN (79%); ASSAM, INDIA (94%); INDIA (92%)\n\nLoad-Date: August 1, 2021\n\n\n
266 \nSubject: WOMEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); 2016 RIO SUMMER OLYMPICS (77%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (91%); TELEVISION INDUSTRY (68%)\n\nGeographic: TOKYO, JAPAN (72%); RIO DE JANEIRO, BRAZIL (57%); INDIA (93%); UNITED KINGDOM (91%); ARGENTINA (79%); BRAZIL (78%); GERMANY (78%); JAPAN (57%)\n\nLoad-Date: August 5, 2021\n\n\n
267 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); WEAPONS & ARMS (89%); 2016 RIO SUMMER OLYMPICS (78%); COACHES & TRAINERS (77%); 2012 LONDON SUMMER OLYMPICS (73%); EMOTIONS (73%)\n\nGeographic: TOKYO, JAPAN (73%); LONDON, ENGLAND (51%); INDIA (90%); CROATIA (73%)\n\nLoad-Date: July 31, 2021\n\n\n
268 \nSubject: ARCHERY (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); ATHLETES (77%); SPORTS & RECREATION (72%)\n\nGeographic: TOKYO, JAPAN (88%); KAZAKHSTAN (94%); GUATEMALA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
269 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); SPORTING GOODS (89%); SPORTS & RECREATION (78%); SPORTS CAMPS & SCHOOLS (78%); NEGATIVE NEWS (75%); ENERGY SHORTAGES (53%)\n\nIndustry: SPORTING GOODS (89%); ENERGY & UTILITIES (67%); POWER FAILURES (67%); ENERGY SHORTAGES (53%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); TOKYO, JAPAN (73%); HARYANA, INDIA (74%); INDIA (90%)\n\nLoad-Date: July 28, 2021\n\n\n
270 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); WRESTLING (90%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (95%); COLOMBIA (70%); BULGARIA (55%); KAZAKHSTAN (55%)\n\nLoad-Date: August 4, 2021\n\n\n
271 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); INTERVIEWS (89%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); OLYMPIC COMMITTEES (73%); SOCIAL MEDIA (70%); EXECUTIVES (67%)\n\nCompany: DOMINO'S PIZZA INC (92%); HT MEDIA LTD (82%); JUBILANT FOODWORKS LTD (55%); JSW GROUP (51%)\n\nTicker: DPZ (NYSE) (92%); HTMEDIA (NSE) (82%); JUBLFOOD (NSE) (55%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (92%); SIC5812 EATING PLACES (92%); NAICS511110 NEWSPAPER PUBLISHERS (82%); SIC2711 NEWSPAPERS: PUBLISHING, OR PUBLISHING & PRINTING (82%); NAICS541810 ADVERTISING AGENCIES (51%); SIC7311 ADVERTISING AGENCIES (51%); FAST FOOD RESTAURANTS (91%); RESTAURANTS (90%); SPONSORSHIP (89%); MEDIA CONTENT (78%); PUBLISHING (78%); TELEVISION INDUSTRY (72%); SOCIAL MEDIA (70%); DAIRY PRODUCTS (61%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (89%); MANIPUR, INDIA (88%); INDIA (96%)\n\nLoad-Date: July 25, 2021\n\n\n
272 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); GOLF (90%); SUMMER OLYMPICS (90%); GOLF TOURNAMENTS (89%); PROFESSIONAL SPORTS (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); 2016 RIO SUMMER OLYMPICS (77%); ATHLETES (77%); SPORTS AWARDS (77%); RANKINGS (71%)\n\nPerson: LYDIA KO (79%)\n\nGeographic: TOKYO, JAPAN (89%); INDIA (90%); JAPAN (89%); NEW ZEALAND (73%)\n\nLoad-Date: August 7, 2021\n\n\n
273 \nSubject: ARCHERY (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); SPORTS & RECREATION (73%)\n\nGeographic: INDIA (94%); KAZAKHSTAN (93%); GUATEMALA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
274 \nSubject: 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); RANKINGS (89%); BADMINTON (78%); SPORTS AWARDS (78%); SPORTS GOVERNING BODIES (78%); TRAFFIC ACCIDENTS (78%); NEGATIVE PERSONAL NEWS (77%); NEGATIVE NEWS (74%); NEGATIVE MISC NEWS (70%); COVID CORONAVIRUS (65%); COVID-19 CORONAVIRUS (65%); ILLEGAL GAMBLING (65%); INFECTIOUS DISEASE (65%); SCANDALS (65%); ACCIDENTS & DISASTERS (62%)\n\nIndustry: TRAFFIC ACCIDENTS (78%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (78%); UNITED STATES (77%); TAIWAN (71%); JAPAN (58%); SPAIN (56%)\n\nLoad-Date: July 25, 2021\n\n\n
275 \nSubject: ASSOCIATIONS & ORGANIZATIONS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIREARMS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); ATHLETES (78%); SHOOTINGS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); TALKS & MEETINGS (72%)\n\nOrganization: NATIONAL RIFLE ASSOCIATION OF AMERICA (84%)\n\nGeographic: TOKYO, JAPAN (90%); ZAGREB, CROATIA (90%); NEW DELHI, INDIA (79%); INDIA (95%); CROATIA (94%); FRANCE (75%)\n\nLoad-Date: August 9, 2021\n\n\n
276 \nSubject: OLYMPICS (93%); 2012 LONDON SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%)\n\nGeographic: LONDON, ENGLAND (58%); DOMINICAN REPUBLIC (57%)\n\nLoad-Date: July 26, 2021\n\n\n
277 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); GOVERNMENT ADVISORS & MINISTERS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (89%); WOMEN'S SPORTS (78%); CABINET OFFICES (77%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); REGIONAL & LOCAL GOVERNMENTS (77%); TRENDS & EVENTS (75%); EDUCATION & TRAINING (74%)\n\nIndustry: CELEBRITIES (90%); MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (95%); INDIA (92%)\n\nLoad-Date: July 27, 2021\n\n\n
278 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); GOLF TOURNAMENTS (89%); PROFESSIONAL SPORTS (89%); TOURNAMENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); RANKINGS (72%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); UNITED STATES (87%); EUROPE (79%)\n\nLoad-Date: August 7, 2021\n\n\n
279 \nSubject: TABLE TENNIS (92%); NEGATIVE PERSONAL NEWS (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (90%); OLYMPICS (89%); TENNIS (89%); WOMEN'S SPORTS (89%); APPROVALS (75%)\n\nGeographic: INDIA (88%); AUSTRIA (52%)\n\nLoad-Date: July 27, 2021\n\n\n
280 \nSubject: OLYMPICS (90%); PRIME MINISTERS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); HEADS OF STATE & GOVERNMENT (78%); TRACK & FIELD (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (95%); JAPAN (73%)\n\nLoad-Date: August 8, 2021\n\n\n
281 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); RUNNING (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); FOLKLORE (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); ORTHOPEDICS (76%); INFECTIOUS DISEASE (74%); TEXTBOOKS (73%); POP & ROCK (71%); COVID CORONAVIRUS (69%); COVID-19 CORONAVIRUS (69%); PANDEMICS (69%); SURGERY & TRANSPLANTATION (50%)\n\nIndustry: ORTHOPEDICS (76%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
282 \nSubject: MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); REFEREES & UMPIRES (90%); SPORTS OFFICIATING (90%); SUMMER OLYMPICS (90%)\n\nCompany: PERFECTION AS (66%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%); BELGIUM (90%)\n\nLoad-Date: August 3, 2021\n\n\n
283 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WRESTLING (78%); 2012 LONDON SUMMER OLYMPICS (73%); OLYMPIC COMMITTEES (73%); GOVERNMENT ADVISORS & MINISTERS (72%); TOURNAMENTS (72%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (89%); BEIJING, CHINA (79%); LONDON, ENGLAND (52%); HARYANA, INDIA (91%); INDIA (96%); UNITED KINGDOM (79%); BELGIUM (66%)\n\nLoad-Date: August 7, 2021\n\n\n
284 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); CELEBRITIES (90%); KNITTING & CROCHETING (90%); SEWING & NEEDLECRAFTS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); SPORTS & RECREATION FACILITIES & VENUES (73%)\n\nIndustry: CELEBRITIES (90%); SOCIAL MEDIA (90%); VIRAL VIDEOS (90%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (74%)\n\nLoad-Date: August 2, 2021\n\n\n
285 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); TOURNAMENTS (78%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (89%); TELEVISION INDUSTRY (60%)\n\nGeographic: INDIA (93%); KAZAKHSTAN (77%); KYRGYZSTAN (77%); AZERBAIJAN (73%); IRAN, ISLAMIC REPUBLIC OF (54%)\n\nLoad-Date: August 8, 2021\n\n\n
286 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WRESTLING (89%); HEADS OF STATE & GOVERNMENT (78%); CRICKET (73%); CULTURE DEPARTMENTS (72%); PRIME MINISTERS (72%); TOURNAMENTS (71%)\n\nPerson: NARENDRA MODI (79%); RAM NATH KOVIND (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); KAZAKHSTAN (91%)\n\nLoad-Date: August 7, 2021\n\n\n
287 \nSubject: SPORTS AWARDS (92%); ATHLETES (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (79%); SPORTS & RECREATION EVENTS (79%); SUMMER OLYMPICS (79%); APPOINTMENTS (78%); SPORTS & RECREATION FACILITIES & VENUES (74%); SPORTS & RECREATION (73%); SOCIAL DISTANCING (66%); HEADS OF STATE & GOVERNMENT (56%); PRIME MINISTERS (55%)\n\nIndustry: AIRPORTS (71%); MOTORCOACHES & BUSES (64%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (79%); MANIPUR, INDIA (94%); INDIA (91%)\n\nLoad-Date: July 27, 2021\n\n\n
288 \nSubject: OLYMPICS (91%); WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); WOMEN (90%); BADMINTON (89%); MEN'S SPORTS (89%); WEAPONS & ARMS (89%); 2016 RIO SUMMER OLYMPICS (78%); SHOOTING SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); RANKINGS (76%); WEIGHTLIFTING (72%)\n\nGeographic: TAIPEI, TAIWAN (51%); INDIA (93%); NEW ZEALAND (90%); AUSTRALIA (79%); NETHERLANDS (73%)\n\nLoad-Date: July 24, 2021\n\n\n
289 \nSubject: OLYMPICS (92%); 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ATHLETES (77%); BADMINTON (77%); TOURNAMENTS (76%); RANKINGS (66%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TAIPEI, TAIWAN (79%); INDIA (92%)\n\nLoad-Date: August 1, 2021\n\n\n
290 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); STUDENTS & STUDENT LIFE (90%); SUMMER OLYMPICS (89%); ATHLETES (78%); COACHES & TRAINERS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); ECONOMICS (75%); PHYSICAL EDUCATION (75%); TOURNAMENTS (66%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: BIRMINGHAM, ENGLAND (52%); HARYANA, INDIA (79%); INDIA (91%); ENGLAND (67%)\n\nLoad-Date: August 6, 2021\n\n\n
291 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%)\n\nCompany: DOMINO'S PIZZA INC (92%)\n\nTicker: DPZ (NYSE) (92%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (92%); SIC5812 EATING PLACES (92%); FAST FOOD RESTAURANTS (90%); RESTAURANTS (72%); HOTELS & MOTELS (50%)\n\nGeographic: RAJASTHAN, INDIA (59%); INDIA (93%)\n\nLoad-Date: July 26, 2021\n\n\n
292 \nSubject: PRIME MINISTERS (91%); ATHLETES (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); HEADS OF STATE & GOVERNMENT (78%); SOCIAL MEDIA (77%); VIRAL VIDEOS (77%); ELECTIONS & POLITICS (72%)\n\nIndustry: SOCIAL MEDIA (77%); VIRAL VIDEOS (77%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%); GERMANY (79%); BELGIUM (54%)\n\nLoad-Date: August 5, 2021\n\n\n
293 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); GYMNASTICS (89%); TENNIS (89%); WOMEN'S SPORTS (79%); BADMINTON (78%); RANKINGS (64%)\n\nCompany: BEAM GLOBAL (62%)\n\nTicker: BEEM (NASDAQ) (62%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (62%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (62%)\n\nGeographic: TOKYO, JAPAN (88%); WEST BENGAL, INDIA (58%); INDIA (98%); AUSTRALIA (94%); NEW ZEALAND (90%); JAPAN (58%)\n\nLoad-Date: July 26, 2021\n\n\n
294 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); COINS & COINAGE (89%); SPORTS AWARDS (89%); TRACK & FIELD (89%); ATHLETES (78%); SOCIAL MEDIA (78%); GOVERNMENT ADVISORS & MINISTERS (64%); PRIME MINISTERS (64%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); COINS & COINAGE (89%); SOCIAL MEDIA (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (95%)\n\nLoad-Date: August 8, 2021\n\n\n
295 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (78%); EXECUTIVES (66%)\n\nCompany: DOMINO'S PIZZA INC (92%); JUBILANT FOODWORKS LTD (53%)\n\nTicker: DPZ (NYSE) (92%); JUBLFOOD (NSE) (53%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (92%); SIC5812 EATING PLACES (92%); FAST FOOD RESTAURANTS (90%); RESTAURANTS (90%); MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (74%); INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
296 \nSubject: MEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (77%); CRICKET (73%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (91%); TELEVISION INDUSTRY (67%)\n\nGeographic: TOKYO, JAPAN (72%); INDIA (94%); GERMANY (93%); BELGIUM (73%); JAPAN (57%)\n\nLoad-Date: August 4, 2021\n\n\n
297 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS AWARDS (77%); SPORTS & RECREATION EVENTS (72%); STADIUMS & ARENAS (72%)\n\nGeographic: INDIA (90%); CZECH REPUBLIC (71%); GERMANY (71%); PAKISTAN (59%)\n\nLoad-Date: August 8, 2021\n\n\n
298 \nSubject: OLYMPICS (91%); WOMEN'S SPORTS (91%); 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (94%); UNITED KINGDOM (92%)\n\nLoad-Date: August 6, 2021\n\n\n
299 \nSubject: MEN'S SPORTS (93%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); PRIME MINISTERS (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (94%); BELGIUM (90%); GERMANY (79%)\n\nLoad-Date: August 3, 2021\n\n\n
300 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (89%); CELEBRITIES (89%); RUNNING (89%); SPORTS & RECREATION EVENTS (89%); SPORTS & RECREATION (87%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS GOVERNING BODIES (78%); EDUCATION & TRAINING (75%); STUDENTS & STUDENT LIFE (72%); STUDENT ORGANIZATIONS (70%); EMOTIONS (69%); PHYSICAL EDUCATION (68%); COLLEGE & UNIVERSITY PROFESSORS (65%); TOURNAMENTS (63%); ARMIES (53%)\n\nIndustry: CELEBRITIES (89%); STREAMING MEDIA (73%); COLLEGE & UNIVERSITY PROFESSORS (65%); ARMIES (53%)\n\nGeographic: BEIJING, CHINA (79%); CHANDIGARH, INDIA (94%); HARYANA, INDIA (93%); NORTH CENTRAL CHINA (79%); INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
301 \nSubject: SOCIAL MEDIA (92%); 2020 TOKYO SUMMER OLYMPICS (90%); EXERCISE & FITNESS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); BRANDING (78%); SOCIAL MEDIA MARKETING (78%); SPORTING GOODS (78%); SPORTS BUSINESS (78%); OLYMPIC COMMITTEES (73%)\n\nCompany: FEDERAL BANK LTD (84%); BRITANNIA INDUSTRIES LTD (58%); FACEBOOK INC (57%)\n\nTicker: FEDERALBNK (NSE) (84%); FEDA (LSE) (84%); BRITANNIA (NSE) (58%); FB (NASDAQ) (57%)\n\nIndustry: NAICS522110 COMMERCIAL BANKING (84%); SIC6029 COMMERCIAL BANKS, NEC (84%); NAICS311812 COMMERCIAL BAKERIES (58%); SIC2051 BREAD & OTHER BAKERY PRODUCTS, EXCEPT COOKIES & CRACKERS (58%); NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (57%); SOCIAL MEDIA (92%); BAKED GOODS (78%); BRANDING (78%); MARKETING CAMPAIGNS (78%); MEDIA CONTENT (78%); SOCIAL MEDIA MARKETING (78%); SPORTING GOODS (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
302 \nSubject: OLYMPICS (91%); ATHLETES (90%); SPORTS & RECREATION (90%); TRENDS & EVENTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); MEN'S SPORTS (78%); RACEWALKING (78%); SPORTS AWARDS (78%); SPORTS GOVERNING BODIES (78%); CULTURE DEPARTMENTS (71%); COVID-19 CORONAVIRUS REGULATION & POLICY (65%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: AIRPORTS (90%); MEDIA CONTENT (73%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (90%); INDIA (94%); JAPAN (78%)\n\nLoad-Date: August 9, 2021\n\n\n
303 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); GOLF TOURNAMENTS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); STADIUMS & ARENAS (77%); TRENDS & EVENTS (76%); TOURNAMENTS (74%); SPORTS & RECREATION (68%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (91%); NEW DELHI, INDIA (74%); AUSTRALIA (79%)\n\nLoad-Date: August 9, 2021\n\n\n
304 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); TOURNAMENTS (78%)\n\nCompany: SONY CORP (93%)\n\nTicker: SNE (NYSE) (93%); 6758 (TSE) (93%)\n\nIndustry: NAICS512250 RECORD PRODUCTION & DISTRIBUTION (93%); NAICS339930 DOLL, TOY & GAME MANUFACTURING (93%); NAICS334310 AUDIO & VIDEO EQUIPMENT MANUFACTURING (93%); SIC3651 HOUSEHOLD AUDIO & VIDEO EQUIPMENT (93%); STREAMING MEDIA (71%)\n\nGeographic: TOKYO, JAPAN (72%); MUMBAI, MAHARASHTRA, INDIA (58%); TAIPEI, TAIWAN (57%); INDIA (93%); TAIWAN (57%)\n\nLoad-Date: July 31, 2021\n\n\n
305 \nSubject: WRESTLING (94%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (93%); KAZAKHSTAN (90%)\n\nLoad-Date: August 4, 2021\n\n\n
306 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); REFEREES & UMPIRES (89%); SPORTS AWARDS (89%); SPORTS OFFICIATING (89%); ATHLETES (78%); TOURNAMENTS (78%)\n\nGeographic: LOS ANGELES, CA, USA (58%); SYDNEY, AUSTRALIA (57%); INDIA (94%); AUSTRALIA (91%); UNITED KINGDOM (90%); BELGIUM (71%); PAKISTAN (58%)\n\nLoad-Date: August 2, 2021\n\n\n
307 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); EMOTIONS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (77%); PRIME MINISTERS (77%); SPORTS & RECREATION EVENTS (77%); HEADS OF STATE & GOVERNMENT (73%); VOLLEYBALL (72%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TAIPEI, TAIWAN (79%); HYDERABAD, ANDHRA PRADESH, INDIA (58%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
308 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ARCHERY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (89%); BADMINTON (78%); BOXING (78%); FIELD HOCKEY (78%); MEN'S SPORTS (78%); WOMEN (78%); SPORTS AWARDS (77%); OLYMPIC COMMITTEES (72%)\n\nGeographic: NETHERLANDS (88%); RUSSIAN FEDERATION (77%); UNITED KINGDOM (57%); UKRAINE (53%); HONG KONG (51%)\n\nLoad-Date: July 28, 2021\n\n\n
309 \nSubject: WOMEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); STADIUMS & ARENAS (78%); SPORTS & RECREATION EVENTS (77%); 2016 RIO SUMMER OLYMPICS (76%); SPORTS & RECREATION (72%)\n\nIndustry: STREAMING MEDIA (89%); TELEVISION INDUSTRY (64%)\n\nGeographic: TOKYO, JAPAN (72%); RIO DE JANEIRO, BRAZIL (55%); ARGENTINA (95%); INDIA (94%); BRAZIL (79%); BELGIUM (73%); JAPAN (57%)\n\nLoad-Date: August 3, 2021\n\n\n
310 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); PROFILES & BIOGRAPHIES (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); BIOGRAPHICAL LITERATURE (77%); CHILDREN (76%); OLYMPIC COMMITTEES (73%); TWINS & MULTIPLE BIRTHS (73%); INFANTS & TODDLERS (66%)\n\nGeographic: INDIA (91%); GERMANY (77%)\n\nLoad-Date: July 23, 2021\n\n\n
311 \nSubject: OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); AIR FARES (77%); EXECUTIVES (71%)\n\nCompany: INTERGLOBE AVIATION LTD (91%)\n\nTicker: INDIGO (NSE) (91%)\n\nIndustry: NAICS481111 SCHEDULED PASSENGER AIR TRANSPORTATION (91%); SIC4512 AIR TRANSPORTATION, SCHEDULED (91%); AIRLINES (90%); MEDIA CONTENT (78%); AIR FARES (77%)\n\nGeographic: NEW DELHI, INDIA (74%); HARYANA, INDIA (73%); INDIA (91%)\n\nLoad-Date: August 7, 2021\n\n\n
312 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); DIWALI (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); HOLIDAYS & OBSERVANCES (89%); COVID CORONAVIRUS (78%); TRENDS & EVENTS (78%); EMOTIONS (77%); SPORTS & RECREATION EVENTS (77%); HEADS OF STATE & GOVERNMENT (73%); CRICKET (72%); PRIME MINISTERS (50%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); BANGALORE, KARNATAKA, INDIA (58%); INDIA (97%); GERMANY (90%); ENGLAND (79%); MEXICO (79%)\n\nLoad-Date: August 6, 2021\n\n\n
313 \nSubject: SPORTS AWARDS (91%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); POSITIVE PSYCHOLOGY (89%); PSYCHOLOGY (89%); SPORTS & RECREATION EVENTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); INTERVIEWS (77%)\n\nIndustry: POSITIVE PSYCHOLOGY (89%); PSYCHOLOGY (89%)\n\nGeographic: BARCELONA, SPAIN (58%); CATALONIA, SPAIN (79%); INDIA (74%); UNITED KINGDOM (56%)\n\nLoad-Date: August 7, 2021\n\n\n
314 \nSubject: SHOOTING SPORTS (94%); FIREARMS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); WEAPONS & ARMS (78%)\n\nGeographic: TOKYO, JAPAN (72%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
315 \nSubject: ARMIES (94%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); WEAPONS & ARMS (90%); ARMED FORCES (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); TRACK & FIELD (89%); CELEBRITIES (78%); DEFENSE DEPARTMENTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); TOURNAMENTS (68%)\n\nIndustry: ARMIES (94%); ARMED FORCES (89%); CELEBRITIES (78%); DEFENSE DEPARTMENTS (78%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
316 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ANTIQUES & COLLECTIBLES (90%); ART COLLECTING (90%); ATHLETES (90%); COLLECTORS & COLLECTING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ARTISTS & PERFORMERS (89%); COINS & COINAGE (89%); SPORTS & RECREATION (88%); SPORTS FANS (78%); WEIGHTLIFTING (77%); CARTOONS & COMICS (75%); CRYPTOCURRENCY (73%); DIGITAL CURRENCY (73%); VISUAL ARTISTS (73%); WOMEN (73%)\n\nIndustry: NON-FUNGIBLE TOKENS (94%); ANTIQUES & COLLECTIBLES (90%); CRYPTO ASSETS (90%); ARTISTS & PERFORMERS (89%); COINS & COINAGE (89%); DIGITAL ASSETS (88%); MEDIA CONTENT (78%); CARTOONS & COMICS (75%); CRYPTOCURRENCY (73%); DIGITAL CURRENCY (73%); VISUAL ARTISTS (73%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (72%); INDIA (92%); JAPAN (77%)\n\nLoad-Date: July 29, 2021\n\n\n
317 \nSubject: OLYMPICS (91%); GOVERNMENT ADVISORS & MINISTERS (90%); SPORTS AWARDS (90%); TRANSPORTATION DEPARTMENTS (90%); CABINET OFFICES (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%); WOMEN'S SPORTS (77%)\n\nIndustry: EDUCATIONAL SERVICES (90%); TRANSPORTATION DEPARTMENTS (90%)\n\nGeographic: PUNJAB, INDIA (92%); INDIA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
318 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WINTER OLYMPICS (90%); SPORTS AWARDS (78%); CULTURE DEPARTMENTS (76%); GOVERNMENT ADVISORS & MINISTERS (76%); MEN (73%); SOCIAL MEDIA (70%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (70%)\n\nGeographic: PUNJAB, INDIA (90%); INDIA (91%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
319 \nSubject: WOMEN'S SPORTS (93%); ATHLETES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (89%); COACHES & TRAINERS (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); 2016 RIO SUMMER OLYMPICS (77%); TOURNAMENTS (72%); WEATHER (71%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (95%); UNITED KINGDOM (90%)\n\nLoad-Date: August 6, 2021\n\n\n
320 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2016 RIO SUMMER OLYMPICS (90%); BADMINTON (90%); WOMEN'S SPORTS (90%); EMOTIONS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%)\n\nLoad-Date: August 2, 2021\n\n\n
321 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); SPORTS & RECREATION EVENTS (90%); TRACK & FIELD (90%); AIR FARES (78%); 2020 TOKYO SUMMER OLYMPICS (77%); EXECUTIVES (71%)\n\nIndustry: AIRLINES (90%); AIR FARES (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
322 \nSubject: WOMEN'S SPORTS (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); RANKINGS (89%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); TOURNAMENTS (77%); COVID CORONAVIRUS (68%); COVID-19 CORONAVIRUS (63%); INFECTIOUS DISEASE (63%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (95%); AUSTRALIA (94%); GERMANY (78%)\n\nLoad-Date: August 3, 2021\n\n\n
323 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%)\n\nIndustry: MEDIA CONTENT (78%); SPONSORSHIP (78%); COMPUTER SOFTWARE (66%)\n\nGeographic: MADHYA PRADESH, INDIA (79%); INDIA (93%)\n\nLoad-Date: August 5, 2021\n\n\n
324 \nSubject: MEN'S SPORTS (94%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); PRIME MINISTERS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (93%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (88%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
325 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: AUSTRALIA (95%); INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
326 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: AUSTRALIA (95%); INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
327 \nSubject: OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (89%); SPORTS & RECREATION (88%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); CROWD CONTROL (77%); PUBLIC OFFICIALS (70%); WEIGHTLIFTING (70%); SOCIAL DISTANCING (68%); POLICE FORCES (56%)\n\nGeographic: TOKYO, JAPAN (89%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (92%); JAPAN (79%)\n\nLoad-Date: August 9, 2021\n\n\n
328 \nSubject: WOMEN'S SPORTS (93%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); FILM DIRECTORS (87%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); ACTORS & ACTRESSES (74%); FILM (71%)\n\nIndustry: FILM DIRECTORS (87%); MEDIA CONTENT (78%); ACTORS & ACTRESSES (74%); FILM (71%)\n\nPerson: SHAH RUKH KHAN (93%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (58%)\n\nLoad-Date: August 6, 2021\n\n\n
329 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); BOXING (91%); MARTIAL ARTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); MIXED MARTIAL ARTS (78%); SPORTS FANS (78%); SPORTS INSTRUCTION (78%); WEIGHTLIFTING (78%); SPORTS & RECREATION FACILITIES & VENUES (73%); PRESS CONFERENCES (50%)\n\nGeographic: ASSAM, INDIA (79%); MANIPUR, INDIA (79%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
330 \nSubject: OLYMPICS (91%); ATHLETES (90%); MEN'S SPORTS (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); HEADS OF STATE & GOVERNMENT (79%); COACHES & TRAINERS (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (55%); INDIA (92%); BELGIUM (54%)\n\nLoad-Date: August 6, 2021\n\n\n
331 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); 2016 RIO SUMMER OLYMPICS (78%); NEGATIVE PERSONAL NEWS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); TAIPEI, TAIWAN (73%); INDIA (92%); CHINA (73%); TAIWAN (58%)\n\nLoad-Date: August 1, 2021\n\n\n
332 \nSubject: WRESTLING (92%); ACTORS & ACTRESSES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); CELEBRITIES (78%); PHOTO & VIDEO SHARING (76%); SOCIAL MEDIA (71%); WEIGHTLIFTING (71%); EXERCISE & FITNESS (66%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); ACTORS & ACTRESSES (90%); CELEBRITIES (78%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (76%); SOCIAL MEDIA (71%)\n\nGeographic: INDIA (90%); BELARUS (78%)\n\nLoad-Date: July 25, 2021\n\n\n
333 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); ASSAM, INDIA (92%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
334 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); BADMINTON (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); 2016 RIO SUMMER OLYMPICS (77%); RANKINGS (76%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TAIPEI, TAIWAN (88%); NEW DELHI, INDIA (74%); TOKYO, JAPAN (58%); THAILAND (54%)\n\nLoad-Date: July 31, 2021\n\n\n
335 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); WEAPONS & ARMS (89%); WEIGHTLIFTING (89%); 2016 RIO SUMMER OLYMPICS (78%); STADIUMS & ARENAS (77%); EXERCISE & FITNESS (69%); ARMIES (55%)\n\nIndustry: ARMIES (55%)\n\nGeographic: NEW DELHI, INDIA (90%); HARYANA, INDIA (79%); MANIPUR, INDIA (79%); INDIA (96%)\n\nLoad-Date: August 8, 2021\n\n\n
336 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); CYCLING (91%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); PROFESSIONAL SPORTS (78%); ATHLETES (72%); CERTIFICATES, DEGREES & DIPLOMAS (70%)\n\nCompany: BIOCON LTD (57%)\n\nTicker: BIOCON (NSE) (57%)\n\nIndustry: NAICS325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING (57%); NAICS325412 PHARMACEUTICAL PREPARATION MANUFACTURING (57%); MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); VIENNA, AUSTRIA (58%); NETHERLANDS (57%)\n\nLoad-Date: August 2, 2021\n\n\n
337 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%)\n\nGeographic: ASSAM, INDIA (92%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
338 \nSubject: SPORTS AWARDS (92%); ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (75%); WEAPONS & ARMS (73%); PHYSICAL FITNESS (68%)\n\nGeographic: BEIJING, CHINA (92%); NORTH CENTRAL CHINA (91%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
339 \nSubject: WEIGHTLIFTING (92%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); INTERNET SOCIAL NETWORKING (69%); CULTURE DEPARTMENTS (68%)\n\nIndustry: SPONSORSHIP (73%); INTERNET SOCIAL NETWORKING (69%); MARKETING & ADVERTISING AGENCIES (69%)\n\nGeographic: NEW DELHI, INDIA (79%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); INDONESIA (75%)\n\nLoad-Date: July 24, 2021\n\n\n
340 \nSubject: MEN'S SPORTS (96%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); TOURNAMENTS (90%); OLYMPICS (89%); STADIUMS & ARENAS (78%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (89%); TELEVISION INDUSTRY (64%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); AUSTRALIA (90%); UNITED KINGDOM (90%); NEW ZEALAND (79%); JAPAN (73%); SPAIN (56%)\n\nLoad-Date: August 2, 2021\n\n\n
341 \nSubject: WEIGHTLIFTING (95%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (89%); CHILDREN (86%); ADOLESCENTS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); ASSOCIATIONS & ORGANIZATIONS (73%); TOURNAMENTS (71%)\n\nGeographic: MANIPUR, INDIA (93%); INDIA (90%)\n\nLoad-Date: July 25, 2021\n\n\n
342 \nSubject: WOMEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (89%); CHILDREN (88%); MUSIC (87%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%); WOMEN (78%); ARTISTS & PERFORMERS (71%)\n\nIndustry: ARTISTS & PERFORMERS (71%)\n\nGeographic: JHARKHAND, INDIA (93%); INDIA (97%); NETHERLANDS (79%)\n\nLoad-Date: July 26, 2021\n\n\n
343 \nSubject: MEN'S SPORTS (91%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SPORTS SPONSORSHIP (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); GOVERNMENT ADVISORS & MINISTERS (89%); WINTER OLYMPICS (78%); CULTURE DEPARTMENTS (72%)\n\nIndustry: SPONSORSHIP (90%); SPORTS SPONSORSHIP (90%)\n\nGeographic: ODISHA, INDIA (93%); INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
344 \nSubject: OLYMPICS (92%); WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); WOMEN (90%); ATHLETES (78%); STADIUMS & ARENAS (78%); 2016 RIO SUMMER OLYMPICS (77%)\n\nGeographic: RIO DE JANEIRO, BRAZIL (56%); ARGENTINA (91%); UNITED KINGDOM (90%); BRAZIL (79%)\n\nLoad-Date: August 6, 2021\n\n\n
345 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); GOVERNMENT ADVISORS & MINISTERS (78%); PRIME MINISTERS (78%); HEADS OF STATE & GOVERNMENT (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (58%); HARYANA, INDIA (92%); PUNJAB, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
346 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); CRICKET (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); WINTER OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (96%); GERMANY (91%); MEXICO (56%)\n\nLoad-Date: August 5, 2021\n\n\n
347 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (77%)\n\nIndustry: STREAMING MEDIA (89%); TELEVISION INDUSTRY (61%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: August 2, 2021\n\n\n
348 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); OLYMPICS (91%); WOMEN'S SPORTS (91%); SUMMER OLYMPICS (90%); SOCIAL MEDIA (78%); SPORTS & RECREATION EVENTS (78%); VIRAL VIDEOS (78%); INFECTIOUS DISEASE (76%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (71%)\n\nIndustry: TELEVISION INDUSTRY (90%); SOCIAL MEDIA (78%); VIRAL VIDEOS (78%)\n\nGeographic: ARGENTINA (94%); SOUTH AMERICA (58%)\n\nLoad-Date: July 29, 2021\n\n\n
349 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); OLYMPICS (89%); ATHLETES (78%); POOL & BILLIARDS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (98%); SOUTH AFRICA (92%); IRELAND (87%); UNITED KINGDOM (55%)\n\nLoad-Date: July 31, 2021\n\n\n
350 \nSubject: JUDGES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (79%); SPORTS AWARDS (79%); ATHLETES (78%); BOXING (78%); WOMEN'S SPORTS (78%)\n\nGeographic: CHINA (79%)\n\nLoad-Date: July 29, 2021\n\n\n
351 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); TOURNAMENTS (90%); SPORTS & RECREATION EVENTS (78%)\n\nCompany: PERFECTION AS (61%)\n\nGeographic: NEW DELHI, INDIA (74%); BELGIUM (92%); GERMANY (79%)\n\nLoad-Date: August 3, 2021\n\n\n
352 \nSubject: MEN'S SPORTS (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (79%); INDIA (96%); UNITED KINGDOM (91%); GERMANY (79%); BELGIUM (70%); PAKISTAN (58%)\n\nLoad-Date: August 1, 2021\n\n\n
353 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); CYCLING (91%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); PROFESSIONAL SPORTS (78%); ATHLETES (72%); CERTIFICATES, DEGREES & DIPLOMAS (70%)\n\nCompany: BIOCON LTD (57%)\n\nTicker: BIOCON (NSE) (57%)\n\nIndustry: NAICS325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING (57%); NAICS325412 PHARMACEUTICAL PREPARATION MANUFACTURING (57%); MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); VIENNA, AUSTRIA (58%); NETHERLANDS (57%)\n\nLoad-Date: August 2, 2021\n\n\n
354 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS & RECREATION (90%); ATHLETES (89%); PARALYMPICS (78%); PUBLIC POLICY (78%); TRENDS & EVENTS (78%); SPORTS INSTRUCTION (73%)\n\nGeographic: TOKYO, JAPAN (59%); CHANDIGARH, INDIA (92%); HARYANA, INDIA (92%); ODISHA, INDIA (92%); UTTAR PRADESH, INDIA (92%); KARNATAKA, INDIA (79%); CHHATTISGARH, INDIA (73%); INDIA (97%); AUSTRALIA (92%); BRAZIL (92%); CANADA (92%); JAPAN (92%); NETHERLANDS (92%); UNITED KINGDOM (92%); UNITED STATES (92%); GERMANY (88%); INDONESIA (79%); KAZAKHSTAN (79%); NORWAY (79%); SINGAPORE (79%); FRANCE (72%); THAILAND (56%)\n\nLoad-Date: July 23, 2021\n\n\n
355 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); INTERNET SOCIAL NETWORKING (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); SOCIAL MEDIA (77%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); MEDIA CONTENT (78%); SOCIAL MEDIA (77%)\n\nGeographic: TOKYO, JAPAN (73%); MANIPUR, INDIA (90%); INDIA (91%)\n\nLoad-Date: July 24, 2021\n\n\n
356 \nSubject: FAMILY (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (89%); NEGATIVE NEWS (88%); AMATEUR SPORTS (78%); PROFESSIONAL SPORTS (78%); TRACK & FIELD (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (77%); DRUGS IN SPORTS (77%); SPORTS AWARDS (77%); WOMEN (74%); BASEBALL (71%); WEIGHTLIFTING (71%); EMOTIONS (69%); ALTERNATIVE DISPUTE RESOLUTION (53%)\n\nGeographic: NEW ZEALAND (79%)\n\nLoad-Date: July 24, 2021\n\n\n
357 \nSubject: OLYMPICS (90%); SHOOTING SPORTS (90%); GUNSHOT WOUNDS (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%)\n\nPerson: USAIN BOLT (73%)\n\nGeographic: TOKYO, JAPAN (52%); INDIA (92%); KOREA, REPUBLIC OF (90%)\n\nLoad-Date: July 28, 2021\n\n\n
358 \nSubject: FAMILY (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (89%); NEGATIVE NEWS (88%); AMATEUR SPORTS (78%); PROFESSIONAL SPORTS (78%); TRACK & FIELD (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (77%); DRUGS IN SPORTS (77%); SPORTS AWARDS (77%); WOMEN (74%); BASEBALL (71%); WEIGHTLIFTING (71%); EMOTIONS (69%); ALTERNATIVE DISPUTE RESOLUTION (53%)\n\nGeographic: NEW ZEALAND (79%)\n\nLoad-Date: July 24, 2021\n\n\n
359 \nSubject: FAMILY (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (89%); NEGATIVE NEWS (88%); AMATEUR SPORTS (78%); PROFESSIONAL SPORTS (78%); TRACK & FIELD (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (77%); DRUGS IN SPORTS (77%); SPORTS AWARDS (77%); WOMEN (74%); BASEBALL (71%); WEIGHTLIFTING (71%); EMOTIONS (69%); ALTERNATIVE DISPUTE RESOLUTION (67%)\n\nGeographic: NEW ZEALAND (79%)\n\nLoad-Date: July 24, 2021\n\n\n
360 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); EXECUTIVES (90%); EXERCISE & FITNESS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); WOMEN'S SPORTS (90%); BRANDING (89%); COMPANY STRATEGY (89%); SPORTS & RECREATION (89%); SPORTS BUSINESS (89%); CONSUMERS (78%); SPORTS AGENTS & PROMOTERS (78%); SPORTS MARKETING (78%); TRACK & FIELD (78%); MANAGERS & SUPERVISORS (76%); EDUCATION SYSTEMS & INSTITUTIONS (75%); BADMINTON (73%); TABLE TENNIS (73%); TRENDS (73%); TRENDS & EVENTS (69%)\n\nCompany: DOMINO'S PIZZA INC (73%); JUBILANT FOODWORKS LTD (57%)\n\nTicker: DPZ (NYSE) (73%); JUBLFOOD (NSE) (57%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (73%); SIC5812 EATING PLACES (73%); BRANDING (89%); FAST FOOD RESTAURANTS (78%); FOOD & BEVERAGE (78%); SPORTS AGENTS & PROMOTERS (78%); SPORTS MARKETING (78%); MARKETING & ADVERTISING SERVICES (77%); EDUCATION SYSTEMS & INSTITUTIONS (75%); BEVERAGE PRODUCTS (73%); FOOD INDUSTRY (73%); FOOD PRODUCTS (73%); PRODUCT ENDORSEMENTS (69%); SOFT DRINKS (53%)\n\nGeographic: NEW DELHI, INDIA (74%); KARNATAKA, INDIA (58%); MANIPUR, INDIA (58%); INDIA (91%)\n\nLoad-Date: July 29, 2021\n\n\n
361 \nSubject: FAMILY (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (89%); NEGATIVE NEWS (88%); AMATEUR SPORTS (78%); PROFESSIONAL SPORTS (78%); TRACK & FIELD (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (77%); DRUGS IN SPORTS (77%); SPORTS AWARDS (77%); WOMEN (74%); BASEBALL (71%); WEIGHTLIFTING (71%); EMOTIONS (69%); ALTERNATIVE DISPUTE RESOLUTION (53%)\n\nGeographic: NEW ZEALAND (79%)\n\nLoad-Date: July 24, 2021\n\n\n
362 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (89%); SPORTS AWARDS (89%); BASKETBALL (76%); CYCLING (72%); SURFING (72%); VOLLEYBALL (72%); EXERCISE & FITNESS (70%); WATER SPORTS (64%); WEIGHTLIFTING (50%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%)\n\nGeographic: TOKYO, JAPAN (91%); BEIJING, CHINA (73%); LONDON, ENGLAND (67%); NORTH CENTRAL CHINA (78%); CHINA (93%); UNITED STATES (93%); BURKINA FASO (79%); TURKMENISTAN (78%); UNITED KINGDOM (58%); JORDAN (55%); KOSOVO (55%); PHILIPPINES (54%)\n\nLoad-Date: August 9, 2021\n\n\n
363 \nSubject: MEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); CRICKET (78%); STADIUMS & ARENAS (78%)\n\nGeographic: INDIA (96%); GERMANY (95%); BELGIUM (58%)\n\nLoad-Date: August 5, 2021\n\n\n
364 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TENNIS (90%); SPORTS AWARDS (89%); TENNIS TOURNAMENTS (89%); TOURNAMENTS (77%); MENTAL HEALTH (75%); TRENDS & EVENTS (72%)\n\nIndustry: CELEBRITIES (90%)\n\nPerson: NAOMI OSAKA (92%); NOVAK DJOKOVIC (88%)\n\nGeographic: TOKYO, JAPAN (88%); GERMANY (57%)\n\nLoad-Date: July 26, 2021\n\n\n
365 \nSubject: OLYMPICS (93%); SPORTS AWARDS (91%); TRACK & FIELD (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (78%); RUNNING (78%); WEAPONS & ARMS (75%); ANCIENT HISTORY (73%); CLASSICS (73%); ARMIES (50%)\n\nIndustry: ARMIES (50%)\n\nGeographic: TOKYO, JAPAN (73%); HARYANA, INDIA (58%); INDIA (94%); POLAND (50%)\n\nLoad-Date: August 8, 2021\n\n\n
366 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); BADMINTON (89%); SHOOTING SPORTS (89%); TENNIS (89%); BOXING (78%); FENCING (78%); TABLE TENNIS (78%); SWIMMING (75%); ARCHERY (73%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); INDIA (93%); GERMANY (92%)\n\nLoad-Date: July 25, 2021\n\n\n
367 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (89%); COACHES & TRAINERS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); WOMEN (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); UNITED KINGDOM (72%)\n\nLoad-Date: August 3, 2021\n\n\n
368 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); WINTER OLYMPICS (90%); CRICKET (78%); STADIUMS & ARENAS (78%); RANKINGS (73%); PRIME MINISTERS (72%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (90%); BUENOS AIRES, ARGENTINA (58%); ARGENTINA (97%); INDIA (95%); AUSTRALIA (79%); NEW ZEALAND (79%); PAKISTAN (73%); SPAIN (73%)\n\nLoad-Date: July 29, 2021\n\n\n
369 \nSubject: WOMEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: ACTORS & ACTRESSES (90%); MEDIA CONTENT (78%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: ARGENTINA (92%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
370 \nSubject: FIELD HOCKEY (90%); OLYMPICS (89%); WOMEN'S SPORTS (78%); HIGH SCHOOLS (72%); PRIMARY SCHOOLS (70%); SINGLE SEX EDUCATION (65%)\n\nIndustry: HIGH SCHOOLS (72%); PRIMARY SCHOOLS (70%)\n\nGeographic: JHARKHAND, INDIA (92%); INDIA (96%); UNITED KINGDOM (88%)\n\nLoad-Date: August 6, 2021\n\n\n
371 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); PROFESSIONAL SPORTS (89%); SPORTS & RECREATION EVENTS (89%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); WOMEN (78%); TOURNAMENTS (76%); EMOTIONS (73%)\n\nGeographic: TOKYO, JAPAN (73%); BANGALORE, KARNATAKA, INDIA (59%); INDIA (96%); UNITED KINGDOM (90%); NETHERLANDS (79%)\n\nLoad-Date: August 6, 2021\n\n\n
372 \nSubject: WEIGHTLIFTING (92%); EXERCISE & FITNESS (91%); OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (89%); ATHLETES (89%); 2016 RIO SUMMER OLYMPICS (78%); CELEBRITIES (78%); SPORTS & RECREATION EVENTS (77%); EMOJIS & EMOTICONS (72%)\n\nIndustry: ACTORS & ACTRESSES (89%); CELEBRITIES (78%); MEDIA CONTENT (78%); EMOJIS & EMOTICONS (72%)\n\nPerson: AKSHAY KUMAR (79%); AMITABH BACHCHAN (79%)\n\nGeographic: INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
373 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTING GOODS (89%); FIELD HOCKEY (79%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); CHILDREN (77%); SPORTS FANS (73%)\n\nIndustry: CONSUMER PRODUCTS (89%); SPORTING GOODS (89%); MEDIA CONTENT (78%); REALITY TELEVISION (73%)\n\nGeographic: UNITED STATES (92%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
374 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); NEGATIVE PERSONAL NEWS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BOXING (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); COLOMBIA (92%); INDIA (91%)\n\nLoad-Date: July 31, 2021\n\n\n
375 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); PHOTO & VIDEO SHARING (78%); ATHLETES (77%); TRENDS (77%); SKATEBOARDING (73%); BOARDSPORTS (70%); EXTREME SPORTS (70%)\n\nCompany: FACEBOOK INC (58%)\n\nTicker: FB (NASDAQ) (58%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (58%); SOCIAL MEDIA (90%); PHOTO & VIDEO SHARING (78%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: INDIA (90%); BRAZIL (88%); UNITED STATES (73%)\n\nLoad-Date: August 9, 2021\n\n\n
376 \nSubject: WRESTLING (94%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); CELEBRITIES (78%); WEIGHTLIFTING (72%); ACTORS & ACTRESSES (71%); DRAMA FILMS (65%); FILM (65%)\n\nIndustry: CELEBRITIES (78%); ACTORS & ACTRESSES (71%); DRAMA FILMS (65%); FILM (65%)\n\nGeographic: BUDAPEST, HUNGARY (78%); TOKYO, JAPAN (73%); INDIA (92%); HUNGARY (88%); BELARUS (73%)\n\nLoad-Date: July 25, 2021\n\n\n
377 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); WEAPONS & ARMS (90%); SPORTS AWARDS (89%); SUMMER OLYMPICS (77%); SHOOTINGS (73%)\n\nGeographic: INDIA (96%); GERMANY (92%); CHINA (90%); FRANCE (71%); IRAN, ISLAMIC REPUBLIC OF (71%); SERBIA (71%)\n\nLoad-Date: July 26, 2021\n\n\n
378 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); CONTUSIONS (78%); FACIAL INJURIES (78%); 2016 RIO SUMMER OLYMPICS (77%); ATHLETES (77%); MEN'S SPORTS (77%); SPORTS AWARDS (77%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
379 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (89%); ATHLETES (89%); TOURNAMENTS (88%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (95%); AUSTRALIA (92%); GERMANY (92%); ARGENTINA (91%); UNITED KINGDOM (91%); JAPAN (90%); NEW ZEALAND (90%); NETHERLANDS (88%); BELGIUM (79%); SOUTH AMERICA (55%)\n\nLoad-Date: July 29, 2021\n\n\n
380 \nSubject: WOMEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (78%); SUMMER OLYMPICS (77%)\n\nGeographic: UNITED KINGDOM (90%); INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
381 \nSubject: OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); SUMMER OLYMPICS (89%); WOUNDS & INJURIES (89%); FACIAL INJURIES (75%); INFECTIOUS DISEASE (72%); HEAD INJURIES (70%); SPORTS & RECREATION (67%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
382 \nSubject: WRESTLING (92%); OLYMPICS (90%); SPORTS AWARDS (89%); MEN'S SPORTS (78%); SUMMER OLYMPICS (78%)\n\nGeographic: ARGENTINA (91%); INDIA (90%)\n\nLoad-Date: August 5, 2021\n\n\n
383 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); MARTIAL ARTS (73%); SPORTS & RECREATION (73%)\n\nIndustry: STREAMING MEDIA (89%); TELEVISION INDUSTRY (65%)\n\nGeographic: TOKYO, JAPAN (88%); ASSAM, INDIA (58%); INDIA (92%); JAPAN (57%)\n\nLoad-Date: August 4, 2021\n\n\n
384 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%)\n\nGeographic: INDIA (78%); INDONESIA (56%)\n\nLoad-Date: July 24, 2021\n\n\n
385 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (89%); TOURNAMENTS (89%); 2012 LONDON SUMMER OLYMPICS (78%)\n\nGeographic: LONDON, ENGLAND (58%); INDIA (95%); KAZAKHSTAN (72%); AZERBAIJAN (57%); IRAN, ISLAMIC REPUBLIC OF (51%); KYRGYZSTAN (51%)\n\nLoad-Date: August 8, 2021\n\n\n
386 \nSubject: SPORTS AWARDS (92%); OLYMPICS (91%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); ATHLETES (78%); CELEBRITIES (78%); JOURNALISM (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); STRINGED INSTRUMENTS (73%); TENNIS (73%); SPORTS & RECREATION (71%); CRICKET (70%); WRITERS (64%)\n\nIndustry: VIRAL VIDEOS (90%); CELEBRITIES (78%); MEDIA CONTENT (78%); STRINGED INSTRUMENTS (73%); WRITERS (64%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%); CZECH REPUBLIC (58%); ENGLAND (57%)\n\nLoad-Date: August 8, 2021\n\n\n
387 \nSubject: PRIME MINISTERS (92%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); MEN'S SPORTS (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); WRESTLING (89%); BADMINTON (78%); BOXING (78%); SPORTS & RECREATION (76%); WEIGHTLIFTING (71%)\n\nPerson: NARENDRA MODI (94%)\n\nGeographic: NEW DELHI, INDIA (92%); TOKYO, JAPAN (90%); JAPAN (92%)\n\nLoad-Date: August 8, 2021\n\n\n
388 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EXERCISE & FITNESS (89%); FAMILY (89%); PHYSICAL FITNESS (77%); SPORTS & RECREATION EVENTS (77%); TRENDS & EVENTS (77%); WEDDINGS & ENGAGEMENTS (74%); PERCUSSION INSTRUMENTS (68%); DIET, NUTRITION & FITNESS (60%)\n\nIndustry: PERCUSSION INSTRUMENTS (68%)\n\nGeographic: TOKYO, JAPAN (58%); HARYANA, INDIA (79%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
389 \nSubject: SOCIAL MEDIA (91%); SPORTS AWARDS (91%); OLYMPICS (90%); SUMMER OLYMPICS (90%); CELEBRITIES (78%); 2020 TOKYO SUMMER OLYMPICS (77%)\n\nIndustry: SOCIAL MEDIA (91%); CELEBRITIES (78%); MEDIA CONTENT (78%); DAIRY PRODUCTS (72%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
390 \nSubject: TERRITORIAL & NATIONAL BORDERS (91%); CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); LETTERS & COMMENTS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); OLYMPICS (89%); POLICE FORCES (89%); SPORTS AWARDS (89%); NEGATIVE MISC NEWS (78%); NEGATIVE NEWS (78%); NEGATIVE POLITICAL NEWS (78%); WAR & CONFLICT (78%); INVESTIGATIONS (77%); NEGATIVE PERSONAL NEWS (77%); 2020 TOKYO SUMMER OLYMPICS (76%); GOVERNMENT ADVISORS & MINISTERS (76%); PUBLIC POLICY (76%); REGIONAL & LOCAL GOVERNMENTS (76%); SUMMER OLYMPICS (76%); WOUNDS & INJURIES (72%); REBELLIONS & INSURGENCIES (70%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (90%); KOLKATA, WEST BENGAL, INDIA (79%); ASSAM, INDIA (94%); MIZORAM, INDIA (94%); INDIA (93%); ITALY (79%); PAKISTAN (79%); QATAR (79%)\n\nLoad-Date: August 5, 2021\n\n\n
391 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); SINGERS & MUSICIANS (91%); INTERNET TROLLING (90%); MUSIC (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%); STATE & NATIONAL SYMBOLS (89%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); ARTISTS & PERFORMERS (77%); FILM (77%); ATHLETES (73%)\n\nIndustry: SINGERS & MUSICIANS (91%); INTERNET TROLLING (90%); SOCIAL MEDIA (90%); ARTISTS & PERFORMERS (77%); FILM (77%); MUSIC INDUSTRY (77%)\n\nGeographic: ISRAEL (94%); AUSTRALIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
392 \nSubject: NEGATIVE NEWS (90%); OLYMPICS (90%); RACISM & XENOPHOBIA (90%); WEIGHTLIFTING (90%); SPORTS & RECREATION EVENTS (89%); NEGATIVE PERSONAL NEWS (78%); SPORTS AWARDS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%); PHYSICAL FITNESS (72%); SOCIAL MEDIA (70%)\n\nIndustry: SOCIAL MEDIA (70%)\n\nGeographic: ASSAM, INDIA (79%); MANIPUR, INDIA (79%); NORTHEAST INDIA (79%); INDIA (94%)\n\nLoad-Date: July 27, 2021\n\n\n
393 \nSubject: BRAND EQUITY (90%); BRANDING (90%); MANAGERS & SUPERVISORS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); ATHLETES (89%); EXECUTIVES (89%); SPORTS BUSINESS (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); CELEBRITIES (78%); GENDER EQUALITY (78%); SPORTS MARKETING (78%); WOMEN (78%); 2016 RIO SUMMER OLYMPICS (77%); BADMINTON (77%); SPORTS & RECREATION (77%)\n\nCompany: GOOGLE LLC (58%); BRIDGESTONE CORP (55%); BANK OF BARODA LTD (55%)\n\nTicker: 5108 (TSE) (55%); BANKBARODA (NSE) (55%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (58%); NAICS326211 TIRE MANUFACTURING (EXCEPT RETREADING) (55%); SIC3011 TIRES & INNER TUBES (55%); NAICS522110 COMMERCIAL BANKING (55%); SIC6021 NATIONAL COMMERCIAL BANKS (55%); BRAND EQUITY (90%); BRANDING (90%); PRODUCT ENDORSEMENTS (89%); CELEBRITIES (78%); REAL ESTATE (78%); SPORTS MARKETING (78%); MARKETING & ADVERTISING SERVICES (77%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
394 \nSubject: OLYMPICS (96%); 2020 TOKYO SUMMER OLYMPICS (90%); GENDER EQUALITY (90%); LETTERS & COMMENTS (90%); OLYMPIC COMMITTEES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); INFECTIOUS DISEASE (89%); SPORTS & RECREATION (89%); WOMEN'S SPORTS (89%); BACTERIA (83%); WOMEN (78%); DISEASE IMMUNITY (77%); TRENDS & EVENTS (77%); 2012 LONDON SUMMER OLYMPICS (73%); SEX & GENDER ISSUES (73%); CULTURE DEPARTMENTS (72%); CORONAVIRUSES (60%); VIRUSES (60%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (84%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (88%); TOKYO, JAPAN (88%); INDIA (94%)\n\nLoad-Date: July 27, 2021\n\n\n
395 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); FILM (89%); PHOTO & VIDEO SHARING (78%); INTERVIEWS (73%); ESPIONAGE (60%); NEGATIVE NEWS (60%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); FILM (89%); PHOTO & VIDEO SHARING (78%)\n\nPerson: AKSHAY KUMAR (94%)\n\nGeographic: HARYANA, INDIA (79%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
396 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); EMOTIONS (89%); STADIUMS & ARENAS (77%); CHILDREN'S MARKET (61%)\n\nIndustry: CHILDREN'S MARKET (61%)\n\nGeographic: UTTAR PRADESH, INDIA (90%); INDIA (94%); GERMANY (72%); BELGIUM (51%)\n\nLoad-Date: August 5, 2021\n\n\n
397 \nSubject: MEN (90%); FIELD HOCKEY (78%); WOMEN (78%); NEGATIVE NEWS (77%); NEGATIVE PERSONAL NEWS (76%); WOMEN'S SPORTS (73%)\n\nIndustry: INDUSTRIAL PROPERTY (70%)\n\nGeographic: INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
398 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (78%); SPORTS AWARDS (78%); ASSOCIATIONS & ORGANIZATIONS (75%); TALKS & MEETINGS (75%); OLYMPIC COMMITTEES (74%); AIR FORCES (73%); SPORTS GOVERNING BODIES (73%)\n\nIndustry: AIR FORCES (73%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (93%); PAKISTAN (79%); UNITED STATES (79%)\n\nLoad-Date: July 24, 2021\n\n\n
399 \nSubject: WOMEN (91%); ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); ELECTIONS & POLITICS (89%); FIELD HOCKEY (89%); GENDER & SEX DISCRIMINATION IN EMPLOYMENT (78%); GENDER EQUALITY (78%); MISOGYNY (78%); WOMEN WORKERS (78%); CRIME, LAW ENFORCEMENT & CORRECTIONS (77%); GOVERNMENT ADVISORS & MINISTERS (77%); WOMEN'S SPORTS (77%); MEN (76%); NEGATIVE PERSONAL NEWS (76%); FAMILY (74%); SPORTS & RECREATION (73%); WEIGHTLIFTING (73%); CRIMES AGAINST PERSONS (72%); LABOR FORCE (70%); LEGISLATIVE BODIES (61%); INTERNATIONAL ECONOMIC ORGANIZATIONS (50%)\n\nGeographic: HARYANA, INDIA (90%); GOA, INDIA (78%); INDIA (96%); BANGLADESH (79%)\n\nLoad-Date: August 8, 2021\n\n\n
400 \nSubject: OLYMPICS (90%); TENNIS (90%); SPORTS AWARDS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); MEN'S SPORTS (78%); NEGATIVE PERSONAL NEWS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); DOMESTIC OFFENSES (76%); TENNIS TOURNAMENTS (74%); NEGATIVE MISC NEWS (71%)\n\nPerson: NOVAK DJOKOVIC (79%)\n\nGeographic: SEOUL, KOREA, REPUBLIC OF (58%); UNITED STATES (72%); CZECH REPUBLIC (58%)\n\nLoad-Date: August 2, 2021\n\n\n
401 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); WOUNDS & INJURIES (89%); CELEBRITIES (78%); MENTORS & ROLE MODELS (78%); SPORTS & RECREATION EVENTS (78%); TENNIS (73%); TOURNAMENTS (69%); COVID CORONAVIRUS (65%); COVID-19 CORONAVIRUS (65%); INFECTIOUS DISEASE (65%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: INDIA (94%); GERMANY (77%); CZECH REPUBLIC (53%)\n\nLoad-Date: August 9, 2021\n\n\n
402 \nSubject: 2020 TOKYO SUMMER OLYMPICS (95%); WOMEN'S SPORTS (95%); OLYMPICS (91%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); WOMEN (78%)\n\nIndustry: STREAMING MEDIA (90%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (92%); INDIA (92%); UNITED KINGDOM (90%); JAPAN (58%)\n\nLoad-Date: August 5, 2021\n\n\n
403 \nSubject: OLYMPICS (92%); SPORTS & RECREATION EVENTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION (89%); ORTHOPEDICS (77%); PHYSICAL THERAPY (77%); WOUNDS & INJURIES (77%); BIOMECHANICS (71%); COVID CORONAVIRUS (69%); COVID-19 CORONAVIRUS (69%); INFECTIOUS DISEASE (69%); SURGERY & TRANSPLANTATION (69%)\n\nIndustry: ORTHOPEDICS (77%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (93%); GERMANY (90%); QATAR (57%)\n\nLoad-Date: August 8, 2021\n\n\n
404 \nSubject: ARMIES (91%); OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION (89%); WEAPONS & ARMS (89%); DEFENSE DEPARTMENTS (73%); FAMILY (69%); GOVERNMENT ADVISORS & MINISTERS (50%)\n\nIndustry: ARMIES (91%); DEFENSE DEPARTMENTS (73%)\n\nGeographic: NEW DELHI, INDIA (79%); HARYANA, INDIA (73%); INDIA (94%); GERMANY (79%); POLAND (57%)\n\nLoad-Date: August 8, 2021\n\n\n
405 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ARCHERY (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (79%); 2016 RIO SUMMER OLYMPICS (77%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (50%); INDIA (92%)\n\nLoad-Date: July 29, 2021\n\n\n
406 \nSubject: ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (89%); STADIUMS & ARENAS (78%); TOURNAMENTS (77%); SPORTS & RECREATION (72%); WOUNDS & INJURIES (69%)\n\nGeographic: NEW DELHI, INDIA (79%); MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (94%)\n\nLoad-Date: August 3, 2021\n\n\n
407 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); EXERCISE & FITNESS (89%); DOGS (78%); SPORTS AWARDS (78%); SPORTS & RECREATION FACILITIES & VENUES (77%); WEIGHTLIFTING (77%); WOMEN'S SPORTS (77%); SPORTS & RECREATION (66%)\n\nGeographic: TOKYO, JAPAN (90%); MANIPUR, INDIA (73%); INDIA (96%)\n\nLoad-Date: July 25, 2021\n\n\n
408 \nSubject: COVID CORONAVIRUS (93%); OLYMPICS (91%); ASSOCIATIONS & ORGANIZATIONS (90%); ATHLETES (90%); BROADCASTING SECTOR PERFORMANCE (90%); COVID-19 CORONAVIRUS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); CULTURE DEPARTMENTS (79%); TALKS & MEETINGS (79%); SPORTS & RECREATION EVENTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); INFECTIOUS DISEASE (77%); PANDEMICS (77%)\n\nIndustry: BROADCASTING INDUSTRY (90%); BROADCASTING SECTOR PERFORMANCE (90%); ENTERTAINMENT & ARTS (90%)\n\nGeographic: NEW DELHI, INDIA (79%); INDIA (97%)\n\nLoad-Date: August 7, 2021\n\n\n
409 \nSubject: JOURNALISM (90%); SOCCER (90%); WRITERS (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SOCCER TOURNAMENTS (74%); FIFA WORLD CUP (69%); BASKETBALL (66%); BASKETBALL TOURNAMENTS (60%)\n\nIndustry: WRITERS (90%)\n\nGeographic: BERLIN, GERMANY (92%); ARGENTINA (93%); UNITED STATES (93%); GERMANY (90%); EUROPE (79%); NORTH AMERICA (79%); CANADA (67%)\n\nLoad-Date: August 7, 2021\n\n\n
410 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); GOVERNMENT ADVISORS & MINISTERS (89%); SPORTS & RECREATION (89%); SUMMER OLYMPICS (89%); MANAGERS & SUPERVISORS (78%); SPORTS AWARDS (78%); WOMEN (78%); EMPLOYMENT SEARCH (77%); PUBLIC OFFICIALS (77%); REGIONAL & LOCAL GOVERNMENTS (77%); OLYMPIC COMMITTEES (73%); MIDDLE MANAGEMENT (72%)\n\nGeographic: UTTAR PRADESH, INDIA (94%); INDIA (95%)\n\nLoad-Date: August 6, 2021\n\n\n
411 \nSubject: RESIGNATIONS (91%); ATHLETES (90%); GYMNASTICS (90%); LETTERS & COMMENTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ELECTIONS & POLITICS (88%); SPORTS AWARDS (78%); EXECUTIVE MOVES (77%); TENNIS (77%); TENNIS TOURNAMENTS (77%); WOMEN'S SPORTS (77%); CELEBRITIES (76%); MENTAL HEALTH (76%); CAMPAIGNS & ELECTIONS (72%); ELECTIONS (72%); POLITICS (69%); SENIOR CITIZENS (68%); ANNIVERSARIES (67%); GOVERNMENT ADVISORS & MINISTERS (67%); NATURAL DISASTERS (63%)\n\nIndustry: CELEBRITIES (76%)\n\nPerson: SIMONE BILES (92%); NARENDRA MODI (79%); NAOMI OSAKA (72%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (88%); CHENNAI, TAMIL NADU, INDIA (73%); KOLKATA, WEST BENGAL, INDIA (73%); KARNATAKA, INDIA (94%); TAMIL NADU, INDIA (79%); INDIA (97%)\n\nLoad-Date: July 29, 2021\n\n\n
412 \nSubject: NEGATIVE PERSONAL NEWS (92%); ARRESTS (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); WINTER OLYMPICS (90%); ABUSE & NEGLECT (78%); ATHLETES (78%); WOMEN'S SPORTS (78%); DISORDERLY CONDUCT (73%); RELIGION (55%)\n\nGeographic: UTTARAKHAND, INDIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
413 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); SPORTS & RECREATION (77%); SUMMER OLYMPICS (77%); COACHES & TRAINERS (75%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (57%); BANGALORE, KARNATAKA, INDIA (53%); INDIA (79%); JAPAN (59%)\n\nLoad-Date: July 30, 2021\n\n\n
414 \nSubject: OLYMPICS (92%); ATHLETES (91%); BOXING (91%); 2012 LONDON SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); GYMNASTICS (89%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); OLYMPIC COMMITTEES (73%); TABLE TENNIS (73%)\n\nGeographic: TOKYO, JAPAN (88%); LONDON, ENGLAND (74%); INDIA (79%)\n\nLoad-Date: July 30, 2021\n\n\n
415 \nSubject: CELEBRITIES (90%); OLYMPICS (90%); TRACK & FIELD (90%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS AWARDS (77%); SUMMER OLYMPICS (76%)\n\nIndustry: CELEBRITIES (90%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 1, 2021\n\n\n
416 \nSubject: TENNIS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TENNIS TOURNAMENTS (90%); OLYMPICS (89%); TOURNAMENTS (89%); ATHLETES (78%); RANKINGS (78%); SPORTS AWARDS (78%); CELEBRITIES (77%); MENTAL HEALTH (70%); TRENDS & EVENTS (70%)\n\nIndustry: CELEBRITIES (77%)\n\nPerson: ASHLEIGH BARTY (92%); NAOMI OSAKA (92%); ANDY MURRAY (79%)\n\nGeographic: OSAKA, JAPAN (90%); TOKYO, JAPAN (73%); FRANCE (77%)\n\nLoad-Date: July 26, 2021\n\n\n
417 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); CONSUMERS (79%); 2020 TOKYO SUMMER OLYMPICS (78%); BRAND EQUITY (78%); BRANDING (78%); INTERVIEWS (78%); SPORTS & RECREATION EVENTS (78%); MANAGERS & SUPERVISORS (75%); EXECUTIVES (74%); SOCIAL MEDIA (72%)\n\nCompany: DOMINO'S PIZZA INC (84%); JUBILANT FOODWORKS LTD (52%); COCA-COLA CO (51%)\n\nTicker: DPZ (NYSE) (84%); JUBLFOOD (NSE) (52%); KO (NYSE) (51%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (84%); SIC5812 EATING PLACES (84%); NAICS312111 SOFT DRINK MANUFACTURING (51%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (51%); FAST FOOD RESTAURANTS (90%); BRAND EQUITY (78%); BRANDING (78%); SOFT DRINK INDUSTRY (78%); ADVERTISING SLOGANS (73%); RESTAURANTS (72%); SOCIAL MEDIA (72%); PRODUCT ENDORSEMENTS (67%); TELEVISION PROGRAMMING (56%)\n\nGeographic: MANIPUR, INDIA (73%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
418 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (78%); OLYMPIC COMMITTEES (73%); WRESTLING (73%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (52%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (94%); UNITED KINGDOM (77%); BELGIUM (69%)\n\nLoad-Date: August 7, 2021\n\n\n
419 \nSubject: FIELD HOCKEY (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); MEN'S SPORTS (90%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); WINTER OLYMPICS (90%); WOMEN'S SPORTS (90%); STADIUMS & ARENAS (89%); TOURNAMENTS (89%); SPORTS INSTRUCTION (78%); SPORTS SPONSORSHIP (78%); ECONOMIC DEVELOPMENT (76%); CABINET OFFICES (75%); EMOTIONS (73%)\n\nCompany: TATA GROUP (58%)\n\nIndustry: NAICS541330 ENGINEERING SERVICES (58%); NAICS311920 COFFEE & TEA MANUFACTURING (58%); SIC4911 ELECTRIC SERVICES (58%); SIC3312 STEEL WORKS, BLAST FURNACES (INCLUDING COKE OVENS) & ROLLING MILLS (58%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (58%); SPONSORSHIP (89%); SPORTS SPONSORSHIP (78%)\n\nGeographic: ODISHA, INDIA (95%); INDIA (94%)\n\nLoad-Date: August 3, 2021\n\n\n
420 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); SPORTS FANS (89%); AMATEUR SPORTS (78%); ANTIQUES & COLLECTIBLES (78%); COLLECTORS & COLLECTING (78%); HOBBIES (78%); BADMINTON (73%); TABLE TENNIS (73%); SPACE EXPLORATION (70%)\n\nIndustry: ANTIQUES & COLLECTIBLES (78%); ELECTRONIC PUBLISHING (78%); SPACE EXPLORATION (70%)\n\nPerson: USAIN BOLT (58%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); EARTH'S MOON (54%); INDIA (90%); GREECE (58%)\n\nLoad-Date: July 25, 2021\n\n\n
421 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); PHOTO & VIDEO SHARING (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); EXERCISE & FITNESS (89%); SPORTS AWARDS (89%); TRACK & FIELD (78%); CELEBRITIES (77%); SOCIAL MEDIA (72%); WEIGHTLIFTING (69%)\n\nIndustry: PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%); INTERNET VIDEO (89%); CELEBRITIES (77%); SOCIAL MEDIA (72%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
422 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); EXERCISE & FITNESS (89%); SPORTS & RECREATION EVENTS (78%); SPORTS FANS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (91%)\n\nLoad-Date: July 29, 2021\n\n\n
423 \nSubject: SPORTS FANS (91%); WOMEN'S SPORTS (91%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); MEN'S SPORTS (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); WOMEN (78%)\n\nGeographic: RAJASTHAN, INDIA (90%); INDIA (92%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
424 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); MANAGERS & SUPERVISORS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); KERALA, INDIA (58%); INDIA (95%); GERMANY (94%)\n\nLoad-Date: August 9, 2021\n\n\n
425 \nSubject: TRACK & FIELD (91%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); STADIUMS & ARENAS (89%); SUMMER OLYMPICS (89%); CELEBRITIES (78%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (68%); ODISHA, INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
426 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); PRIME MINISTERS (78%); SPORTS & RECREATION EVENTS (78%); CULTURE DEPARTMENTS (73%)\n\nCompany: BEST INC (90%)\n\nTicker: BEST (NYSE) (90%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (90%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (90%); MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: NEW DELHI, INDIA (90%)\n\nLoad-Date: August 4, 2021\n\n\n
427 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (89%); TRENDS & EVENTS (89%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (77%); PASSPORTS & VISAS (66%); TALKS & MEETINGS (66%)\n\nIndustry: PASSPORTS & VISAS (66%)\n\nGeographic: INDIA (88%)\n\nLoad-Date: August 9, 2021\n\n\n
428 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (78%); GOVERNMENT ADVISORS & MINISTERS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WRESTLING (78%); SPORTS & RECREATION (77%)\n\nGeographic: TAMIL NADU, INDIA (79%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
429 \nSubject: BOXING (94%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRANSPLANT SURGERY (89%); KICKBOXING (78%); MARTIAL ARTS (78%); SPORTS AWARDS (78%); UROGENITAL DISORDERS & INJURIES (76%); TWINS & MULTIPLE BIRTHS (72%); DIALYSIS (71%); NATIONAL SECURITY (60%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (90%); TAIPEI, TAIWAN (79%); ASSAM, INDIA (58%); INDIA (92%)\n\nLoad-Date: August 2, 2021\n\n\n
430 \nSubject: ATHLETES (90%); CELEBRITIES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOLF (89%); 2020 TOKYO SUMMER OLYMPICS (78%); GOLF TOURNAMENTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); STADIUMS & ARENAS (76%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: CELEBRITIES (90%)\n\nGeographic: HARYANA, INDIA (59%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
431 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (77%); SOCIAL MEDIA (72%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); MEDIA CONTENT (78%); SOCIAL MEDIA (72%)\n\nGeographic: BEIJING, CHINA (92%); NORTH CENTRAL CHINA (92%); INDIA (93%); CHINA (88%)\n\nLoad-Date: August 7, 2021\n\n\n
432 \nSubject: ATHLETES (90%); CELEBRITIES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOLF (89%); 2020 TOKYO SUMMER OLYMPICS (78%); GOLF TOURNAMENTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); STADIUMS & ARENAS (76%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: CELEBRITIES (90%)\n\nGeographic: HARYANA, INDIA (59%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
433 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); STUDENTS & STUDENT LIFE (91%); ATHLETES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); PARALYMPICS (90%); SPORTS INSTRUCTION (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (89%); BUSINESS EDUCATION (79%); TRENDS & EVENTS (78%); CELEBRITIES (77%); GOVERNMENT & PUBLIC ADMINISTRATION (74%); MEDICINE & HEALTH (68%); MEDICAL SCIENCE (63%); COVID CORONAVIRUS (62%)\n\nIndustry: CELEBRITIES (77%)\n\nGeographic: TOKYO, JAPAN (92%); ODISHA, INDIA (58%); INDIA (95%)\n\nLoad-Date: July 26, 2021\n\n\n
434 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nIndustry: SOCIAL MEDIA (90%)\n\nGeographic: BEIJING, CHINA (79%); TAIPEI, TAIWAN (57%); LONDON, ENGLAND (51%); NORTH CENTRAL CHINA (79%); NORTHEAST INDIA (79%); ASSAM, INDIA (59%); INDIA (93%)\n\nLoad-Date: July 30, 2021\n\n\n
435 \nSubject: WOMEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WRESTLING (77%)\n\nGeographic: TOKYO, JAPAN (91%); UNITED KINGDOM (90%)\n\nLoad-Date: August 6, 2021\n\n\n
436 \nSubject: WOMEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); MEN'S SPORTS (78%); WOMEN (78%); 2016 RIO SUMMER OLYMPICS (77%); GOVERNMENT ADVISORS & MINISTERS (77%); ELECTIONS & POLITICS (72%); EMOTIONS (63%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LOS ANGELES, CA, USA (79%); TOKYO, JAPAN (73%); MANIPUR, INDIA (94%); INDIA (92%); UNITED KINGDOM (79%)\n\nLoad-Date: August 7, 2021\n\n\n
437 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); STUDENTS & STUDENT LIFE (91%); ATHLETES (90%); EDUCATION SYSTEMS & INSTITUTIONS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); PARALYMPICS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (89%); BUSINESS EDUCATION (79%); CELEBRITIES (77%); TRENDS & EVENTS (76%); GOVERNMENT & PUBLIC ADMINISTRATION (74%); WHEELCHAIR & DISABILITY SPORTS (73%); MEDICINE & HEALTH (68%); MEDICAL SCIENCE (63%); COVID CORONAVIRUS (62%)\n\nIndustry: EDUCATION SYSTEMS & INSTITUTIONS (90%); EDUCATIONAL SERVICES (90%); CELEBRITIES (77%)\n\nGeographic: TOKYO, JAPAN (92%); CHANDIGARH, INDIA (58%); ODISHA, INDIA (58%); INDIA (95%)\n\nLoad-Date: July 26, 2021\n\n\n
438 \nSubject: WOMEN'S SPORTS (93%); MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); CELEBRITIES (89%); INTERNET SOCIAL NETWORKING (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); WOMEN (78%); ACTORS & ACTRESSES (75%)\n\nIndustry: SOCIAL MEDIA (90%); CELEBRITIES (89%); INTERNET SOCIAL NETWORKING (89%); ACTORS & ACTRESSES (75%)\n\nPerson: SHAH RUKH KHAN (79%); AKSHAY KUMAR (72%)\n\nGeographic: INDIA (94%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
439 \nSubject: OLYMPICS (92%); DISASTER RELIEF (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); SPORTS & RECREATION (89%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); OLYMPIC COMMITTEES (78%); SPORTS AWARDS (78%); SPORTS GOVERNING BODIES (78%); STADIUMS & ARENAS (78%); TENNIS (78%); TOURNAMENTS (78%); STATES OF EMERGENCY (77%); COVID CORONAVIRUS (72%); CELEBRITIES (70%); REFUGEES (69%); WEIGHTLIFTING (65%); WEATHER ALERTS (50%)\n\nIndustry: CELEBRITIES (70%)\n\nPerson: SIMONE BILES (79%); NAOMI OSAKA (55%)\n\nGeographic: INDIA (79%); QATAR (52%)\n\nLoad-Date: August 9, 2021\n\n\n
440 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); MEDITATION (89%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (79%); SPORTS AWARDS (79%); SUMMER OLYMPICS (78%); YOGA (78%); RELIGION (77%); SOCCER (73%); SPRAINS & STRAINS (71%); DEATH & DYING (68%); WOUNDS & INJURIES (61%)\n\nLoad-Date: August 8, 2021\n\n\n
441 \nSubject: NEGATIVE PERSONAL NEWS (92%); ARRESTS (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); FAMILY (89%); WOMEN (89%); ABUSE & NEGLECT (78%); ATHLETES (78%); DISORDERLY CONDUCT (78%); INVESTIGATIONS (78%); WOMEN'S SPORTS (78%); RELIGION (55%)\n\nGeographic: UTTARAKHAND, INDIA (89%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
442 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); SPORTS FANS (78%); WOMEN'S SPORTS (78%); MEN (74%); WOMEN (73%)\n\nGeographic: TOKYO, JAPAN (73%); UTTAR PRADESH, INDIA (58%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
443 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (91%); COMPANY STRATEGY (90%); OLYMPICS SPONSORSHIP (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); EXECUTIVES (89%); FIELD HOCKEY (89%); BRANDING (79%); 2016 RIO SUMMER OLYMPICS (78%); ARCHERY (78%); BOXING (78%); CELEBRITIES (78%); MEN'S SPORTS (78%); SPORTS FANS (78%); BRAND EQUITY (74%); MANAGERS & SUPERVISORS (73%); MARTIAL ARTS (73%); TABLE TENNIS (73%); WEIGHTLIFTING (73%)\n\nCompany: INOX LEISURE LTD (52%)\n\nTicker: INOXLEISUR (NSE) (52%)\n\nIndustry: SPONSORSHIP (90%); BRANDING (79%); CELEBRITIES (78%); MARKETING STRATEGY (78%); BRAND EQUITY (74%); MARKETING PLAN (74%)\n\nGeographic: TOKYO, JAPAN (91%); MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (93%)\n\nLoad-Date: August 4, 2021\n\n\n
444 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (91%); COMPANY STRATEGY (90%); OLYMPICS SPONSORSHIP (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); EXECUTIVES (89%); FIELD HOCKEY (89%); BRANDING (79%); 2016 RIO SUMMER OLYMPICS (78%); ARCHERY (78%); BOXING (78%); CELEBRITIES (78%); MEN'S SPORTS (78%); SPORTS FANS (78%); BRAND EQUITY (74%); MANAGERS & SUPERVISORS (73%); MARTIAL ARTS (73%); TABLE TENNIS (73%); WEIGHTLIFTING (73%)\n\nCompany: INOX LEISURE LTD (52%)\n\nTicker: INOXLEISUR (NSE) (52%)\n\nIndustry: SPONSORSHIP (90%); BRANDING (79%); CELEBRITIES (78%); MARKETING STRATEGY (78%); BRAND EQUITY (74%); MARKETING PLAN (74%)\n\nGeographic: TOKYO, JAPAN (91%); MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (93%)\n\nLoad-Date: August 4, 2021\n\n\n
445 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (91%); COMPANY STRATEGY (90%); OLYMPICS SPONSORSHIP (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); EXECUTIVES (89%); FIELD HOCKEY (89%); BRANDING (79%); 2016 RIO SUMMER OLYMPICS (78%); ARCHERY (78%); BOXING (78%); CELEBRITIES (78%); MEN'S SPORTS (78%); SPORTS FANS (78%); BRAND EQUITY (74%); MANAGERS & SUPERVISORS (73%); MARTIAL ARTS (73%); TABLE TENNIS (73%); WEIGHTLIFTING (73%)\n\nCompany: INOX LEISURE LTD (52%)\n\nTicker: INOXLEISUR (NSE) (52%)\n\nIndustry: SPONSORSHIP (90%); BRANDING (79%); CELEBRITIES (78%); MARKETING STRATEGY (78%); BRAND EQUITY (74%); MARKETING PLAN (74%)\n\nGeographic: TOKYO, JAPAN (91%); MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (93%)\n\nLoad-Date: August 4, 2021\n\n\n
446 \nSubject: ACTORS & ACTRESSES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TENNIS (90%); GOSSIP & RUMORS (78%); PHOTO & VIDEO SHARING (78%); ATHLETES (77%); SPORTS AWARDS (77%); TENNIS TOURNAMENTS (77%)\n\nIndustry: ACTORS & ACTRESSES (90%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (78%); RESTAURANTS (74%)\n\nPerson: AMITABH BACHCHAN (79%); SHAH RUKH KHAN (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); GOA, INDIA (59%); INDIA (89%)\n\nLoad-Date: August 3, 2021\n\n\n
447 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); EMOTIONS (77%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: INDIA (92%); COLOMBIA (90%)\n\nLoad-Date: July 29, 2021\n\n\n
448 \nSubject: MEN'S SPORTS (93%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); CELEBRITIES (89%); SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%); SPORTS FANS (78%); WOMEN'S SPORTS (78%); FILM DIRECTORS (75%); EMOTIONS (71%)\n\nCompany: BEST INC (58%)\n\nTicker: BEST (NYSE) (58%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (58%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (58%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); CELEBRITIES (89%); FILM DIRECTORS (75%)\n\nPerson: SHAH RUKH KHAN (92%); AKSHAY KUMAR (79%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (95%); GERMANY (93%)\n\nLoad-Date: August 5, 2021\n\n\n
449 \nSubject: OLYMPICS (92%); TRANSGENDER ATHLETES (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TRANSGENDER PERSONS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION (89%); 2016 RIO SUMMER OLYMPICS (78%); NONBINARY PERSONS (78%); SPORTS GOVERNING BODIES (78%); OLYMPIC COMMITTEES (73%); WEIGHTLIFTING (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TORONTO, ON, CANADA (74%); ONTARIO, CANADA (74%); CANADA (90%); UNITED STATES (58%)\n\nLoad-Date: August 3, 2021\n\n\n
450 \nSubject: OLYMPICS (91%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (89%); WOMEN'S SPORTS (89%); WRITERS (86%); RUNNING (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); TRACK & FIELD (78%); ATHLETES (77%); STADIUMS & ARENAS (77%); TOURNAMENTS (75%); COACHES & TRAINERS (73%)\n\nIndustry: WRITERS (86%)\n\nGeographic: TOKYO, JAPAN (89%); INDIA (95%); AUSTRALIA (79%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
451 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); STUDENTS & STUDENT LIFE (78%); MEN'S SPORTS (77%); COACHES & TRAINERS (72%)\n\nOrganization: MINNESOTA WILD (57%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: PUNJAB, INDIA (79%); INDIA (91%)\n\nLoad-Date: August 6, 2021\n\n\n
452 \nSubject: OLYMPICS (91%); BOXING (90%); SUMMER OLYMPICS (90%); FAMILY (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); HOBBIES (77%); EMOTIONS (65%); COVID CORONAVIRUS (60%)\n\nGeographic: TOKYO, JAPAN (88%); KOLKATA, WEST BENGAL, INDIA (73%); NEW DELHI, INDIA (59%); MUMBAI, MAHARASHTRA, INDIA (58%); ASSAM, INDIA (91%); INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
453 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (89%); WOMEN'S SPORTS (89%); WRITERS (85%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); ATHLETES (77%); STADIUMS & ARENAS (77%); TOURNAMENTS (75%); COACHES & TRAINERS (73%)\n\nIndustry: WRITERS (85%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (96%); AUSTRALIA (79%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
454 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (89%); SPORTS & RECREATION (89%); PROFESSIONAL SPORTS (77%); ARMIES (71%); CABINET OFFICES (71%); EXECUTIVES (68%); ARMED FORCES (63%); GOVERNMENT ADVISORS & MINISTERS (63%)\n\nIndustry: MEDIA CONTENT (78%); ARMIES (71%); ARMED FORCES (63%)\n\nPerson: MAHENDRA SINGH DHONI (79%)\n\nGeographic: NEW DELHI, INDIA (90%); CHENNAI, TAMIL NADU, INDIA (58%); MANIPUR, INDIA (58%); PUNJAB, INDIA (58%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
455 \nSubject: OLYMPICS (92%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); 2012 LONDON SUMMER OLYMPICS (73%); PRIME MINISTERS (72%); WEIGHTLIFTING (70%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BEIJING, CHINA (79%); LONDON, ENGLAND (54%); NORTH CENTRAL CHINA (79%); INDIA (92%); CHINA (73%)\n\nLoad-Date: August 2, 2021\n\n\n
456 \nSubject: WEIGHTLIFTING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); CELEBRITIES (90%); DRAMA FILMS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ARTISTS & PERFORMERS (77%); HEADS OF STATE & GOVERNMENT (73%); DELAYS & POSTPONEMENTS (70%); CULTURE DEPARTMENTS (68%); COVID CORONAVIRUS (65%); COVID-19 CORONAVIRUS (65%); INFECTIOUS DISEASE (65%); PRIME MINISTERS (50%)\n\nIndustry: ACTORS & ACTRESSES (90%); CELEBRITIES (90%); DRAMA FILMS (90%); ARTISTS & PERFORMERS (77%)\n\nPerson: PRIYANKA CHOPRA (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MANIPUR, INDIA (79%); INDIA (94%)\n\nLoad-Date: July 27, 2021\n\n\n
457 \nSubject: WRESTLING (92%); OLYMPICS (91%); 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS INJURIES (79%); SPORTS AWARDS (78%); TOURNAMENTS (78%); WOMEN (78%); WOUNDS & INJURIES (72%); KNEE DISORDERS & INJURIES (67%)\n\nGeographic: TOKYO, JAPAN (74%); HARYANA, INDIA (73%); INDIA (93%); RUSSIAN FEDERATION (90%); EUROPE (88%); CENTRAL ASIA (79%); JAPAN (79%); KAZAKHSTAN (79%); MONGOLIA (79%); ASIA (78%); ESTONIA (57%); HUNGARY (57%); BULGARIA (53%); AZERBAIJAN (51%)\n\nLoad-Date: August 3, 2021\n\n\n
458 \nSubject: ARCHERY (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); 2016 RIO SUMMER OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); TOURNAMENTS (78%); MENTORS & ROLE MODELS (77%); TRENDS & EVENTS (77%)\n\nGeographic: TOKYO, JAPAN (58%); LONDON, ENGLAND (51%); JHARKHAND, INDIA (58%); INDIA (91%); JAPAN (58%)\n\nLoad-Date: August 1, 2021\n\n\n
459 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPIC COMMITTEES (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (90%); PHYSICAL FITNESS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); EXERCISE & FITNESS (86%); ATHLETES (78%); DELAYS & POSTPONEMENTS (78%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (76%); EMOTIONS (69%)\n\nGeographic: TOKYO, JAPAN (88%); BUENOS AIRES, ARGENTINA (79%); CHENNAI, TAMIL NADU, INDIA (79%); TAMIL NADU, INDIA (79%); INDIA (94%); ARGENTINA (79%); JAPAN (79%); NEPAL (79%); ASIA (78%)\n\nLoad-Date: July 31, 2021\n\n\n
460 \nSubject: WEIGHTLIFTING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); DRUG TESTING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (89%); FIELD HOCKEY (79%); DRUGS IN SPORTS (78%); EXERCISE & FITNESS (73%); ARCHERY (72%)\n\nGeographic: TOKYO, JAPAN (88%); SYDNEY, AUSTRALIA (53%); AUSTRALIA (79%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
461 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (79%); 2016 RIO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (77%); SPORTS FANS (74%); CHILDREN, ADOLESCENTS & TEENS (52%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (73%); KARNATAKA, INDIA (79%); INDIA (88%)\n\nLoad-Date: August 8, 2021\n\n\n
462 \nSubject: OLYMPICS (93%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); ATHLETES (78%); TOURNAMENTS (77%); 2012 LONDON SUMMER OLYMPICS (73%); EMOTIONS (72%); COACHES & TRAINERS (64%); COVID CORONAVIRUS (51%); COVID-19 CORONAVIRUS (51%)\n\nGeographic: BEIJING, CHINA (79%); LONDON, ENGLAND (69%); HAWAII, USA (79%); ODISHA, INDIA (58%); GERMANY (91%); UNITED STATES (79%); EUROPE (72%); BELGIUM (67%)\n\nLoad-Date: August 6, 2021\n\n\n
463 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); WRESTLING (89%); FIELD HOCKEY (79%); BOXING (77%); MEN'S SPORTS (77%); SPORTS & RECREATION EVENTS (77%); FOLKLORE (73%); 2012 LONDON SUMMER OLYMPICS (72%); DANCE (71%); SINGERS & MUSICIANS (67%)\n\nIndustry: MEDIA CONTENT (78%); SINGERS & MUSICIANS (67%)\n\nGeographic: BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (56%); NORTH CENTRAL CHINA (79%); INDIA (96%); ENGLAND (79%); CHINA (68%)\n\nLoad-Date: August 7, 2021\n\n\n
464 \nSubject: ATHLETES (92%); OLYMPICS (91%); 2012 LONDON SUMMER OLYMPICS (90%); GYMNASTICS (90%); MEN'S SPORTS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (89%); FIELD HOCKEY (79%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); BADMINTON (78%); BOXING (78%); WOMEN (78%); WOMEN'S SPORTS (78%); WRESTLING (78%); MENTORS & ROLE MODELS (73%); WEIGHTLIFTING (70%); SOCIAL MEDIA (69%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (69%)\n\nIndustry: SOCIAL MEDIA (69%); MOBILE & CELLULAR TELEPHONES (54%)\n\nGeographic: LONDON, ENGLAND (88%); CHENNAI, TAMIL NADU, INDIA (59%); HYDERABAD, ANDHRA PRADESH, INDIA (59%); ASSAM, INDIA (89%); HARYANA, INDIA (74%); MANIPUR, INDIA (74%); INDIA (92%)\n\nLoad-Date: August 3, 2021\n\n\n
465 \nSubject: OLYMPICS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: TOKYO, JAPAN (73%); HARYANA, INDIA (78%); INDIA (91%)\n\nLoad-Date: August 8, 2021\n\n\n
466 \nSubject: ATHLETES (90%); EXECUTIVES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); CELEBRITIES (78%); ELECTRONIC GOVERNMENT (78%); MANAGERS & SUPERVISORS (78%); SPORTS AWARDS (78%); COMPANY STRUCTURES & OWNERSHIP (74%)\n\nCompany: BEST INC (90%)\n\nTicker: BEST (NYSE) (90%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (90%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (90%); CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (58%); INDIA (79%)\n\nLoad-Date: August 9, 2021\n\n\n
467 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); FIELD HOCKEY (89%); SPORTS AWARDS (89%); 2020 TOKYO SUMMER OLYMPICS (79%); SPORTS & RECREATION EVENTS (78%); 2012 LONDON SUMMER OLYMPICS (73%); BADMINTON (73%); WEIGHTLIFTING (65%); INFECTIOUS DISEASE (60%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nGeographic: TOKYO, JAPAN (91%); LONDON, ENGLAND (71%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
468 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ELECTIONS & POLITICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); PROFESSIONAL SPORTS (77%); STADIUMS & ARENAS (77%); ARMIES (71%); REGIONAL & LOCAL GOVERNMENTS (67%); WEAPONS & ARMS (61%)\n\nCompany: DAV (53%)\n\nIndustry: NAICS334417 ELECTRONIC CONNECTOR MANUFACTURING (53%); SIC5063 ELECTRICAL APPARATUS & EQUIPMENT (53%); MEDIA CONTENT (78%); ARMIES (71%)\n\nGeographic: NEW DELHI, INDIA (92%); BEIJING, CHINA (79%); CHENNAI, TAMIL NADU, INDIA (73%); PUNJAB, INDIA (91%); CHANDIGARH, INDIA (79%); MANIPUR, INDIA (79%); NORTH CENTRAL CHINA (79%); HARYANA, INDIA (78%); INDIA (96%)\n\nLoad-Date: August 7, 2021\n\n\n
469 \nSubject: FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); INTERNET TROLLING (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (89%); 2020 TOKYO SUMMER OLYMPICS (77%); SOCIAL MEDIA (77%); SPORTS FANS (77%); SUMMER OLYMPICS (77%); BLOGS & MESSAGE BOARDS (71%); PRIME MINISTERS (55%)\n\nCompany: TWITTER INC (84%)\n\nTicker: TWTR (NYSE) (84%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (84%); INTERNET SOCIAL NETWORKING (90%); INTERNET TROLLING (90%); SOCIAL MEDIA (77%); SHORT FORM CONTENT (75%); BLOGS & MESSAGE BOARDS (71%)\n\nGeographic: INDIA (94%); GERMANY (93%)\n\nLoad-Date: August 6, 2021\n\n\n
470 \nSubject: WOMEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); SPORTS REGULATION & POLICY (73%)\n\nGeographic: TOKYO, JAPAN (90%); UTTARAKHAND, INDIA (90%); INDIA (94%); AFRICA (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 8, 2021\n\n\n
471 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); HEADS OF STATE & GOVERNMENT (78%); PRIME MINISTERS (78%); MEN'S SPORTS (75%); 2016 RIO SUMMER OLYMPICS (73%); 2020 TOKYO SUMMER OLYMPICS (73%); SUMMER OLYMPICS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%); UNITED KINGDOM (73%)\n\nLoad-Date: August 6, 2021\n\n\n
472 \nSubject: ATHLETES (96%); GYMNASTICS (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); WOMEN'S SPORTS (89%); 2016 RIO SUMMER OLYMPICS (78%); WOMEN (78%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: TOKYO, JAPAN (87%); BEIJING, CHINA (79%); ATLANTA, GA, USA (57%); BARCELONA, SPAIN (53%); CATALONIA, SPAIN (79%); NORTH CENTRAL CHINA (79%); INDIA (90%); UZBEKISTAN (70%)\n\nLoad-Date: July 27, 2021\n\n\n
473 \nSubject: ATHLETES (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%); SPORTS FANS (73%); WOMEN (73%); COVID CORONAVIRUS (68%); INFECTIOUS DISEASE (68%); HEALTH CARE PROFESSIONALS (67%); COVID-19 CORONAVIRUS (53%)\n\nIndustry: HEALTH CARE PROFESSIONALS (67%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (88%); INDIA (97%); GERMANY (78%)\n\nLoad-Date: August 6, 2021\n\n\n
474 \nSubject: OLYMPICS (96%); FEMINISM & WOMEN'S RIGHTS (92%); ARCHERY (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); CELEBRITIES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); MISOGYNY (89%); WOMEN (89%); INTERNET SOCIAL NETWORKING (87%); NEGATIVE PERSONAL NEWS (77%); PHOTO & VIDEO SHARING (72%)\n\nIndustry: CELEBRITIES (90%); INTERNET & WWW (87%); INTERNET SOCIAL NETWORKING (87%); PHOTO & VIDEO SHARING (72%)\n\nGeographic: KOREA, REPUBLIC OF (94%); ASIA (78%)\n\nLoad-Date: July 30, 2021\n\n\n
475 \nSubject: OLYMPICS (92%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (89%); 2012 LONDON SUMMER OLYMPICS (78%); 2016 RIO SUMMER OLYMPICS (78%); TOURNAMENTS (72%); EMOTIONS (69%)\n\nGeographic: LONDON, ENGLAND (72%)\n\nLoad-Date: July 30, 2021\n\n\n
476 \nSubject: MEN'S SPORTS (95%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); SOCIAL MEDIA (72%); VISUAL ARTISTS (70%)\n\nIndustry: CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (72%); VISUAL ARTISTS (70%)\n\nPerson: SHAH RUKH KHAN (92%); AKSHAY KUMAR (88%)\n\nGeographic: INDIA (94%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
477 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%)\n\nGeographic: TOKYO, JAPAN (70%); MUMBAI, MAHARASHTRA, INDIA (58%); MADHYA PRADESH, INDIA (90%); INDIA (94%); ARGENTINA (93%)\n\nLoad-Date: August 3, 2021\n\n\n
478 \nSubject: OLYMPICS (91%); 2016 RIO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); WOMEN (78%); PHYSICAL FITNESS (76%); ATHLETES (73%); CRICKET (73%)\n\nPerson: MAHENDRA SINGH DHONI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); TOKYO, JAPAN (73%); INDIA (93%); NETHERLANDS (92%); GERMANY (79%)\n\nLoad-Date: July 25, 2021\n\n\n
479 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (76%); EMOTIONS (73%)\n\nGeographic: HYDERABAD, ANDHRA PRADESH, INDIA (58%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
480 \nSubject: OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (79%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); SPORTS & RECREATION (72%); ESSENTIAL BUSINESSES & WORKERS (65%); SERVICE WORKERS (65%); POLICE FORCES (50%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (78%); PUNJAB, INDIA (79%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
481 \nSubject: ARCHERY (91%); ATHLETES (89%); OLYMPICS (89%); SUMMER OLYMPICS (89%); TOURNAMENTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); TAIPEI, TAIWAN (52%); KOREA, REPUBLIC OF (58%)\n\nLoad-Date: July 29, 2021\n\n\n
482 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); PROFESSIONAL SPORTS (77%); STADIUMS & ARENAS (77%); GOVERNMENT & PUBLIC ADMINISTRATION (73%); ARMIES (70%); ELECTIONS & POLITICS (68%); REGIONAL & LOCAL GOVERNMENTS (67%); WEAPONS & ARMS (60%)\n\nCompany: DAV (52%)\n\nIndustry: NAICS334417 ELECTRONIC CONNECTOR MANUFACTURING (52%); SIC5063 ELECTRICAL APPARATUS & EQUIPMENT (52%); MEDIA CONTENT (73%); ARMIES (70%)\n\nGeographic: NEW DELHI, INDIA (92%); BEIJING, CHINA (79%); CHENNAI, TAMIL NADU, INDIA (73%); PUNJAB, INDIA (91%); CHANDIGARH, INDIA (79%); MANIPUR, INDIA (79%); NORTH CENTRAL CHINA (79%); HARYANA, INDIA (78%); INDIA (96%)\n\nLoad-Date: August 8, 2021\n\n\n
483 \nSubject: OLYMPICS (91%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); STADIUMS & ARENAS (89%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%); COACHES & TRAINERS (73%); SUMO (73%); MARTIAL ARTS (72%); WRESTLING (72%); WEIGHTLIFTING (63%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TAIPEI, TAIWAN (58%); ASSAM, INDIA (74%); INDIA (94%)\n\nLoad-Date: July 30, 2021\n\n\n
484 \nSubject: ARCHERY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); STUDENTS & STUDENT LIFE (89%); SPORTS CAMPS & SCHOOLS (88%); SPORTS & RECREATION (86%); BLUE COLLAR WORKERS (78%); RURAL SCHOOLS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); COACHES & TRAINERS (72%); TEACHING & TEACHERS (70%); PHYSICAL EDUCATION (69%); COLLEGE & UNIVERSITY PROFESSORS (63%); SCHOOL DROP OUTS (63%); CROWDFUNDING (50%); CROWDSOURCING (50%)\n\nIndustry: RURAL SCHOOLS (78%); COLLEGE & UNIVERSITY PROFESSORS (63%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: July 23, 2021\n\n\n
485 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); BADMINTON (90%); INTERNET SOCIAL NETWORKING (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); DELAYS & POSTPONEMENTS (78%); MEN'S SPORTS (78%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (91%); CHINA (90%)\n\nLoad-Date: August 4, 2021\n\n\n
486 \nSubject: WRESTLING (92%); ATHLETES (90%); GRANDPARENTS (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); GRANDCHILDREN (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS AWARDS (77%); 2012 LONDON SUMMER OLYMPICS (72%); WATER RESOURCES (68%)\n\nIndustry: ENERGY & UTILITIES (88%); MEDIA CONTENT (78%); UNINTERRUPTIBLE POWER SUPPLIES (71%)\n\nGeographic: TOKYO, JAPAN (88%); LONDON, ENGLAND (79%); LOS ANGELES, CA, USA (79%); MOSCOW, RUSSIAN FEDERATION (73%); HARYANA, INDIA (79%); RUSSIAN FEDERATION (58%)\n\nLoad-Date: August 5, 2021\n\n\n
487 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS & RECREATION (89%); STADIUMS & ARENAS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); WRITERS (60%)\n\nIndustry: MEDIA CONTENT (78%); FARMERS & RANCHERS (69%); WRITERS (60%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (71%); HARYANA, INDIA (92%); INDIA (92%); JAPAN (79%)\n\nLoad-Date: August 8, 2021\n\n\n
488 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); BADMINTON (89%); WOMEN'S SPORTS (89%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); PRESS CONFERENCES (78%); SOCIAL MEDIA (78%); EMOTIONS (71%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (78%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 2, 2021\n\n\n
489 \nSubject: 2020 TOKYO SUMMER OLYMPICS (92%); PRIME MINISTERS (92%); WEIGHTLIFTING (91%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EXERCISE & FITNESS (89%); SPORTS & RECREATION EVENTS (78%)\n\nCompany: TWITTER INC (91%)\n\nTicker: TWTR (NYSE) (91%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (91%)\n\nPerson: NARENDRA MODI (92%); RAM NATH KOVIND (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (96%); CHINA (79%); INDONESIA (79%)\n\nLoad-Date: July 25, 2021\n\n\n
490 \nSubject: OLYMPICS (90%); PRIME MINISTERS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); HEADS OF STATE & GOVERNMENT (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); 2020 TOKYO SUMMER OLYMPICS (76%); SUMMER OLYMPICS (76%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MADHYA PRADESH, INDIA (89%); INDIA (96%)\n\nLoad-Date: August 6, 2021\n\n\n
491 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); FIELD HOCKEY (89%); REGIONAL & LOCAL GOVERNMENTS (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (77%); GOVERNMENT & PUBLIC ADMINISTRATION (74%); GOVERNMENT ADVISORS & MINISTERS (69%)\n\nIndustry: POWER FAILURES (89%); ENERGY & UTILITIES (77%); ELECTRICITY TRANSMISSION & DISTRIBUTION (72%)\n\nGeographic: TOKYO, JAPAN (72%); JHARKHAND, INDIA (94%); INDIA (98%); AUSTRALIA (79%)\n\nLoad-Date: August 3, 2021\n\n\n
492 \nSubject: OLYMPICS (90%); STADIUMS & ARENAS (89%); RUNNING (77%); SPORTS & RECREATION (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); SPORTS INSTRUCTION (77%); TRACK & FIELD (77%); 2020 TOKYO SUMMER OLYMPICS (75%); EXERCISE & FITNESS (68%)\n\nPerson: MICHAEL PHELPS (79%); USAIN BOLT (79%)\n\nGeographic: HARYANA, INDIA (79%); INDIA (92%); POLAND (50%)\n\nLoad-Date: August 7, 2021\n\n\n
493 \nSubject: MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); BADMINTON (78%); SPORTS & RECREATION (78%); WOMEN (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (77%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (78%); TOKYO, JAPAN (73%); INDIA (99%); UNITED KINGDOM (94%); AUSTRALIA (92%); BELGIUM (88%); GERMANY (79%)\n\nLoad-Date: August 2, 2021\n\n\n
494 \nSubject: WRESTLING (92%); OLYMPICS (91%); 2016 RIO SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS INJURIES (79%); SPORTS AWARDS (78%); TOURNAMENTS (78%); WOMEN (78%); WOUNDS & INJURIES (72%); KNEE DISORDERS & INJURIES (67%)\n\nGeographic: TOKYO, JAPAN (74%); HARYANA, INDIA (73%); INDIA (93%); RUSSIAN FEDERATION (90%); EUROPE (88%); CENTRAL ASIA (79%); JAPAN (79%); KAZAKHSTAN (79%); MONGOLIA (79%); ASIA (78%); ESTONIA (57%); HUNGARY (57%); BULGARIA (53%); AZERBAIJAN (51%)\n\nLoad-Date: August 3, 2021\n\n\n
495 \nSubject: ARCHERY (93%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); TOURNAMENTS (77%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (58%); TOKYO, JAPAN (58%); LONDON, ENGLAND (56%); INDIA (90%); JAPAN (58%)\n\nLoad-Date: August 1, 2021\n\n\n
496 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); FIELD HOCKEY (89%); 2016 RIO SUMMER OLYMPICS (78%); EMOTIONS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN (78%); SPORTS & RECREATION (77%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (65%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (79%); INDIA (93%)\n\nLoad-Date: August 1, 2021\n\n\n
497 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); ATHLETES (78%); CELEBRITIES (78%); SPORTS & RECREATION EVENTS (78%); TENNIS (78%); WOMEN'S SPORTS (78%); SWIMMING (70%); TWINS & MULTIPLE BIRTHS (50%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (73%); GUJARAT, INDIA (90%); INDIA (91%); ZIMBABWE (71%)\n\nLoad-Date: July 28, 2021\n\n\n
498 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); BOXING (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); INFECTIOUS DISEASE (89%); COVID CORONAVIRUS (86%); COVID-19 CORONAVIRUS (86%); SPORTS AWARDS (78%); COVID-19 CORONAVIRUS REGULATION & POLICY (65%)\n\nGeographic: BANGKOK, THAILAND (79%); INDIA (93%); UZBEKISTAN (79%)\n\nLoad-Date: July 31, 2021\n\n\n
499 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); LEGISLATIVE BODIES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (79%); NEWS BRIEFS (78%); NEGATIVE NEWS (77%); TALIBAN (77%); UNITED NATIONS (77%); MEN'S SPORTS (72%); NEGATIVE MISC NEWS (71%); TERRORIST ATTACKS (71%); UNITED NATIONS INSTITUTIONS (57%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (96%); GERMANY (77%); AFGHANISTAN (73%)\n\nLoad-Date: August 5, 2021\n\n\n
500 \nSubject: WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); PRIME MINISTERS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (89%); INDIA (95%)\n\nLoad-Date: July 24, 2021\n\n\n
501 \nSubject: APPOINTMENTS (92%); CHILD DEVELOPMENT (91%); CHILDREN (90%); FEMINISM & WOMEN'S RIGHTS (90%); FIELD HOCKEY (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (89%); WOMEN'S SPORTS (89%); CULTURE DEPARTMENTS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); EDUCATION DEPARTMENTS (73%); SPORTS REGULATION & POLICY (73%); MENTORS & ROLE MODELS (72%)\n\nGeographic: UTTARAKHAND, INDIA (96%); INDIA (95%)\n\nLoad-Date: August 8, 2021\n\n\n
502 \nSubject: FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); STADIUMS & ARENAS (90%); MEN'S SPORTS (89%); OLYMPICS (89%); SPORTS AWARDS (89%); WOMEN'S SPORTS (89%); SUMMER OLYMPICS (87%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); WOMEN (78%); COACHES & TRAINERS (73%); 2020 TOKYO SUMMER OLYMPICS (71%)\n\nPerson: NARENDRA MODI (93%)\n\nLoad-Date: August 6, 2021\n\n\n
503 \nSubject: CIVIL SERVICES (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS AWARDS (90%); APPOINTMENTS (78%); ATHLETES (78%); CELEBRITIES (78%)\n\nIndustry: CELEBRITIES (78%); TRAVEL TICKETS (76%)\n\nGeographic: TOKYO, JAPAN (72%); MANIPUR, INDIA (94%); INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
504 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EMOTIONS (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (76%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); HYDERABAD, ANDHRA PRADESH, INDIA (59%); INDIA (91%)\n\nLoad-Date: August 6, 2021\n\n\n
505 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (89%); TRENDS & EVENTS (89%); CHILDREN (87%); COACHES & TRAINERS (78%); MEN'S SPORTS (78%); SPORTS FANS (73%); PHYSICAL FITNESS (72%); SCHOOL ATHLETIC STAFF (66%)\n\nGeographic: KARNATAKA, INDIA (90%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
506 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); 2016 RIO SUMMER OLYMPICS (89%); OLYMPICS (89%); SAFETY (89%); SPORTS AWARDS (76%); SPORTS & RECREATION (72%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (96%); AUSTRALIA (95%); ASIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
507 \nSubject: OLYMPICS (92%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WINTER OLYMPICS (90%); FIELD HOCKEY (89%); MEN'S SPORTS (89%); SPORTS & RECREATION (89%); ATHLETES (78%); COACHES & TRAINERS (78%); SPORTS & RECREATION EVENTS (78%); RUNNING (73%); APPOINTMENTS (66%); ARMIES (52%)\n\nIndustry: ARMIES (52%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (90%); PUNJAB, INDIA (94%); INDIA (98%); AUSTRALIA (79%); GERMANY (79%); KENYA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
508 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); BOXING (78%); EXERCISE & FITNESS (78%); SPORTS AWARDS (78%); WOMEN (78%); WOUNDS & INJURIES (78%); MENTORS & ROLE MODELS (76%); DRUGS IN SPORTS (73%); WEIGHTLIFTING (67%); NEGATIVE MISC NEWS (61%); SCANDALS (50%)\n\nGeographic: LOS ANGELES, CA, USA (78%); TOKYO, JAPAN (73%); MANIPUR, INDIA (59%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
509 \nSubject: WOMEN'S SPORTS (93%); OLYMPICS (91%); FIELD HOCKEY (90%); HISTORY (90%); SPORTS & RECREATION EVENTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); CELEBRITIES (78%); SUMMER OLYMPICS (78%)\n\nIndustry: CELEBRITIES (78%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (97%)\n\nLoad-Date: August 2, 2021\n\n\n
510 \nSubject: OLYMPICS (90%); BOXING (89%); SUMMER OLYMPICS (89%); JOURNALISM (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (77%); LEGISLATIVE BODIES (77%); EMOTIONS (73%); REGIONAL & LOCAL GOVERNMENTS (72%); WRITERS (71%); CABINET OFFICES (68%); GOVERNMENT & PUBLIC ADMINISTRATION (68%); HEADS OF STATE & GOVERNMENT (68%); GOVERNMENT ADVISORS & MINISTERS (63%); PRIME MINISTERS (63%)\n\nIndustry: MEDIA CONTENT (78%); WRITERS (71%); BUDGETS (50%); HIGHWAYS & STREETS (50%)\n\nPerson: NARENDRA MODI (79%); RAM NATH KOVIND (79%)\n\nGeographic: TOKYO, JAPAN (90%); ASSAM, INDIA (95%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
511 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ARCHERY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%)\n\nGeographic: TOKYO, JAPAN (90%); MUMBAI, MAHARASHTRA, INDIA (78%); INDIA (90%); JAPAN (78%); FRANCE (77%)\n\nLoad-Date: July 31, 2021\n\n\n
512 \nSubject: OLYMPICS (92%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SPORTS GOVERNING BODIES (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); SPORTS & RECREATION (78%); SPORTS FANS (78%); PHYSICAL EDUCATION (77%); REGIONAL & LOCAL GOVERNMENTS (72%); SURGERY & TRANSPLANTATION (68%); ORTHOPEDICS (67%); GOVERNMENT & PUBLIC ADMINISTRATION (65%)\n\nIndustry: ORTHOPEDICS (67%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); GUJARAT, INDIA (95%); MAHARASHTRA, INDIA (79%); WEST INDIA (79%); INDIA (97%); PAKISTAN (79%)\n\nLoad-Date: August 3, 2021\n\n\n
513 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); OLYMPICS (90%); PUBLIC HEALTH (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); INTERPERSONAL RELATIONSHIPS (89%); INTERVIEWS (89%); NON FICTION LITERATURE (89%); PANDEMICS (89%); BOXING (77%); COVID CORONAVIRUS (77%); COVID-19 CORONAVIRUS (77%); INFECTIOUS DISEASE (77%); SPORTS AWARDS (77%); ACTORS & ACTRESSES (68%); TELEHEALTH (67%); FILM (62%); MEDICINE & HEALTH (62%); SOCIAL MEDIA (61%); VISUAL ARTISTS (60%)\n\nIndustry: ACTORS & ACTRESSES (68%); TELEHEALTH (67%); FILM (62%); SOCIAL MEDIA (61%); VISUAL ARTISTS (60%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (74%); INDIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
514 \nSubject: ACTORS & ACTRESSES (90%); FIELD HOCKEY (90%); FILM (90%); WOMEN (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (76%)\n\nIndustry: ACTORS & ACTRESSES (90%); FILM (90%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); INDIA (94%)\n\nLoad-Date: August 3, 2021\n\n\n
515 \nSubject: EDITORIALS & OPINIONS (99%); WOMEN (92%); OLYMPICS (91%); WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GENDER & SEX DISCRIMINATION IN EMPLOYMENT (90%); GENDER EQUALITY (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); DISCRIMINATION (89%); TOURNAMENTS (89%); ETHICS (78%); GENDER & SEX DISCRIMINATION (78%); POLITICAL & SOCIAL IDEOLOGIES (78%); SEX & GENDER ISSUES (78%); SOCCER TOURNAMENTS (78%); SPORTS GOVERNING BODIES (78%); SPORTS REGULATION & POLICY (78%); EQUAL PAY (73%); OLYMPIC COMMITTEES (73%); SOCCER (73%); TRENDS & EVENTS (73%); WAGE DISCRIMINATION (72%); CONSERVATISM (70%); NEGATIVE SOCIETAL NEWS (69%); NEGATIVE NEWS (67%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (58%)\n\nIndustry: BUDGET CUTS (61%)\n\nGeographic: INDIA (94%); UNITED STATES (93%); CHINA (88%)\n\nLoad-Date: July 24, 2021\n\n\n
516 \nSubject: WRESTLING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (89%); TOURNAMENTS (89%); WOUNDS & INJURIES (87%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); SPORTS INJURIES (78%); WOMEN (78%); KNEE DISORDERS & INJURIES (66%)\n\nGeographic: TOKYO, JAPAN (59%); HARYANA, INDIA (73%); INDIA (93%); RUSSIAN FEDERATION (91%); ASIA (79%); CENTRAL ASIA (79%); JAPAN (79%); KAZAKHSTAN (79%); MONGOLIA (77%); EUROPE (71%); ESTONIA (57%); HUNGARY (57%); BULGARIA (53%); AZERBAIJAN (52%)\n\nLoad-Date: August 3, 2021\n\n\n
517 \nSubject: WOMEN'S SPORTS (91%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); DIWALI (79%); ACTORS & ACTRESSES (78%); SPORTS AWARDS (78%)\n\nIndustry: ACTORS & ACTRESSES (78%); MEDIA CONTENT (78%); MOTORCOACHES & BUSES (73%)\n\nPerson: SHAH RUKH KHAN (92%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); AUSTRALIA (91%); ARGENTINA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
518 \nSubject: PHOTO & VIDEO SHARING (91%); WOMEN'S SPORTS (91%); DIWALI (90%); FIELD HOCKEY (90%); FILM (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); FAMILY (76%); ACTORS & ACTRESSES (74%); INTERNET SOCIAL NETWORKING (72%)\n\nIndustry: PHOTO & VIDEO SHARING (91%); FILM (90%); MEDIA CONTENT (78%); ACTORS & ACTRESSES (74%); MOVIE FILMING (74%); INTERNET SOCIAL NETWORKING (72%)\n\nPerson: SHAH RUKH KHAN (93%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
519 \nSubject: WOMEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); INTERNET SOCIAL NETWORKING (78%); MEN'S SPORTS (78%); SOCIAL MEDIA (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); ATHLETES (73%)\n\nIndustry: CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (78%); SOCIAL MEDIA (78%)\n\nPerson: SHAH RUKH KHAN (94%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (96%); UNITED KINGDOM (58%)\n\nLoad-Date: August 6, 2021\n\n\n
520 \nSubject: WOMEN'S SPORTS (93%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); ATHLETES (89%); SPORTS AWARDS (89%); COACHES & TRAINERS (77%); TOURNAMENTS (77%); ENERGY SHORTAGES (69%)\n\nIndustry: ENERGY & UTILITIES (74%); POWER FAILURES (74%); ENERGY SHORTAGES (69%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (90%); HARYANA, INDIA (59%)\n\nLoad-Date: July 28, 2021\n\n\n
521 \nSubject: WOMEN'S SPORTS (92%); ATHLETES (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); WOMEN (90%); DISCRIMINATION (89%); SPORTS & RECREATION (89%); FAMILY (88%); NEGATIVE NEWS (86%); FEMINISM & WOMEN'S RIGHTS (78%); MEN'S SPORTS (78%); MENTORS & ROLE MODELS (78%); NEGATIVE PERSONAL NEWS (77%); HOUSEHOLD MANAGEMENT (75%); VOLLEYBALL (73%); GOLF (70%); GENDER & SEX DISCRIMINATION (69%); MANAGERS & SUPERVISORS (69%); SEXUAL HARASSMENT (64%); UNITED NATIONS (60%); UNITED NATIONS INSTITUTIONS (60%)\n\nGeographic: ODISHA, INDIA (79%); INDIA (94%); ARGENTINA (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 6, 2021\n\n\n
522 \nSubject: OLYMPICS (92%); TRACK & FIELD (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: BEIJING, CHINA (79%); LOS ANGELES, CA, USA (58%); INDIA (92%); CZECH REPUBLIC (54%)\n\nLoad-Date: August 7, 2021\n\n\n
523 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); 2012 LONDON SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WRESTLING (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS OFFICIATING (78%); WEIGHTLIFTING (63%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); LONDON, ENGLAND (57%); HARYANA, INDIA (90%); ASSAM, INDIA (73%); INDIA (94%); KAZAKHSTAN (79%)\n\nLoad-Date: August 5, 2021\n\n\n
524 \nSubject: ATHLETES (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SPORTS AWARDS (90%); WEAPONS & ARMS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: TOKYO, JAPAN (72%); NEW DELHI, INDIA (58%); INDIA (91%); GERMANY (75%); SERBIA (55%); IRAN, ISLAMIC REPUBLIC OF (54%)\n\nLoad-Date: July 25, 2021\n\n\n
525 \nSubject: ATHLETES (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SPORTS AWARDS (90%); WEAPONS & ARMS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: TOKYO, JAPAN (72%); NEW DELHI, INDIA (58%); INDIA (91%); GERMANY (75%); SERBIA (55%); IRAN, ISLAMIC REPUBLIC OF (54%)\n\nLoad-Date: July 25, 2021\n\n\n
526 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%)\n\nGeographic: AHMEDABAD, GUJARAT, INDIA (59%); ASSAM, INDIA (93%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
527 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CLIMATE CHANGE (90%); NEGATIVE NEWS (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); INTERVIEWS (78%); NEWS BRIEFS (78%); 2016 RIO SUMMER OLYMPICS (74%); MEN'S SPORTS (74%); SUMMER OLYMPICS (74%); ABUSE & NEGLECT (73%); DOMESTIC OFFENSES (72%); MARRIAGE (71%); WEDDINGS & ENGAGEMENTS (71%); WOMEN'S SPORTS (69%); HIP HOP CULTURE (66%); RAP MUSIC (66%); DOMESTIC VIOLENCE (65%); PETITIONS (65%)\n\nIndustry: MEDIA CONTENT (78%); HIP HOP CULTURE (66%)\n\nGeographic: HIMALAYAS (59%); INDIAN OCEAN (59%); INDIA (93%); ARGENTINA (79%); SERBIA (79%); NETHERLANDS (78%); UNITED KINGDOM (73%)\n\nLoad-Date: August 4, 2021\n\n\n
528 \nSubject: OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS AWARDS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION (78%); ARMIES (71%); DISTANCE LEARNING (70%); ELECTIONS & POLITICS (67%)\n\nIndustry: SPORT UTILITY VEHICLES (77%); ARMIES (71%); AIRLINES (66%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (58%); HARYANA, INDIA (79%); MANIPUR, INDIA (79%); PUNJAB, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
529 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%)\n\nGeographic: ASSAM, INDIA (93%); UTTAR PRADESH, INDIA (79%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
530 \nSubject: WOMEN'S SPORTS (94%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (90%); SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%); BUENOS AIRES, ARGENTINA (55%); CALIFORNIA, USA (73%); ARGENTINA (79%); UNITED STATES (78%)\n\nLoad-Date: August 4, 2021\n\n\n
531 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); COLLEGE & UNIVERSITY SPORTS (73%)\n\nIndustry: COLLEGE & UNIVERSITY SPORTS (73%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
532 \nSubject: SPORTS AWARDS (91%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); ARMIES (87%); WEAPONS & ARMS (69%)\n\nCompany: DAV (51%)\n\nIndustry: NAICS334417 ELECTRONIC CONNECTOR MANUFACTURING (51%); SIC5063 ELECTRICAL APPARATUS & EQUIPMENT (51%); ARMIES (87%); MEDIA CONTENT (78%)\n\nGeographic: BEIJING, CHINA (79%); PUNJAB, INDIA (91%); NORTH CENTRAL CHINA (77%); CHANDIGARH, INDIA (74%); RAJASTHAN, INDIA (59%); INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
533 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); ATHLETES (76%); SPORTS & RECREATION EVENTS (76%); SPORTS AWARDS (76%); MENTORS & ROLE MODELS (69%); EMOTIONS (67%)\n\nGeographic: TOKYO, JAPAN (88%); LOS ANGELES, CA, USA (77%); NEW DELHI, INDIA (74%); BERLIN, GERMANY (71%); KINKI, JAPAN (54%); INDIA (89%); JAPAN (78%); QATAR (72%)\n\nLoad-Date: August 2, 2021\n\n\n
534 \nSubject: WEIGHTLIFTING (94%); CELEBRITIES (90%); OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); INTERVIEWS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); ATHLETES (78%); TRENDS & EVENTS (78%); WOMEN'S SPORTS (78%); ACTORS & ACTRESSES (76%); TALKS & MEETINGS (76%); PHOTO & VIDEO SHARING (72%); PROFILES & BIOGRAPHIES (64%); DRAMA FILMS (60%)\n\nIndustry: CELEBRITIES (90%); ACTORS & ACTRESSES (76%); PHOTO & VIDEO SHARING (72%); COMPUTER NETWORKS (66%); INTERNET & WWW (66%); DRAMA FILMS (60%); MOVIE & VIDEO PRODUCTION (60%); MOVIE INDUSTRY (60%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); MANIPUR, INDIA (90%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
535 \nSubject: WRESTLING (92%); ATHLETES (90%); GRANDPARENTS (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); GRANDCHILDREN (77%); 2012 LONDON SUMMER OLYMPICS (72%); WATER RESOURCES (68%)\n\nIndustry: ENERGY & UTILITIES (88%); MEDIA CONTENT (78%); UNINTERRUPTIBLE POWER SUPPLIES (71%)\n\nGeographic: TOKYO, JAPAN (88%); LONDON, ENGLAND (79%); LOS ANGELES, CA, USA (79%); MOSCOW, RUSSIAN FEDERATION (73%); HARYANA, INDIA (79%); RUSSIAN FEDERATION (58%)\n\nLoad-Date: August 5, 2021\n\n\n
536 \nSubject: WOMEN'S SPORTS (91%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); DIWALI (79%); ACTORS & ACTRESSES (78%); SPORTS AWARDS (78%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); ACTORS & ACTRESSES (78%); MEDIA CONTENT (78%); MOTORCOACHES & BUSES (73%)\n\nPerson: SHAH RUKH KHAN (92%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); AUSTRALIA (91%); ARGENTINA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
537 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (79%); ASIA (69%); POLAND (53%)\n\nLoad-Date: August 4, 2021\n\n\n
538 \nSubject: ATHLETES (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); WRESTLING (89%); TOURNAMENTS (73%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%)\n\nGeographic: HARYANA, INDIA (92%); INDIA (93%); KAZAKHSTAN (79%)\n\nLoad-Date: August 5, 2021\n\n\n
539 \nSubject: SHOOTING SPORTS (91%); RANKINGS (90%); SPORTS AWARDS (90%); OLYMPICS (89%); SUMMER OLYMPICS (89%); WEAPONS & ARMS (89%); SPORTS & RECREATION (77%); 2012 LONDON SUMMER OLYMPICS (76%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (97%); CHINA (87%); KOREA, REPUBLIC OF (75%)\n\nLoad-Date: July 25, 2021\n\n\n
540 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (90%); EPIDEMICS (86%); SAFETY (86%); BOXING (78%); FIREARMS (78%); SPORTS AWARDS (78%); MARTIAL ARTS (73%); SCHOOL SPORTS (72%); PANDEMICS (69%); VACCINES (66%); CORONAVIRUSES (64%); COVID-19 CORONAVIRUS (64%); INFECTIOUS DISEASE (64%); SAFETY, ACCIDENTS & DISASTERS (64%); VIRUSES (63%); SOCIAL MEDIA (62%); WRITERS (60%)\n\nIndustry: MEDIA CONTENT (78%); VACCINES (66%); SOCIAL MEDIA (62%); WRITERS (60%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); HARYANA, INDIA (58%); INDIA (89%); JAPAN (73%)\n\nLoad-Date: July 24, 2021\n\n\n
541 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION (89%); TOURNAMENTS (89%); SPORTS AWARDS (78%)\n\nGeographic: ATLANTA, GA, USA (88%); HYDERABAD, ANDHRA PRADESH, INDIA (73%); SYDNEY, AUSTRALIA (72%); ODISHA, INDIA (73%); INDIA (95%); AUSTRALIA (92%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
542 \nSubject: INTERNET SOCIAL NETWORKING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); PLAGIARISM (90%); SPORTS AWARDS (90%); STATE & NATIONAL SYMBOLS (90%); SUMMER OLYMPICS (90%); MUSIC (89%); MUSIC COMPOSITION (76%)\n\nCompany: COCA-COLA CO (51%)\n\nTicker: KO (NYSE) (51%)\n\nIndustry: NAICS312111 SOFT DRINK MANUFACTURING (51%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (51%); INTERNET SOCIAL NETWORKING (92%); MEDIA CONTENT (78%); INTERNET & WWW (69%)\n\nGeographic: INDIA (91%)\n\nLoad-Date: August 2, 2021\n\n\n
543 \nSubject: OLYMPICS (91%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); REFEREES & UMPIRES (78%); SPORTS OFFICIATING (78%); 2012 LONDON SUMMER OLYMPICS (69%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: BEIJING, CHINA (79%); TAIPEI, TAIWAN (58%); LONDON, ENGLAND (56%); NORTH CENTRAL CHINA (79%); ASSAM, INDIA (73%); INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
544 \nSubject: OLYMPICS (90%); STADIUMS & ARENAS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); SUMMER OLYMPICS (78%); TERRITORIAL & NATIONAL BORDERS (78%); COACHES & TRAINERS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (93%); PAKISTAN (79%); UNITED KINGDOM (57%)\n\nLoad-Date: August 6, 2021\n\n\n
545 \nSubject: OLYMPICS (90%); PRIME MINISTERS (90%); SUMMER OLYMPICS (89%); TRACK & FIELD (89%); 2020 TOKYO SUMMER OLYMPICS (78%); HEADS OF STATE & GOVERNMENT (78%); SPORTS AWARDS (78%); ARMIES (75%); COVID CORONAVIRUS (72%); DEFENSE DEPARTMENTS (72%); GOVERNMENT ADVISORS & MINISTERS (72%); CAMPAIGNS & ELECTIONS (68%)\n\nIndustry: ARMIES (75%); DEFENSE DEPARTMENTS (72%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
546 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); WOMEN'S SPORTS (90%); SUMMER OLYMPICS (89%); EMOTIONS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); SOCCER TOURNAMENTS (75%)\n\nGeographic: EAST CHINA (74%); INDIA (93%); ASIA (90%); NETHERLANDS (79%)\n\nLoad-Date: August 8, 2021\n\n\n
547 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); COACHES & TRAINERS (78%); APPOINTMENTS (76%); CULTURE DEPARTMENTS (75%); GOVERNMENT ADVISORS & MINISTERS (75%); POLICE FORCES (74%); COVID CORONAVIRUS (71%); PHYSICAL THERAPY (66%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (92%); TOKYO, JAPAN (73%); INDIA (94%)\n\nLoad-Date: July 28, 2021\n\n\n
548 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); BASKETBALL (78%); CYCLING (78%); NEGATIVE NEWS (77%); TRENDS & EVENTS (77%); ATHLETES (73%); VOLLEYBALL (72%); TRACK & FIELD (66%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: TOKYO, JAPAN (90%); ATLANTA, GA, USA (79%); BEIJING, CHINA (79%); NORTH CENTRAL CHINA (79%); INDIA (92%); UNITED STATES (92%); CHINA (91%)\n\nLoad-Date: August 8, 2021\n\n\n
549 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS AWARDS (78%); MEN'S SPORTS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS & RECREATION (72%); SOCIAL MEDIA (71%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (71%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); HARYANA, INDIA (58%); INDIA (90%)\n\nLoad-Date: August 7, 2021\n\n\n
550 \nSubject: ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); CELEBRITIES (89%); FILM (89%); OLYMPICS (89%); SUMMER OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); INTERVIEWS (78%); PHOTO & VIDEO SHARING (78%); SPORTS & RECREATION EVENTS (78%); TRACK & FIELD (78%)\n\nCompany: TWITTER INC (85%)\n\nTicker: TWTR (NYSE) (85%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (85%); ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%); CELEBRITIES (89%); FILM (89%); PHOTO & VIDEO SHARING (78%)\n\nPerson: AKSHAY KUMAR (94%)\n\nGeographic: HARYANA, INDIA (79%); INDIA (91%)\n\nLoad-Date: August 9, 2021\n\n\n
551 \nSubject: OLYMPICS (91%); CRICKET (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); ATHLETES (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
552 \nSubject: WOMEN'S SPORTS (92%); CELEBRITIES (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); SELFIES (90%); SOCIAL MEDIA (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); INTERNET SOCIAL NETWORKING (78%); PHOTO & VIDEO SHARING (78%); STADIUMS & ARENAS (78%); FILM DIRECTORS (77%); ATHLETES (73%); MOVIE REVIEWS (68%)\n\nIndustry: CELEBRITIES (90%); SELFIES (90%); SOCIAL MEDIA (90%); INTERNET SOCIAL NETWORKING (78%); PHOTO & VIDEO SHARING (78%); FILM DIRECTORS (77%); MOVIE REVIEWS (68%)\n\nPerson: SHAH RUKH KHAN (94%)\n\nGeographic: INDIA (93%); ARGENTINA (92%); AUSTRALIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
553 \nSubject: OLYMPICS (91%); COACHES & TRAINERS (90%); COVID CORONAVIRUS (90%); TABLE TENNIS (90%); SPORTS & RECREATION EVENTS (89%); BADMINTON (78%); COVID-19 CORONAVIRUS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); PHOTO & VIDEO SHARING (77%); ATHLETES (73%); INFECTIOUS DISEASE (73%); SELFIES (66%)\n\nIndustry: PHOTO & VIDEO SHARING (77%); SELFIES (66%)\n\nPerson: NOVAK DJOKOVIC (58%)\n\nGeographic: TOKYO, JAPAN (92%)\n\nLoad-Date: July 23, 2021\n\n\n
554 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); CULTURE DEPARTMENTS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (78%); REGIONAL & LOCAL GOVERNMENTS (78%); SPORTS AWARDS (78%); SPORTS GOVERNING BODIES (78%); STADIUMS & ARENAS (78%); BADMINTON (73%); PHYSICAL FITNESS (73%); POLICE FORCES (73%); SPORTS REGULATION & POLICY (73%)\n\nGeographic: HYDERABAD, ANDHRA PRADESH, INDIA (58%); TELANGANA, INDIA (93%); INDIA (92%)\n\nLoad-Date: August 6, 2021\n\n\n
555 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); BOXING (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (89%); WOMEN'S SPORTS (89%); PRESS CONFERENCES (78%); TOURNAMENTS (78%); TALKS & MEETINGS (73%)\n\nGeographic: NEW DELHI, INDIA (89%); TAIPEI, TAIWAN (88%); INDIA (93%)\n\nLoad-Date: July 30, 2021\n\n\n
556 \nSubject: OLYMPICS (91%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (89%); WOMEN'S SPORTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); WOMEN (78%); OLYMPIC COMMITTEES (77%); SPORTS GOVERNING BODIES (77%); TRIATHLONS (77%); 2012 LONDON SUMMER OLYMPICS (72%); EXERCISE & FITNESS (62%); SOCIAL MEDIA (61%); VIRAL VIDEOS (61%)\n\nOrganization: INTERNATIONAL OLYMPIC COMMITTEE (57%)\n\nIndustry: SOCIAL MEDIA (61%); VIRAL VIDEOS (61%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%); USAIN BOLT (79%); NAOMI OSAKA (78%)\n\nGeographic: TOKYO, JAPAN (91%); LONDON, ENGLAND (55%); INDIA (96%)\n\nLoad-Date: July 30, 2021\n\n\n
557 \nSubject: WRESTLING (91%); ATHLETES (90%); OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); WRITERS (60%)\n\nIndustry: MEDIA CONTENT (78%); WRITERS (60%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (89%); HARYANA, INDIA (93%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
558 \nSubject: OLYMPICS (89%); MEN'S SPORTS (78%); TOURNAMENTS (78%); ATHLETES (72%); SUMMER OLYMPICS (72%); 2012 LONDON SUMMER OLYMPICS (67%)\n\nGeographic: TAIPEI, TAIWAN (91%); TOKYO, JAPAN (71%); INDONESIA (90%); UNITED KINGDOM (58%)\n\nLoad-Date: August 1, 2021\n\n\n
559 \nSubject: ARMIES (94%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); WEAPONS & ARMS (77%); DEFENSE DEPARTMENTS (72%)\n\nIndustry: ARMIES (94%); MEDIA CONTENT (78%); DEFENSE DEPARTMENTS (72%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (95%)\n\nLoad-Date: August 8, 2021\n\n\n
560 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS OFFICIATING (77%); TOURNAMENTS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: KAZAKHSTAN (71%)\n\nLoad-Date: August 7, 2021\n\n\n
561 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (89%); GOVERNMENT ADVISORS & MINISTERS (86%); FAMILY (76%); DANCE (75%); EMOTIONS (74%)\n\nCompany: DAV (53%)\n\nIndustry: NAICS334417 ELECTRONIC CONNECTOR MANUFACTURING (53%); SIC5063 ELECTRICAL APPARATUS & EQUIPMENT (53%)\n\nGeographic: BEIJING, CHINA (78%); MUMBAI, MAHARASHTRA, INDIA (58%); CHANDIGARH, INDIA (93%); HARYANA, INDIA (93%); PUNJAB, INDIA (79%); NORTH CENTRAL CHINA (78%); INDIA (95%); CHINA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
562 \nSubject: OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (90%); VOLLEYBALL (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION (78%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (90%)\n\nLoad-Date: August 2, 2021\n\n\n
563 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); COACHES & TRAINERS (90%); SHOOTING SPORTS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (89%); 2016 RIO SUMMER OLYMPICS (78%); FIREARMS (78%); INVESTIGATIONS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); SPORTS INSTRUCTION (78%); TOURNAMENTS (77%); NEGATIVE PERSONAL NEWS (73%); DEMOGRAPHIC GROUPS (72%); ASSOCIATIONS & ORGANIZATIONS (70%)\n\nGeographic: TOKYO, JAPAN (90%); ZAGREB, CROATIA (66%); NEW DELHI, INDIA (58%); MADHYA PRADESH, INDIA (58%); INDIA (93%); CROATIA (90%)\n\nLoad-Date: July 28, 2021\n\n\n
564 \nSubject: EXERCISE & FITNESS (93%); ACTORS & ACTRESSES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); 2020 TOKYO SUMMER OLYMPICS (89%); PHYSICAL FITNESS (78%); SOCIAL MEDIA (78%); FILM (77%)\n\nIndustry: ACTORS & ACTRESSES (90%); INTERNET VIDEO (78%); SOCIAL MEDIA (78%); FILM (77%); MOVIE RELEASE DATES (76%)\n\nGeographic: INDIA (91%)\n\nLoad-Date: July 26, 2021\n\n\n
565 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); CULTURE DEPARTMENTS (78%); SPORTS & RECREATION EVENTS (78%); CHILDREN (76%); EXECUTIVES (74%); SPORTS & RECREATION (71%); EMPLOYMENT SEARCH (53%)\n\nGeographic: ANDHRA PRADESH, INDIA (74%); INDIA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
566 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (89%); SUMMER OLYMPICS (89%); SWIMMING (89%); SPORTS & RECREATION (77%); SPORTS AWARDS (77%); CIVIL WAR (76%); NEGATIVE NEWS (76%); RUNNING (75%); COUPS (71%); ARMED FORCES (56%)\n\nIndustry: ARMED FORCES (56%)\n\nPerson: DESI BOUTERSE (79%)\n\nGeographic: BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); TUNIS, TUNISIA (74%); SEOUL, KOREA, REPUBLIC OF (57%); CALIFORNIA, USA (79%); NORTH CENTRAL CHINA (79%); TUNISIA (93%); AUSTRALIA (92%); SURINAME (92%); INDIA (89%); AFRICA (79%); SOUTH AMERICA (79%); FRANCE (53%)\n\nLoad-Date: July 25, 2021\n\n\n
567 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (89%); SPORTS & RECREATION (89%); WRESTLING (89%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (77%); AWARDS & PRIZES (76%); CELEBRITIES (75%); 2012 LONDON SUMMER OLYMPICS (73%); EXERCISE & FITNESS (65%); WEIGHTLIFTING (51%)\n\nIndustry: CELEBRITIES (75%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); HARYANA, INDIA (73%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
568 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); ATHLETES (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); EMOTIONS (77%); STADIUMS & ARENAS (77%)\n\nIndustry: TELEVISION EQUIPMENT (69%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (57%)\n\nLoad-Date: August 2, 2021\n\n\n
569 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); ATHLETES (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); EMOTIONS (77%); STADIUMS & ARENAS (77%)\n\nIndustry: TELEVISION EQUIPMENT (69%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (57%)\n\nLoad-Date: August 2, 2021\n\n\n
570 \nSubject: TENNIS (94%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); SPORTS GOVERNING BODIES (90%); TENNIS TOURNAMENTS (78%); ACCREDITATION (73%); COVID CORONAVIRUS (70%)\n\nGeographic: TOKYO, JAPAN (73%); GERMANY (77%)\n\nLoad-Date: July 23, 2021\n\n\n
571 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (71%); ASSOCIATIONS & ORGANIZATIONS (70%)\n\nCompany: MAHINDRA & MAHINDRA LTD (58%)\n\nTicker: MHID (LSE) (58%); M&M (NSE) (58%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (58%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (58%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (58%); AIRLINES (68%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (58%); HARYANA, INDIA (73%); MANIPUR, INDIA (73%); PUNJAB, INDIA (73%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
572 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); OLYMPIC COMMITTEES (73%)\n\nGeographic: TOKYO, JAPAN (91%); HARYANA, INDIA (58%); RUSSIAN FEDERATION (90%); BELARUS (79%)\n\nLoad-Date: August 5, 2021\n\n\n
573 \nSubject: WEIGHTLIFTING (93%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%); SPORTS INJURIES (78%); WOMEN'S SPORTS (78%); WOUNDS & INJURIES (76%); BACK DISORDERS & INJURIES (71%); MUSCULOSKELETAL DISORDERS & INJURIES (71%)\n\nGeographic: MANIPUR, INDIA (58%); INDIA (91%)\n\nLoad-Date: July 28, 2021\n\n\n
574 \nSubject: SPORTS AWARDS (90%); FIELD HOCKEY (89%); OLYMPICS (89%); SPORTS & RECREATION (78%); COVID CORONAVIRUS (77%); COVID-19 CORONAVIRUS (77%); COVID-19 CORONAVIRUS REGULATION & POLICY (77%); INFECTIOUS DISEASE (77%); SPORTS & RECREATION EVENTS (76%); SUMMER OLYMPICS (76%); SPORTING GOODS (75%)\n\nIndustry: SPORTING GOODS (75%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); INDIA (90%); AUSTRALIA (79%); GERMANY (79%); POLAND (70%)\n\nLoad-Date: August 5, 2021\n\n\n
575 \nSubject: WEAPONS & ARMS (98%); 2020 TOKYO SUMMER OLYMPICS (90%); SHOOTING SPORTS (90%); COACHES & TRAINERS (89%); OLYMPICS (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); FIREARMS (78%); TOURNAMENTS (74%); APPOINTMENTS (72%)\n\nOrganization: NATIONAL RIFLE ASSOCIATION OF AMERICA (57%)\n\nGeographic: TOKYO, JAPAN (91%); NEW DELHI, INDIA (73%); INDIA (94%); CROATIA (78%)\n\nLoad-Date: July 27, 2021\n\n\n
576 \nSubject: WEIGHTLIFTING (93%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (89%); WOMEN'S SPORTS (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS INJURIES (78%); EMOTIONS (77%); WOUNDS & INJURIES (76%); BACK DISORDERS & INJURIES (71%); MUSCULOSKELETAL DISORDERS & INJURIES (71%); PRIME MINISTERS (60%)\n\nGeographic: AHMEDABAD, GUJARAT, INDIA (59%); MANIPUR, INDIA (58%); INDIA (94%)\n\nLoad-Date: July 28, 2021\n\n\n
577 \nSubject: GOVERNMENT & PUBLIC ADMINISTRATION (90%); OLYMPICS (90%); PRIME MINISTERS (90%); HEADS OF STATE & GOVERNMENT (89%); INTERNET SOCIAL NETWORKING (89%); STADIUMS & ARENAS (89%); BLOGS & MESSAGE BOARDS (78%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (75%); SUMMER OLYMPICS (75%); MOUNTAIN CLIMBING (73%); ELECTIONS & POLITICS (72%); SOCIAL MEDIA (71%)\n\nIndustry: INTERNET SOCIAL NETWORKING (89%); BLOGS & MESSAGE BOARDS (78%); SHORT FORM CONTENT (71%); SOCIAL MEDIA (71%)\n\nPerson: NARENDRA MODI (93%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); AHMEDABAD, GUJARAT, INDIA (58%); INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
578 \nSubject: ATHLETES (90%); SPORTS & RECREATION (90%); COMMUNISM (89%); GYMNASTICS (89%); OLYMPICS (89%); SOCIALISM (79%); ABUSE & NEGLECT (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (77%); CHILDREN, ADOLESCENTS & TEENS (76%); TENNIS (72%); MENTAL HEALTH (62%); CHILDREN'S MARKET (61%)\n\nCompany: BEAM GLOBAL (64%)\n\nTicker: BEEM (NASDAQ) (64%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (64%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (64%); EDUCATIONAL SERVICES (78%); CHILDREN'S MARKET (61%)\n\nGeographic: ROMANIA (93%); EUROPE (79%); EASTERN EUROPE (58%)\n\nLoad-Date: July 31, 2021\n\n\n
579 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); STADIUMS & ARENAS (78%); 2016 RIO SUMMER OLYMPICS (77%); MEN'S SPORTS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); SUMMER OLYMPICS (77%); SPORTS & RECREATION (73%)\n\nGeographic: TOKYO, JAPAN (88%); NEW DELHI, INDIA (74%); INDIA (94%); GERMANY (92%); NETHERLANDS (92%); UNITED KINGDOM (78%); JAPAN (58%)\n\nLoad-Date: July 31, 2021\n\n\n
580 \nSubject: EDITORIALS & OPINIONS (99%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (89%); WOMEN'S SPORTS (89%); CULTURE DEPARTMENTS (78%); RUNNING (78%); SPORTS AWARDS (78%); HEADS OF STATE & GOVERNMENT (76%); 2012 LONDON SUMMER OLYMPICS (73%); PANDEMICS (73%); TRACK & FIELD (73%); ELECTIONS & POLITICS (71%); GOVERNMENT ADVISORS & MINISTERS (71%); POLITICS (71%); PRIME MINISTERS (71%)\n\nIndustry: BUDGETS (71%)\n\nGeographic: LONDON, ENGLAND (72%); ASSAM, INDIA (79%); ODISHA, INDIA (79%); INDIA (98%); CHINA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
581 \nSubject: ATHLETES (91%); OLYMPICS (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SPORTS & RECREATION EVENTS (78%); SPORTS INJURIES (78%); 2016 RIO SUMMER OLYMPICS (76%); HEART DISEASE (71%); SELF IMPROVEMENT (71%); PHOTO & VIDEO SHARING (68%); BIOGRAPHICAL LITERATURE (62%); FICTION LITERATURE (62%); KNEE DISORDERS & INJURIES (61%); WOUNDS & INJURIES (61%); PROFILES & BIOGRAPHIES (50%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); PHOTO & VIDEO SHARING (68%)\n\nGeographic: KERALA, INDIA (78%); INDIA (92%)\n\nLoad-Date: August 6, 2021\n\n\n
582 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); TRACK & FIELD (90%); MENTORS & ROLE MODELS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION FACILITIES & VENUES (77%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); SPORTS AWARDS (76%); GEOPHYSICAL EVENTS (57%)\n\nGeographic: HARYANA, INDIA (73%); INDIA (91%)\n\nLoad-Date: August 8, 2021\n\n\n
583 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); TRACK & FIELD (90%); MENTORS & ROLE MODELS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION FACILITIES & VENUES (77%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); SPORTS AWARDS (76%); GEOPHYSICAL EVENTS (57%)\n\nGeographic: HARYANA, INDIA (73%); INDIA (91%)\n\nLoad-Date: August 8, 2021\n\n\n
584 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); FIELD HOCKEY (78%); SPORTS GOVERNING BODIES (78%); CRICKET (71%); GOVERNMENT ADVISORS & MINISTERS (71%)\n\nCompany: MAHINDRA & MAHINDRA LTD (58%)\n\nTicker: MHID (LSE) (58%); M&M (NSE) (58%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (58%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (58%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (58%); AIRLINES (68%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (58%); HARYANA, INDIA (73%); MANIPUR, INDIA (73%); PUNJAB, INDIA (73%); INDIA (93%)\n\nLoad-Date: August 9, 2021\n\n\n
585 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); CULTURE DEPARTMENTS (76%); GOVERNMENT ADVISORS & MINISTERS (76%); MEN (73%); SOCIAL MEDIA (70%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (70%)\n\nGeographic: PUNJAB, INDIA (90%); INDIA (91%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
586 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SPORTING GOODS (77%); SUMMER OLYMPICS (76%); TOURNAMENTS (76%); COVID CORONAVIRUS (72%); COVID-19 CORONAVIRUS (72%)\n\nIndustry: SPORTING GOODS (77%); MEDIA CONTENT (73%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (74%); INDIA (90%)\n\nLoad-Date: August 5, 2021\n\n\n
587 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (79%); CHEERLEADING (78%)\n\nGeographic: INDIA (89%)\n\nLoad-Date: August 5, 2021\n\n\n
588 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); RANKINGS (76%); MENTORS & ROLE MODELS (73%)\n\nGeographic: KAZAKHSTAN (87%); KYRGYZSTAN (87%); AZERBAIJAN (71%); SENEGAL (54%)\n\nLoad-Date: August 7, 2021\n\n\n
589 \nSubject: OLYMPICS (92%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); EXECUTIVES (89%); SPORTS & RECREATION (89%); SPORTS BUSINESS (89%); SPORTS MARKETING (89%); 2020 TOKYO SUMMER OLYMPICS (78%); BRAND EQUITY (78%); BRANDING (78%); CELEBRITIES (78%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WEAPONS & ARMS (68%); ARMIES (63%); GOVERNMENT & PUBLIC ADMINISTRATION (50%)\n\nCompany: MAHINDRA & MAHINDRA LTD (84%)\n\nTicker: MHID (LSE) (84%); M&M (NSE) (84%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (84%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (84%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (84%); SPORTS MARKETING (89%); BRAND EQUITY (78%); BRANDING (78%); CELEBRITIES (78%); SPONSORSHIP (78%); PRODUCT ENDORSEMENTS (77%); ARMIES (63%)\n\nGeographic: NEW DELHI, INDIA (90%); BEIJING, CHINA (79%); CHENNAI, TAMIL NADU, INDIA (73%); NORTH CENTRAL CHINA (79%); INDIA (96%)\n\nLoad-Date: August 8, 2021\n\n\n
590 \nSubject: SPORTS FANS (90%); CRICKET (89%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%)\n\nGeographic: INDIA (93%); ENGLAND (79%); BELGIUM (54%)\n\nLoad-Date: August 3, 2021\n\n\n
591 \nSubject: SPORTS FANS (90%); CRICKET (89%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (79%); INDIA (93%); ENGLAND (79%); BELGIUM (54%)\n\nLoad-Date: August 3, 2021\n\n\n
592 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); PHYSICAL THERAPY (90%); WOUNDS & INJURIES (89%); MEN'S SPORTS (79%); SPORTS & RECREATION EVENTS (79%); WOMEN'S SPORTS (79%); COACHES & TRAINERS (78%); PHYSICAL EDUCATION (78%); CRICKET (77%); SPORTS & RECREATION (77%); SPORTS INJURIES (77%); CERTIFICATES, DEGREES & DIPLOMAS (73%)\n\nGeographic: TOKYO, JAPAN (71%); CHENNAI, TAMIL NADU, INDIA (58%); TAMIL NADU, INDIA (78%); INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
593 \nSubject: SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); ATHLETES (89%); FIELD HOCKEY (89%); OLYMPICS (89%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); SUMMER OLYMPICS (76%); SPORTS & RECREATION (73%); WOMEN (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (90%); SEOUL, KOREA, REPUBLIC OF (57%); INDIA (94%); JAPAN (91%); UNITED KINGDOM (90%); NETHERLANDS (78%); GERMANY (71%); BELGIUM (67%)\n\nLoad-Date: July 30, 2021\n\n\n
594 \nSubject: CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); NEGATIVE PERSONAL NEWS (90%); ARRESTS (89%); ABUSE & NEGLECT (78%); WOMEN'S SPORTS (78%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nLoad-Date: August 6, 2021\n\n\n
595 \nSubject: ARMIES (91%); SPORTS AWARDS (91%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); PHOTO & VIDEO SHARING (78%); TRENDS & EVENTS (77%)\n\nCompany: DAV (54%)\n\nIndustry: NAICS334417 ELECTRONIC CONNECTOR MANUFACTURING (54%); SIC5063 ELECTRICAL APPARATUS & EQUIPMENT (54%); ARMIES (91%); PHOTO & VIDEO SHARING (78%)\n\nGeographic: BEIJING, CHINA (79%); TOKYO, JAPAN (72%); PUNJAB, INDIA (91%); NORTH CENTRAL CHINA (79%); CHANDIGARH, INDIA (59%); INDIA (97%)\n\nLoad-Date: August 7, 2021\n\n\n
596 \nSubject: 2016 RIO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); ATHLETES (78%); AWARDS & PRIZES (78%); EMOTIONS (78%); SPORTS & RECREATION EVENTS (78%); SOCIAL MEDIA (69%); ANNIVERSARIES (56%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); INTERNET VIDEO (69%); SOCIAL MEDIA (69%)\n\nGeographic: TOKYO, JAPAN (52%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
597 \nSubject: SPORTS & RECREATION (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); RUNNING (89%); FIELD HOCKEY (79%); BASKETBALL (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (78%); TRENDS & EVENTS (78%); WOMEN'S SPORTS (78%); BASEBALL (73%); TABLE TENNIS (73%); TRACK & FIELD (73%); WRESTLING (73%)\n\nPerson: KEVIN DURANT (79%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); INDIA (90%); ITALY (66%); JAPAN (58%); UNITED KINGDOM (57%); QATAR (52%)\n\nLoad-Date: August 8, 2021\n\n\n
598 \nSubject: TERRITORIAL & NATIONAL BORDERS (91%); FIELD HOCKEY (89%); OLYMPICS (89%); WOMEN'S SPORTS (89%); NEWS BRIEFS (78%); TALKS & MEETINGS (77%); GOVERNMENT & PUBLIC ADMINISTRATION (76%); INTERNET SOCIAL NETWORKING (76%); 2020 TOKYO SUMMER OLYMPICS (75%); COACHES & TRAINERS (75%); PRIME MINISTERS (75%); REFEREES & UMPIRES (75%); SPORTS & RECREATION EVENTS (75%); SPORTS OFFICIATING (75%); SUMMER OLYMPICS (75%); PARENT COMPANIES (73%); PRESS CONFERENCES (73%); PUBLIC HEALTH ADMINISTRATION (72%); VACCINES (72%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (71%); GOVERNMENT ADVISORS & MINISTERS (71%); HEALTH DEPARTMENTS (71%); INFECTIOUS DISEASE (71%); HEADS OF STATE & GOVERNMENT (70%); SPORTS & RECREATION (70%); WRESTLING (70%); MOVIE REVIEWS (69%)\n\nCompany: FACEBOOK INC (53%)\n\nTicker: FB (NASDAQ) (53%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (53%); MEDIA CONTENT (78%); INTERNET SOCIAL NETWORKING (76%); VACCINES (72%); HEALTH DEPARTMENTS (71%); MOTORCYCLES (70%); MOVIE REVIEWS (69%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: ASSAM, INDIA (90%); MEGHALAYA, INDIA (90%); INDIA (93%)\n\nLoad-Date: August 6, 2021\n\n\n
599 \nSubject: WOMEN'S SPORTS (93%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION FACILITIES & VENUES (78%); NEGATIVE MISC NEWS (67%)\n\nIndustry: SPONSORSHIP (73%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); ODISHA, INDIA (73%); INDIA (92%); UNITED KINGDOM (90%)\n\nLoad-Date: August 7, 2021\n\n\n
600 \nSubject: BOXING (92%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); MARTIAL ARTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); MIXED MARTIAL ARTS (78%); SPORTS FANS (78%); SPORTS INSTRUCTION (78%); WEIGHTLIFTING (78%); SPORTS & RECREATION FACILITIES & VENUES (73%); PRESS CONFERENCES (50%)\n\nGeographic: ASSAM, INDIA (92%); MANIPUR, INDIA (79%); INDIA (88%)\n\nLoad-Date: July 31, 2021\n\n\n
601 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); GOLF TOURNAMENTS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); SUMMER OLYMPICS (89%); WEAPONS & ARMS (89%); FIELD HOCKEY (79%); MEN'S SPORTS (78%); SHOOTING SPORTS (78%); SPORTS FANS (73%); SOCCER (72%); EMOTIONS (70%)\n\nGeographic: INDIA (92%); AUSTRALIA (79%); KOREA, REPUBLIC OF (78%)\n\nLoad-Date: July 29, 2021\n\n\n
602 \nSubject: OLYMPICS (91%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (89%); WRESTLING (89%); SPORTS AWARDS (78%); 2012 LONDON SUMMER OLYMPICS (73%)\n\nGeographic: HARYANA, INDIA (79%); INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
603 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); INTERVIEWS (78%); SOCCER TOURNAMENTS (78%); TOURNAMENTS (78%); WOMEN'S SPORTS (78%); FAMILY (77%); GRANDCHILDREN (77%); GRANDPARENTS (77%); EMOTIONS (73%); WOMEN (73%)\n\nGeographic: NEW DELHI, INDIA (79%); TOKYO, JAPAN (73%); PUNJAB, INDIA (90%); CHANDIGARH, INDIA (89%); INDIA (95%); GERMANY (92%); NETHERLANDS (79%)\n\nLoad-Date: August 5, 2021\n\n\n
604 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TALKS & MEETINGS (90%); DELAYS & POSTPONEMENTS (89%); OLYMPIC COMMITTEES (89%); TRENDS & EVENTS (89%); AGREEMENTS (78%); MEN'S SPORTS (78%); SOCIAL DISTANCING (78%); SPORTS GOVERNING BODIES (78%); STADIUMS & ARENAS (78%); ASSOCIATIONS & ORGANIZATIONS (77%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (94%); JAPAN (92%)\n\nLoad-Date: July 22, 2021\n\n\n
605 \nSubject: ARRESTS (90%); FIELD HOCKEY (90%); NEGATIVE PERSONAL NEWS (90%); CRIME, LAW ENFORCEMENT & CORRECTIONS (89%); DISORDERLY CONDUCT (77%); POLICE MISCONDUCT (77%); STADIUMS & ARENAS (77%); WOMEN'S SPORTS (77%); SUMMER OLYMPICS (70%); POLICE FORCES (69%)\n\nGeographic: ARGENTINA (79%); INDIA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
606 \nSubject: SCHOOL SPORTS (89%); SPORTS & RECREATION EVENTS (89%); STADIUMS & ARENAS (89%); SUMMER OLYMPICS (89%); TOURNAMENTS (88%); COACHES & TRAINERS (78%); GLOBALIZATION (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); TABLE TENNIS (78%); CAPITAL EXPENDITURES (75%); GOVERNMENT & PUBLIC ADMINISTRATION (75%); CONSTRUCTION SPENDING (73%); EDUCATION & TRAINING (72%); NEGATIVE NEWS (72%); SCHOOL ATHLETIC STAFF (72%); STUDENTS & STUDENT LIFE (72%); CRICKET (70%); PUBLIC FINANCE (70%); EXERCISE & FITNESS (65%); POVERTY & HOMELESSNESS (55%)\n\nIndustry: TRANSPORTATION INFRASTRUCTURE (74%); CONSTRUCTION SPENDING (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (79%); WEST BENGAL, INDIA (79%); INDIA (93%)\n\nLoad-Date: August 6, 2021\n\n\n
607 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (77%); ATHLETES (72%); MEN'S SPORTS (72%)\n\nGeographic: GERMANY (94%); INDIA (92%)\n\nLoad-Date: August 5, 2021\n\n\n
608 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); PHYSICAL THERAPY (90%); WOUNDS & INJURIES (89%); MEN'S SPORTS (79%); SPORTS & RECREATION EVENTS (79%); WOMEN'S SPORTS (79%); COACHES & TRAINERS (78%); PHYSICAL EDUCATION (78%); CRICKET (77%); SPORTS & RECREATION (77%); SPORTS INJURIES (77%); CERTIFICATES, DEGREES & DIPLOMAS (73%)\n\nGeographic: TOKYO, JAPAN (71%); CHENNAI, TAMIL NADU, INDIA (58%); TAMIL NADU, INDIA (78%); INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
609 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TALKS & MEETINGS (90%); DELAYS & POSTPONEMENTS (89%); OLYMPIC COMMITTEES (89%); TRENDS & EVENTS (89%); AGREEMENTS (78%); MEN'S SPORTS (78%); SOCIAL DISTANCING (78%); SPORTS GOVERNING BODIES (78%); STADIUMS & ARENAS (78%); ASSOCIATIONS & ORGANIZATIONS (77%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (94%); JAPAN (92%)\n\nLoad-Date: July 22, 2021\n\n\n
610 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); EMOTIONS (89%); SPORTS & RECREATION (78%); WOMEN (78%); WOMEN'S SPORTS (78%); 2016 RIO SUMMER OLYMPICS (76%); SPORTS & RECREATION EVENTS (76%); WRESTLING (75%); WEIGHTLIFTING (68%)\n\nGeographic: TOKYO, JAPAN (89%); INDIA (79%)\n\nLoad-Date: August 1, 2021\n\n\n
611 \nSubject: MEN'S SPORTS (95%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (58%); INDIA (95%); GERMANY (93%); MEXICO (51%)\n\nLoad-Date: August 5, 2021\n\n\n
612 \nSubject: 2020 TOKYO SUMMER OLYMPICS (91%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TALKS & MEETINGS (90%); DELAYS & POSTPONEMENTS (89%); OLYMPIC COMMITTEES (89%); TRENDS & EVENTS (89%); AGREEMENTS (78%); MEN'S SPORTS (78%); SOCIAL DISTANCING (78%); SPORTS GOVERNING BODIES (78%); STADIUMS & ARENAS (78%); ASSOCIATIONS & ORGANIZATIONS (76%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (94%); JAPAN (92%)\n\nLoad-Date: July 22, 2021\n\n\n
613 \nSubject: EMOTIONS (90%); WOMEN'S SPORTS (90%); OLYMPICS (89%); MEN'S SPORTS (78%); TOURNAMENTS (78%); WOMEN (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS REGULATION & POLICY (72%); SUMMER OLYMPICS (72%); GOVERNMENT ADVISORS & MINISTERS (64%)\n\nGeographic: TOKYO, JAPAN (90%); JHARKHAND, INDIA (92%); INDIA (96%); ARGENTINA (92%); BELGIUM (55%)\n\nLoad-Date: August 4, 2021\n\n\n
614 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (77%); ATHLETES (72%); MEN'S SPORTS (72%)\n\nGeographic: GERMANY (94%); INDIA (90%)\n\nLoad-Date: August 5, 2021\n\n\n
615 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); ATHLETES (89%); RUNNING (89%); SUMMER OLYMPICS (89%); WOMEN (89%); 2016 RIO SUMMER OLYMPICS (78%); LIVING CONDITIONS (78%); TRACK & FIELD (78%); TRENDS (78%); TRENDS & EVENTS (78%); WOMEN'S SPORTS (78%); COACHES & TRAINERS (73%); NUTRITION (73%); WEIGHTLIFTING (70%); CELEBRITIES (66%)\n\nIndustry: FRUITS & VEGETABLES (72%); CELEBRITIES (66%); PORK (66%)\n\nGeographic: LOS ANGELES, CA, USA (79%); KERALA, INDIA (90%); CALIFORNIA, USA (79%); INDIA (97%); UNITED STATES (90%); ROMANIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
616 \nSubject: OLYMPICS (92%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BRANDING (89%); EXECUTIVES (89%); SPORTS BUSINESS (89%); SPORTS MARKETING (89%); 2020 TOKYO SUMMER OLYMPICS (78%); CELEBRITIES (78%); PROFESSIONAL SPORTS (78%); TRACK & FIELD (78%); BRAND EQUITY (77%); SOCCER (73%); WEAPONS & ARMS (68%); ARMIES (63%); ELECTRONIC COMMERCE (50%); GOVERNMENT & PUBLIC ADMINISTRATION (50%)\n\nCompany: MAHINDRA & MAHINDRA LTD (84%)\n\nTicker: MHID (LSE) (84%); M&M (NSE) (84%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (84%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (84%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (84%); PRODUCT ENDORSEMENTS (90%); BRANDING (89%); SPORTS MARKETING (89%); CELEBRITIES (78%); BRAND EQUITY (77%); CONSUMER ELECTRONICS (77%); SPONSORSHIP (77%); ARMIES (63%); ELECTRONIC COMMERCE (50%)\n\nGeographic: NEW DELHI, INDIA (90%); BEIJING, CHINA (79%); CHENNAI, TAMIL NADU, INDIA (78%); NORTH CENTRAL CHINA (79%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
617 \nSubject: ATHLETES (90%); DIWALI (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (89%); GRANDPARENTS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (77%); 2012 LONDON SUMMER OLYMPICS (75%); ECONOMIC CRISIS (60%)\n\nGeographic: LOS ANGELES, CA, USA (79%); LONDON, ENGLAND (70%); CHANDIGARH, INDIA (92%); HARYANA, INDIA (79%); INDIA (92%); KAZAKHSTAN (79%)\n\nLoad-Date: August 4, 2021\n\n\n
618 \nSubject: OLYMPICS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); TRACK & FIELD (73%); SOCIAL DISTANCING (66%)\n\nIndustry: HOTELS & MOTELS (53%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (74%); INDIA (92%); JAPAN (88%)\n\nLoad-Date: August 9, 2021\n\n\n
619 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); PRIME MINISTERS (78%); SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: NEW DELHI, INDIA (89%); BELGIUM (90%); UNITED KINGDOM (78%)\n\nLoad-Date: August 3, 2021\n\n\n
620 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); SUMMER OLYMPICS (89%); ATHLETES (76%); COACHES & TRAINERS (76%); WOMEN'S SPORTS (76%); TRENDS & EVENTS (75%); SHOOTING SPORTS (73%); DANCE (70%); HEADS OF STATE & GOVERNMENT (60%); PRIME MINISTERS (60%); RANKINGS (60%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MANIPUR, INDIA (59%); INDIA (96%)\n\nLoad-Date: July 24, 2021\n\n\n
621 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); BASKETBALL (78%); CYCLING (78%); NEGATIVE NEWS (77%); ATHLETES (73%); VOLLEYBALL (72%); TRACK & FIELD (66%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: TOKYO, JAPAN (88%); ATLANTA, GA, USA (79%); BEIJING, CHINA (79%); NORTH CENTRAL CHINA (79%); INDIA (92%); UNITED STATES (92%); CHINA (91%)\n\nLoad-Date: August 8, 2021\n\n\n
622 \nSubject: GOVERNMENT & PUBLIC ADMINISTRATION (91%); OLYMPICS (90%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS AWARDS (90%); ATHLETES (89%); PARALYMPICS (78%); PUBLIC POLICY (78%); TRENDS & EVENTS (78%); SPORTS INSTRUCTION (73%); TRENDS (72%)\n\nGeographic: CHANDIGARH, INDIA (92%); HARYANA, INDIA (92%); ODISHA, INDIA (92%); UTTAR PRADESH, INDIA (79%); CHHATTISGARH, INDIA (74%); INDIA (96%); AUSTRALIA (92%); BRAZIL (92%); CANADA (92%); JAPAN (92%); NETHERLANDS (92%); UNITED KINGDOM (92%); UNITED STATES (92%); GERMANY (88%); INDONESIA (79%); KAZAKHSTAN (79%); NORWAY (79%); SINGAPORE (79%); FRANCE (72%); THAILAND (56%)\n\nLoad-Date: July 23, 2021\n\n\n
623 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (90%); MANIPUR, INDIA (77%); INDIA (94%)\n\nLoad-Date: July 26, 2021\n\n\n
624 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); INTERNATIONAL RELATIONS & NATIONAL SECURITY (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); DRUGS IN SPORTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); COLD WAR (78%); INTERNATIONAL RELATIONS (78%); MEN'S SPORTS (78%); OLYMPIC COMMITTEES (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); DIPLOMATIC SERVICES (77%); SCANDALS (74%); TENNIS (73%); WRITERS (72%); MEDICINE & HEALTH (69%); MENTAL HEALTH (69%); MENTAL ILLNESS (69%); NEGATIVE MISC NEWS (68%); PRESS CONFERENCES (66%)\n\nIndustry: WRITERS (72%)\n\nPerson: SIMONE BILES (92%)\n\nGeographic: TOKYO, JAPAN (90%); RUSSIAN FEDERATION (94%); UNITED STATES (94%)\n\nLoad-Date: July 31, 2021\n\n\n
625 \nSubject: ARCHERY (94%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (89%); SPORTS & RECREATION FACILITIES & VENUES (78%); WOMEN (78%); WOMEN'S SPORTS (78%); HIGH SCHOOLS (75%); PRIMARY SCHOOLS (60%)\n\nIndustry: HIGH SCHOOLS (75%); PRIMARY SCHOOLS (60%)\n\nGeographic: TAIPEI, TAIWAN (87%); BEIJING, CHINA (79%); NEW DELHI, INDIA (74%); SEOUL, KOREA, REPUBLIC OF (73%); TOKYO, JAPAN (73%); INDIA (94%); KOREA, REPUBLIC OF (91%); JAPAN (88%)\n\nLoad-Date: July 26, 2021\n\n\n
626 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); ATHLETES (89%); RUNNING (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); TRACK & FIELD (89%); SPORTS AWARDS (78%); WOUNDS & INJURIES (74%); COACHES & TRAINERS (73%); WRITERS (73%); DEATH & DYING (65%); TRENDS & EVENTS (60%)\n\nIndustry: WRITERS (73%)\n\nGeographic: TOKYO, JAPAN (90%); LOS ANGELES, CA, USA (79%); HARYANA, INDIA (58%); INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
627 \nSubject: OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); COVID CORONAVIRUS (52%)\n\nGeographic: TOKYO, JAPAN (73%)\n\nLoad-Date: August 3, 2021\n\n\n
628 \nSubject: SPORTS AWARDS (90%); COACHES & TRAINERS (89%); OLYMPICS (89%); SPORTS & RECREATION (89%); SUMMER OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (79%); EMOTIONS (78%); INTERVIEWS (73%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
629 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); EMOTIONS (89%); NEGATIVE PERSONAL NEWS (89%); RACE & ETHNICITY (89%); SPORTS & RECREATION EVENTS (89%); WOMEN (89%); FEMINISM & WOMEN'S RIGHTS (78%); RACISM & XENOPHOBIA (78%); ATHLETES (75%); SEX & GENDER ISSUES (75%); SPORTS & RECREATION (75%); SPORTS TAMPERING (75%); NEGATIVE NEWS (71%)\n\nPerson: SHAH RUKH KHAN (94%)\n\nGeographic: ARGENTINA (79%); PAKISTAN (59%)\n\nLoad-Date: August 5, 2021\n\n\n
630 \nSubject: TENNIS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TENNIS TOURNAMENTS (90%); EMOTIONS (89%); TENNIS FACILITIES (89%); SPORTS & RECREATION EVENTS (77%)\n\nGeographic: TOKYO, JAPAN (93%); ATLANTA, GA, USA (77%); INDIA (94%); PAKISTAN (79%); UZBEKISTAN (76%); GERMANY (51%)\n\nLoad-Date: July 24, 2021\n\n\n
631 \nSubject: EMOTIONS (90%); OLYMPICS (89%); BADMINTON (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (78%); CULTURE DEPARTMENTS (73%); GOVERNMENT & PUBLIC ADMINISTRATION (62%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: TELANGANA, INDIA (73%)\n\nLoad-Date: August 2, 2021\n\n\n
632 \nSubject: BASKETBALL (95%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); SPORTS AWARDS (77%); DEATH & DYING (71%); ACCIDENTS & DISASTERS (64%); TRAFFIC FATALITIES (64%); TRAFFIC ACCIDENTS (50%)\n\nIndustry: TRAFFIC FATALITIES (64%); TRAFFIC ACCIDENTS (50%)\n\nPerson: MICHAEL JORDAN (79%)\n\nGeographic: SACRAMENTO, CA, USA (79%); CHICAGO, IL, USA (54%); UNITED STATES (96%); CROATIA (79%); NORTH AMERICA (79%); SERBIA (79%); FRANCE (78%); NIGERIA (66%)\n\nLoad-Date: July 26, 2021\n\n\n
633 \nSubject: VACCINES (91%); COVID CORONAVIRUS (90%); GOVERNMENT ADVISORS & MINISTERS (90%); LEGISLATIVE BODIES (90%); CRIME, LAW ENFORCEMENT & CORRECTIONS (86%); NEGATIVE NEWS (86%); 2020 TOKYO SUMMER OLYMPICS (85%); OLYMPICS (85%); SPORTS AWARDS (85%); SUMMER OLYMPICS (85%); CELEBRITIES (78%); NEWS BRIEFS (78%); CABINET OFFICES (76%); CORRECTIONS WORKERS (75%); DELAYS & POSTPONEMENTS (73%); NEGATIVE PERSONAL NEWS (73%); CORRECTIONS (69%); HOMICIDE (69%); BADMINTON (67%); SPORTS & RECREATION EVENTS (67%); CONSPIRACY (66%); DEATH & DYING (66%); ACTORS & ACTRESSES (61%); SPORTS & RECREATION (60%)\n\nIndustry: VACCINES (91%); CELEBRITIES (78%); ACTORS & ACTRESSES (61%)\n\nPerson: JOE BIDEN (51%)\n\nGeographic: KARNATAKA, INDIA (90%); UTTAR PRADESH, INDIA (74%); INDIA (99%)\n\nLoad-Date: August 4, 2021\n\n\n
634 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EMOTIONS (78%); DEATH & DYING (68%); BRAIN CANCER (52%); CANCER (52%)\n\nGeographic: AUSTRALIA (93%); CANADA (56%); UNITED STATES (56%)\n\nLoad-Date: July 28, 2021\n\n\n
635 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); CELEBRITIES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); TABLE TENNIS (90%); SPORTS & RECREATION EVENTS (89%); HEADS OF STATE & GOVERNMENT (78%); PHYSICAL FITNESS (78%); SPORTS & RECREATION (78%); RANKINGS (66%)\n\nIndustry: CELEBRITIES (90%)\n\nGeographic: TOKYO, JAPAN (88%); NEW DELHI, INDIA (74%); INDIA (92%); CHINA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
636 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (89%); THEATER & DRAMA (76%); BOMBINGS (64%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (93%); UNITED KINGDOM (70%); BELGIUM (66%)\n\nLoad-Date: August 1, 2021\n\n\n
637 \nSubject: WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); EXERCISE & FITNESS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS INSTRUCTION (78%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: July 27, 2021\n\n\n
638 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); TRACK & FIELD (89%); ATHLETES (78%); SPORTS AWARDS (78%); RANKINGS (73%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (94%); KENYA (55%)\n\nLoad-Date: July 30, 2021\n\n\n
639 \nSubject: RANKINGS (93%); ARCHERY (90%); OLYMPICS (90%); SHOOTINGS (89%); 2016 RIO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%)\n\nGeographic: LONDON, ENGLAND (72%); TOKYO, JAPAN (57%); JHARKHAND, INDIA (58%); INDIA (91%)\n\nLoad-Date: July 24, 2021\n\n\n
640 \nSubject: WEIGHTLIFTING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); CULTURE DEPARTMENTS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); HEADS OF STATE & GOVERNMENT (78%); SPORTS & RECREATION (74%); PRIME MINISTERS (68%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (78%); MANIPUR, INDIA (79%); INDIA (96%)\n\nLoad-Date: July 27, 2021\n\n\n
641 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION (88%); SPORTS FANS (77%)\n\nCompany: TWITTER INC (85%)\n\nTicker: TWTR (NYSE) (85%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (85%); ACTORS & ACTRESSES (90%)\n\nGeographic: MANIPUR, INDIA (79%)\n\nLoad-Date: July 27, 2021\n\n\n
642 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); ATHLETES (78%); SPORTS AWARDS (78%); INFECTIOUS DISEASE (64%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%); SURGERY & TRANSPLANTATION (50%)\n\nLoad-Date: August 8, 2021\n\n\n
643 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (89%); EMOTIONS (78%); MEN'S SPORTS (78%); SPORTS AWARDS (78%); HEADS OF STATE & GOVERNMENT (73%); PRIME MINISTERS (68%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (73%); UTTAR PRADESH, INDIA (79%); INDIA (96%); GERMANY (79%); SPAIN (57%)\n\nLoad-Date: August 6, 2021\n\n\n
644 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); WEIGHTLIFTING (89%); WOMEN'S SPORTS (89%); SPORTS & RECREATION (74%); SPORTS & RECREATION FACILITIES & VENUES (73%); ASSOCIATIONS & ORGANIZATIONS (64%)\n\nIndustry: TRUCK DRIVERS (91%); MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (93%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
645 \nSubject: ATHLETES (91%); WOMEN'S SPORTS (91%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); BADMINTON (78%); CELEBRITIES (78%); PRESS CONFERENCES (78%); WOMEN (78%)\n\nIndustry: CELEBRITIES (78%); MEDIA CONTENT (78%); FASHION & APPAREL (77%); STYLISTS & IMAGE CONSULTANTS (72%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
646 \nSubject: INTERNET SOCIAL NETWORKING (90%); VIRAL VIDEOS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); PHOTO & VIDEO SHARING (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); EMOJIS & EMOTICONS (75%); INSECTS & ARACHNIDS (73%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); VIRAL VIDEOS (90%); CAMERAS (78%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (78%); EMOJIS & EMOTICONS (75%)\n\nGeographic: TOKYO, JAPAN (58%); ARGENTINA (90%); INDIA (74%)\n\nLoad-Date: July 29, 2021\n\n\n
647 \nSubject: OLYMPICS (91%); BOXING (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (79%); 2016 RIO SUMMER OLYMPICS (78%); MARTIAL ARTS (78%); MEN'S SPORTS (78%); NEGATIVE PERSONAL NEWS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); ATHLETES (77%); KICKBOXING (77%); SPORTS AWARDS (76%); BADMINTON (73%); 2012 LONDON SUMMER OLYMPICS (69%); TWINS & MULTIPLE BIRTHS (55%)\n\nGeographic: TOKYO, JAPAN (89%); LONDON, ENGLAND (70%); ASSAM, INDIA (59%); INDIA (93%); TAIWAN (90%); JAPAN (74%)\n\nLoad-Date: July 31, 2021\n\n\n
648 \nSubject: OLYMPICS (91%); BADMINTON (90%); BOXING (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); KICKBOXING (77%); MARTIAL ARTS (77%); NEGATIVE PERSONAL NEWS (77%); 2012 LONDON SUMMER OLYMPICS (68%); TWINS & MULTIPLE BIRTHS (54%)\n\nGeographic: TOKYO, JAPAN (73%); LONDON, ENGLAND (70%); ASSAM, INDIA (59%); INDIA (93%); TAIWAN (90%); JAPAN (73%)\n\nLoad-Date: July 31, 2021\n\n\n
649 \nSubject: OLYMPICS (91%); SIKHS & SIKHISM (91%); 2020 TOKYO SUMMER OLYMPICS (72%); SPORTS & RECREATION EVENTS (72%); SPORTS AWARDS (72%); SUMMER OLYMPICS (72%); RESEARCH INSTITUTES (70%); SPORTS & RECREATION (66%); ANNIVERSARIES (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: July 31, 2021\n\n\n
650 \nSubject: SPORTS & RECREATION (90%); STADIUMS & ARENAS (90%); OLYMPICS (89%); PARALYMPICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); WEAPONS & ARMS (78%); COVID CORONAVIRUS (77%); VOLLEYBALL (77%); ROWING (76%); SPORTING GOODS (76%); BADMINTON (73%); RACEWALKING (73%); COVID-19 CORONAVIRUS (72%); CULTURE DEPARTMENTS (71%); BOAT RACING (68%)\n\nIndustry: SPORTING GOODS (76%); BUDGETS (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (78%); TOKYO, JAPAN (52%); RAJASTHAN, INDIA (95%); INDIA (93%); GREECE (79%)\n\nLoad-Date: August 4, 2021\n\n\n
651 \nSubject: ATHLETES (90%); EXECUTIVES (90%); FIELD HOCKEY (90%); MANAGERS & SUPERVISORS (90%); OLYMPICS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); BOXING (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WEIGHTLIFTING (89%); BADMINTON (78%); EXERCISE & FITNESS (78%); SPORTS & RECREATION EVENTS (78%); SOCIAL MEDIA (67%); MEDICAL DIAGNOSTICS, SCREENING & TESTING (64%); UNITED NATIONS (54%)\n\nCompany: GOOGLE LLC (56%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (56%); SOCIAL MEDIA (67%); CONFECTIONERY MFG (50%); SUGAR & CONFECTIONERY MFG (50%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: August 3, 2021\n\n\n
652 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TRACK & FIELD (89%); 2016 RIO SUMMER OLYMPICS (78%); PARALYMPICS (78%)\n\nGeographic: TOKYO, JAPAN (58%); RAJASTHAN, INDIA (91%); INDIA (94%); EUROPE (79%)\n\nLoad-Date: August 8, 2021\n\n\n
653 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); ATHLETES (89%); STADIUMS & ARENAS (89%); WEAPONS & ARMS (89%); BOXING (78%); SHOOTING SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); ARCHERY (73%)\n\nGeographic: TOKYO, JAPAN (90%); LONDON, ENGLAND (57%); INDIA (93%); JAPAN (79%); COLOMBIA (70%); UNITED KINGDOM (57%)\n\nLoad-Date: July 31, 2021\n\n\n
654 \nSubject: OLYMPICS (89%); SUMMER OLYMPICS (89%); TENNIS (89%); SPORTS OFFICIATING (78%); WOMEN'S SPORTS (78%); HEAT STRESS DISORDERS (74%); REFEREES & UMPIRES (73%)\n\nPerson: ELINA SVITOLINA (79%); KEI NISHIKORI (79%); NOVAK DJOKOVIC (79%)\n\nGeographic: TOKYO, JAPAN (73%); SPAIN (68%); UKRAINE (66%); JAPAN (58%); TAIWAN (52%)\n\nLoad-Date: July 29, 2021\n\n\n
655 \nSubject: WOMEN'S SPORTS (91%); ABUSE & NEGLECT (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (79%); DISCRIMINATION (79%); ATHLETES (78%); FAMILY (78%); RELIGION (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (76%); RELIGIOUS DISCRIMINATION (73%); PUBLIC OFFICIALS (70%); PRESS CONFERENCES (54%)\n\nGeographic: INDIA (92%); ARGENTINA (79%); UNITED KINGDOM (76%)\n\nLoad-Date: August 7, 2021\n\n\n
656 \nSubject: FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SPORTS FANS (90%); STADIUMS & ARENAS (90%); OLYMPICS (89%); WOMEN'S SPORTS (89%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); TOURNAMENTS (77%); 2020 TOKYO SUMMER OLYMPICS (75%); SUMMER OLYMPICS (75%)\n\nGeographic: UTTAR PRADESH, INDIA (73%); INDIA (94%); BELGIUM (88%)\n\nLoad-Date: August 3, 2021\n\n\n
657 \nSubject: ATHLETES (90%); EXECUTIVES (90%); FIELD HOCKEY (90%); MANAGERS & SUPERVISORS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); WOMEN (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); BOXING (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WEIGHTLIFTING (89%); BADMINTON (78%); EXERCISE & FITNESS (78%); SPORTS & RECREATION EVENTS (78%); SOCIAL MEDIA (68%); MEDICAL DIAGNOSTICS, SCREENING & TESTING (64%); UNITED NATIONS (54%)\n\nCompany: GOOGLE LLC (56%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (56%); SOCIAL MEDIA (68%); CONFECTIONERY MFG (50%); SUGAR & CONFECTIONERY MFG (50%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: August 3, 2021\n\n\n
658 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%); SPORTS & RECREATION FACILITIES & VENUES (73%)\n\nIndustry: TRUCK DRIVERS (90%); MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (93%); INDIA (79%)\n\nLoad-Date: July 29, 2021\n\n\n
659 \nSubject: WEIGHTLIFTING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); EMOTIONS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BOXING (78%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (92%); INDONESIA (69%); DOMINICAN REPUBLIC (53%)\n\nLoad-Date: July 25, 2021\n\n\n
660 \nSubject: RACISM & XENOPHOBIA (93%); OLYMPICS (90%); WEIGHTLIFTING (90%); NEGATIVE NEWS (89%); PHYSICAL FITNESS (89%); RACE & ETHNICITY (89%); DISCRIMINATION (79%); EXERCISE & FITNESS (77%); 2020 TOKYO SUMMER OLYMPICS (76%); SPORTS AWARDS (76%); SUMMER OLYMPICS (76%); RELIGION (50%)\n\nIndustry: SHORT FORM CONTENT (76%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); NORTHEAST INDIA (92%); ASSAM, INDIA (79%); KASHMIR (79%); MANIPUR, INDIA (79%); NAGALAND, INDIA (79%); INDIA (95%)\n\nLoad-Date: July 28, 2021\n\n\n
661 \nSubject: ATHLETES (90%); SPORTS & RECREATION (90%); COMMUNISM (89%); GYMNASTICS (89%); OLYMPICS (89%); SOCIALISM (79%); ABUSE & NEGLECT (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (77%); CHILDREN, ADOLESCENTS & TEENS (76%); TENNIS (72%); MENTAL HEALTH (63%); CHILDREN'S MARKET (61%)\n\nCompany: BEAM GLOBAL (64%)\n\nTicker: BEEM (NASDAQ) (64%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (64%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (64%); EDUCATIONAL SERVICES (78%); CHILDREN'S MARKET (61%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: ROMANIA (93%); EUROPE (79%); EASTERN EUROPE (58%)\n\nLoad-Date: July 31, 2021\n\n\n
662 \nSubject: SPORTS AWARDS (90%); OLYMPICS (89%); FILM (78%); MEN'S SPORTS (78%); SUMMER OLYMPICS (78%); PHOTO & VIDEO SHARING (76%)\n\nIndustry: FILM (78%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (76%)\n\nGeographic: INDIA (92%); KAZAKHSTAN (88%)\n\nLoad-Date: August 5, 2021\n\n\n
663 \nSubject: OLYMPICS (93%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); ATHLETES (89%); SKATEBOARDING (89%); WINTER OLYMPICS (89%); EXTREME SPORTS (88%); BOARDSPORTS (87%); 2016 RIO SUMMER OLYMPICS (78%); KARATE (73%); MARTIAL ARTS (73%); EXERCISE & FITNESS (67%); CLIMBING (50%)\n\nPerson: MICHAEL PHELPS (79%); NOVAK DJOKOVIC (57%); ROGER FEDERER (57%)\n\nGeographic: TOKYO, JAPAN (88%); JAPAN (90%); PHILIPPINES (87%); UNITED STATES (86%); SWITZERLAND (78%); GERMANY (57%)\n\nLoad-Date: August 8, 2021\n\n\n
664 \nSubject: OBESITY (99%); OLYMPICS (91%); ATHLETES (90%); CHILDHOOD OBESITY (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION (89%); STADIUMS & ARENAS (89%); TRACK & FIELD (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); SPORTS AWARDS (78%); MENTORS & ROLE MODELS (75%); GEOPHYSICAL EVENTS (57%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: HARYANA, INDIA (79%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
665 \nSubject: ATHLETES (90%); SPORTS & RECREATION (90%); COMMUNISM (89%); GYMNASTICS (89%); OLYMPICS (89%); SOCIALISM (79%); ABUSE & NEGLECT (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (77%); CHILDREN, ADOLESCENTS & TEENS (76%); TENNIS (72%); MENTAL HEALTH (63%); CHILDREN'S MARKET (61%)\n\nCompany: BEAM GLOBAL (64%)\n\nTicker: BEEM (NASDAQ) (64%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (64%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (64%); EDUCATIONAL SERVICES (78%); CHILDREN'S MARKET (61%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: ROMANIA (93%); EUROPE (79%); EASTERN EUROPE (58%)\n\nLoad-Date: July 31, 2021\n\n\n
666 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); OLYMPICS (89%); RESEARCH REPORTS (89%); SPORTS & RECREATION EVENTS (89%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%)\n\nGeographic: IOWA, USA (79%); INDIA (90%); BELGIUM (57%); UNITED STATES (52%)\n\nLoad-Date: August 4, 2021\n\n\n
667 \nSubject: ATHLETES (90%); SPORTS & RECREATION (90%); COMMUNISM (89%); GYMNASTICS (89%); OLYMPICS (89%); SOCIALISM (79%); ABUSE & NEGLECT (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (77%); CHILDREN, ADOLESCENTS & TEENS (76%); TENNIS (72%); MENTAL HEALTH (63%); CHILDREN'S MARKET (61%)\n\nCompany: BEAM GLOBAL (64%)\n\nTicker: BEEM (NASDAQ) (64%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (64%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (64%); EDUCATIONAL SERVICES (78%); CHILDREN'S MARKET (61%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: ROMANIA (93%); EUROPE (79%); EASTERN EUROPE (58%)\n\nLoad-Date: July 31, 2021\n\n\n
668 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); SPORTS AWARDS (78%); PHYSICAL FITNESS (77%); EXERCISE & FITNESS (68%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (94%); NETHERLANDS (92%); ARGENTINA (79%); BELGIUM (65%)\n\nLoad-Date: July 23, 2021\n\n\n
669 \nSubject: OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (77%); 2020 TOKYO SUMMER OLYMPICS (77%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); SPORTS & RECREATION (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: POLAND (53%)\n\nLoad-Date: August 7, 2021\n\n\n
670 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%); SPORTS SPONSORSHIP (78%); SUMMER OLYMPICS (78%); WOMEN (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (72%); GOVERNMENT ADVISORS & MINISTERS (70%)\n\nIndustry: MEDIA CONTENT (78%); SPONSORSHIP (78%); SPORTS SPONSORSHIP (78%)\n\nGeographic: ODISHA, INDIA (94%); INDIA (93%)\n\nLoad-Date: August 3, 2021\n\n\n
671 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TENNIS (90%); TOURNAMENTS (90%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (88%); TENNIS TOURNAMENTS (88%); RANKINGS (78%); WOUNDS & INJURIES (56%)\n\nPerson: ELINA SVITOLINA (79%)\n\nGeographic: BARCELONA, SPAIN (58%); SPAIN (73%)\n\nLoad-Date: August 1, 2021\n\n\n
672 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TENNIS (90%); TOURNAMENTS (90%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (88%); TENNIS TOURNAMENTS (88%); RANKINGS (78%); WOUNDS & INJURIES (56%)\n\nPerson: ELINA SVITOLINA (79%); NOVAK DJOKOVIC (79%)\n\nGeographic: BARCELONA, SPAIN (58%); SPAIN (73%)\n\nLoad-Date: August 1, 2021\n\n\n
673 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); OLYMPICS (90%); PHOTO & VIDEO SHARING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); EXERCISE & FITNESS (78%); INTERNET SOCIAL NETWORKING (78%); FILM (77%); FILM DIRECTORS (75%); WEIGHTLIFTING (72%); WOMEN'S SPORTS (72%)\n\nIndustry: ACTORS & ACTRESSES (90%); PHOTO & VIDEO SHARING (90%); INTERNET SOCIAL NETWORKING (78%); FILM (77%); FILM DIRECTORS (75%); STREAMING MEDIA (73%)\n\nGeographic: SRI LANKA (92%)\n\nLoad-Date: July 25, 2021\n\n\n
674 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); ATHLETES (89%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); REGIONAL & LOCAL GOVERNMENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTING GOODS (78%); WOMEN (78%); TOURNAMENTS (75%)\n\nIndustry: MEDIA CONTENT (78%); SPORTING GOODS (78%)\n\nGeographic: TOKYO, JAPAN (51%); HARYANA, INDIA (74%); INDIA (95%); UNITED KINGDOM (90%)\n\nLoad-Date: August 6, 2021\n\n\n
675 \nSubject: WOMEN'S SPORTS (93%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); DIWALI (89%); ACTORS & ACTRESSES (78%); CELEBRITIES (78%); FILM DIRECTORS (78%); SPORTS & RECREATION EVENTS (78%); PHOTO & VIDEO SHARING (74%); SELFIES (74%)\n\nIndustry: ACTORS & ACTRESSES (78%); CELEBRITIES (78%); FILM DIRECTORS (78%); PHOTO & VIDEO SHARING (74%); SELFIES (74%)\n\nPerson: SHAH RUKH KHAN (94%)\n\nGeographic: INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
676 \nSubject: WOMEN'S SPORTS (93%); ACTORS & ACTRESSES (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (89%); FILM DIRECTORS (78%); SPORTS & RECREATION (77%); SPORTS & RECREATION EVENTS (77%); EMOJIS & EMOTICONS (76%); 2020 TOKYO SUMMER OLYMPICS (73%); PHOTO & VIDEO SHARING (71%); SUMMER OLYMPICS (67%)\n\nIndustry: ACTORS & ACTRESSES (90%); FILM DIRECTORS (78%); MEDIA CONTENT (78%); EMOJIS & EMOTICONS (76%); PHOTO & VIDEO SHARING (71%)\n\nPerson: SHAH RUKH KHAN (92%)\n\nGeographic: INDIA (94%); AUSTRALIA (75%); UNITED KINGDOM (55%)\n\nLoad-Date: August 6, 2021\n\n\n
677 \nSubject: FIELD HOCKEY (90%); SPORTS AWARDS (90%); OLYMPICS (89%); SUMMER OLYMPICS (89%); CHILDREN, ADOLESCENTS & TEENS (78%); SIKHS & SIKHISM (78%); SPORTS CAMPS & SCHOOLS (78%); BOXING (72%); EMOTIONS (72%)\n\nGeographic: TOKYO, JAPAN (73%); PUNJAB, INDIA (79%); HIMACHAL PRADESH, INDIA (58%); INDIA (91%); GERMANY (88%)\n\nLoad-Date: August 6, 2021\n\n\n
678 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); BOXING (78%); WOMEN (78%); EXERCISE & FITNESS (69%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (73%); MANIPUR, INDIA (93%); HARYANA, INDIA (79%); KARNATAKA, INDIA (79%); ODISHA, INDIA (79%); INDIA (93%)\n\nLoad-Date: July 25, 2021\n\n\n
679 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SHOOTING SPORTS (78%); ATHLETES (76%); COACHES & TRAINERS (76%); WOMEN'S SPORTS (76%); TRENDS & EVENTS (75%); DANCE (70%); HEADS OF STATE & GOVERNMENT (60%); PRIME MINISTERS (60%); RANKINGS (60%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MANIPUR, INDIA (59%); INDIA (96%)\n\nLoad-Date: July 24, 2021\n\n\n
680 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); EXECUTIVES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); CELEBRITIES (78%); ELECTRONIC GOVERNMENT (78%); MANAGERS & SUPERVISORS (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (77%); COMPANY STRUCTURES & OWNERSHIP (74%)\n\nCompany: BEST INC (90%)\n\nTicker: BEST (NYSE) (90%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (90%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (90%); CARPET & RUG MILLS (89%); CELEBRITIES (78%); FLOORING (78%); PUBLIC SERVICE ADVERTISING (64%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (92%)\n\nLoad-Date: August 9, 2021\n\n\n
681 \nSubject: COVID CORONAVIRUS (93%); COVID-19 CORONAVIRUS (92%); INFECTIOUS DISEASE (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); OLYMPICS (89%); SUMMER OLYMPICS (87%); WEIGHTLIFTING (87%); NEWS BRIEFS (78%); VACCINES (78%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); REGIONAL & LOCAL GOVERNMENTS (77%); MEDICINE & HEALTH (76%); GOVERNMENT ADVISORS & MINISTERS (72%); CORONAVIRUSES (71%); MEDICAL SCIENCE (71%); VIRUSES (71%); WOMEN'S SPORTS (71%); PHOTO & VIDEO SHARING (66%); EXERCISE & FITNESS (64%); BIOGRAPHICAL LITERATURE (62%); PROFILES & BIOGRAPHIES (50%)\n\nCompany: GUCCI GROUP NV (84%)\n\nIndustry: NAICS316992 WOMEN'S HANDBAG & PURSE MANUFACTURING (84%); SIC3171 WOMEN'S HANDBAGS & PURSES (84%); FASHION & APPAREL (88%); FASHION DESIGNERS (85%); VACCINES (78%); PHARMACEUTICALS & BIOTECHNOLOGY (77%); FASHION INDUSTRY (70%); CLOTHING LABELS (67%); PHOTO & VIDEO SHARING (66%); MOTORCYCLES (65%); RESTAURANTS (64%); FASHION DESIGN (62%); MEN'S CLOTHING (62%)\n\nPerson: ALESSANDRO MICHELE (77%); JARED LETO (73%)\n\nGeographic: NEW DELHI, INDIA (91%); MUMBAI, MAHARASHTRA, INDIA (56%); KARNATAKA, INDIA (93%); MAHARASHTRA, INDIA (79%); MANIPUR, INDIA (79%); INDIA (97%)\n\nLoad-Date: July 24, 2021\n\n\n
682 \nSubject: EXERCISE & FITNESS (91%); OLYMPICS (90%); PHYSICAL FITNESS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTING GOODS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); PHYSICAL THERAPY (75%); YOGA (71%); WOUNDS & INJURIES (68%); SOCIAL MEDIA (55%); KNEE DISORDERS & INJURIES (50%)\n\nIndustry: SPORTING GOODS (89%); MEDIA CONTENT (78%); ACTIVEWEAR & SPORTSWEAR (77%); SOCIAL MEDIA (55%)\n\nGeographic: INDIA (90%); SWEDEN (70%)\n\nLoad-Date: August 8, 2021\n\n\n
683 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SPORTS FANS (90%); SUMMER OLYMPICS (90%); WINTER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); WOMEN'S SPORTS (78%); GRANDPARENTS (76%); EMOTIONS (72%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (95%)\n\nLoad-Date: August 6, 2021\n\n\n
684 \nSubject: SPORTS AWARDS (91%); 2016 RIO SUMMER OLYMPICS (90%); OLYMPICS (90%); INTERVIEWS (78%); TOURNAMENTS (78%); WOMEN (78%); SPORTS & RECREATION (71%); EMOTIONS (67%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (71%); INDIA (91%)\n\nLoad-Date: August 3, 2021\n\n\n
685 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (73%); COACHES & TRAINERS (72%); SUMMER OLYMPICS (71%); SOCIAL MEDIA (68%); HEADS OF STATE & GOVERNMENT (63%); PRIME MINISTERS (50%)\n\nIndustry: SOCIAL MEDIA (68%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: UTTAR PRADESH, INDIA (59%); INDIA (94%); UNITED KINGDOM (91%)\n\nLoad-Date: August 7, 2021\n\n\n
686 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); WRESTLING (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS CAMPS & SCHOOLS (78%); ARRESTS (77%); NEGATIVE NEWS (77%); DEATH & DYING (72%)\n\nIndustry: MEDIA CONTENT (78%); MOBILE & CELLULAR TELEPHONES (73%)\n\nGeographic: NEW DELHI, INDIA (89%); LONDON, ENGLAND (71%); INDIA (93%)\n\nLoad-Date: August 5, 2021\n\n\n
687 \nSubject: OLYMPICS (92%); SPORTS FANS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); WOMEN'S SPORTS (78%); GRANDPARENTS (77%); EMOTIONS (70%)\n\nGeographic: TOKYO, JAPAN (88%); HYDERABAD, ANDHRA PRADESH, INDIA (59%); INDIA (95%)\n\nLoad-Date: August 6, 2021\n\n\n
688 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (73%); COACHES & TRAINERS (72%); SUMMER OLYMPICS (71%); SOCIAL MEDIA (68%); HEADS OF STATE & GOVERNMENT (63%); PRIME MINISTERS (50%)\n\nIndustry: SOCIAL MEDIA (68%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (91%)\n\nLoad-Date: August 7, 2021\n\n\n
689 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); ATHLETES (78%); 2020 TOKYO SUMMER OLYMPICS (76%); SUMMER OLYMPICS (71%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: HARYANA, INDIA (59%); INDIA (90%); UNITED KINGDOM (73%)\n\nLoad-Date: August 6, 2021\n\n\n
690 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (73%); COACHES & TRAINERS (72%); SUMMER OLYMPICS (71%); SOCIAL MEDIA (68%); HEADS OF STATE & GOVERNMENT (63%); PRIME MINISTERS (50%)\n\nIndustry: SOCIAL MEDIA (68%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: INDIA (94%); UNITED KINGDOM (91%)\n\nLoad-Date: August 7, 2021\n\n\n
691 \nSubject: 2016 RIO SUMMER OLYMPICS (91%); OLYMPICS (91%); WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); PSYCHOLOGY (87%); EXERCISE & FITNESS (63%)\n\nIndustry: PSYCHOLOGY (87%)\n\nGeographic: TOKYO, JAPAN (88%); MANIPUR, INDIA (78%); QUEENSLAND, AUSTRALIA (68%); AUSTRALIA (79%); INDIA (79%); UNITED STATES (69%)\n\nLoad-Date: July 22, 2021\n\n\n
692 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (89%); RUNNING (89%); SUMMER OLYMPICS (89%); TRACK & FIELD (89%); SPORTS & RECREATION (76%); SPORTS & RECREATION EVENTS (76%); SPORTS AWARDS (76%); HUMANITIES & SOCIAL SCIENCE (74%); HIGH SCHOOL SPORTS (71%); TOURNAMENTS (71%); HISTORY (69%); EXERCISE & FITNESS (63%)\n\nIndustry: HIGH SCHOOL SPORTS (71%)\n\nGeographic: NEW YORK, NY, USA (72%); PARIS, FRANCE (56%); NEW YORK, USA (52%); INDIA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
693 \nSubject: WOMEN'S SPORTS (94%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); WOMEN (90%); ACTORS & ACTRESSES (89%); OLYMPICS (89%); ATHLETES (78%); CELEBRITIES (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (72%)\n\nCompany: TWITTER INC (84%)\n\nTicker: TWTR (NYSE) (84%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (84%); ACTORS & ACTRESSES (89%); CELEBRITIES (78%)\n\nPerson: SHAH RUKH KHAN (94%); AKSHAY KUMAR (79%)\n\nGeographic: INDIA (93%); UNITED KINGDOM (58%)\n\nLoad-Date: August 6, 2021\n\n\n
694 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); OLYMPICS (89%); MEDICINE & HEALTH (62%); MENTAL HEALTH (60%)\n\nGeographic: PUNJAB, INDIA (73%); INDIA (92%); GERMANY (73%)\n\nLoad-Date: August 6, 2021\n\n\n
695 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOLF (90%); GOLF TOURNAMENTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); TENNIS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (77%); RANKINGS (75%); TENNIS TOURNAMENTS (73%); WEATHER (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); BANGALORE, KARNATAKA, INDIA (58%); INDIA (91%); AUSTRALIA (79%); EUROPE (78%); DENMARK (56%)\n\nLoad-Date: August 5, 2021\n\n\n
696 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); VEHICLE SEARCH (89%); WEIGHTLIFTING (89%); SUMMER OLYMPICS (78%); SPORTS & RECREATION FACILITIES & VENUES (73%)\n\nIndustry: TRUCK DRIVERS (92%); MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (94%); INDIA (79%)\n\nLoad-Date: July 29, 2021\n\n\n
697 \nSubject: SPORTS AWARDS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); EMOTIONS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); TENNIS (78%); SOCCER TOURNAMENTS (67%); CRICKET (66%)\n\nPerson: ROGER FEDERER (50%)\n\nGeographic: SYDNEY, AUSTRALIA (90%); TOKYO, JAPAN (87%); BEIJING, CHINA (79%); LONDON, ENGLAND (55%); NORTH CENTRAL CHINA (79%); AUSTRALIA (92%); INDIA (91%); JAPAN (78%); POLAND (75%); PAKISTAN (58%)\n\nLoad-Date: August 6, 2021\n\n\n
698 \nSubject: OLYMPICS (92%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); WOMEN'S SPORTS (90%); SPORTS AWARDS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); APPOINTMENTS (78%); SPORTS & RECREATION (78%); SUMMER OLYMPICS (78%); TOURNAMENTS (78%); WOMEN (78%); PRESS CONFERENCES (74%); COVID CORONAVIRUS (60%); COVID-19 CORONAVIRUS REGULATION & POLICY (60%); COVID-19 CORONAVIRUS (50%)\n\nGeographic: INDIA (95%); NETHERLANDS (79%); UNITED KINGDOM (72%)\n\nLoad-Date: August 7, 2021\n\n\n
699 \nSubject: OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (89%); FIELD HOCKEY (89%); TENNIS (89%); SPORTS & RECREATION FACILITIES & VENUES (78%); SPORTS AWARDS (78%); TABLE TENNIS (78%); EMOTIONS (76%); CITIES (72%); CITY LIFE (72%)\n\nCompany: METROPOLITAN BANK HOLDING CORP (57%)\n\nTicker: MCB (NYSE) (57%)\n\nIndustry: NAICS522110 COMMERCIAL BANKING (57%); SIC6029 COMMERCIAL BANKS, NEC (57%); MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (74%); JAPAN (74%)\n\nLoad-Date: July 27, 2021\n\n\n
700 \nSubject: OLYMPICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); BOXING (78%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nPerson: RECEP TAYYIP ERDOGAN (77%)\n\nGeographic: BEIJING, CHINA (79%); TAIPEI, TAIWAN (71%); NORTH CENTRAL CHINA (79%); ASSAM, INDIA (58%); TURKEY (90%); CHINA (77%); GERMANY (71%); POLAND (57%); UKRAINE (57%)\n\nLoad-Date: August 4, 2021\n\n\n
701 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); ATHLETES (89%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (76%)\n\nGeographic: NEW DELHI, INDIA (90%); BANGALORE, KARNATAKA, INDIA (78%); TOKYO, JAPAN (73%); INDIA (94%); JAPAN (90%); UNITED KINGDOM (73%); SPAIN (56%)\n\nLoad-Date: July 30, 2021\n\n\n
702 \nSubject: ATHLETES (90%); SPORTS AWARDS (90%); WRESTLING (90%); OLYMPICS (89%); SUMMER OLYMPICS (89%); NEGATIVE PERSONAL NEWS (78%); STADIUMS & ARENAS (78%); MURDER (60%)\n\nGeographic: BEIJING, CHINA (79%); TOKYO, JAPAN (52%); NORTH CENTRAL CHINA (79%); HARYANA, INDIA (74%); INDIA (90%); CHINA (52%)\n\nLoad-Date: August 5, 2021\n\n\n
703 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (78%); POOL & BILLIARDS (77%); TOURNAMENTS (77%)\n\nGeographic: INDIA (96%); SOUTH AFRICA (91%); IRELAND (87%); UNITED KINGDOM (55%)\n\nLoad-Date: August 1, 2021\n\n\n
704 \nSubject: COVID CORONAVIRUS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); MURDER (90%); PORNOGRAPHY (90%); COURTSHIP & DATING (86%); OLYMPICS (86%); SPORTS AWARDS (86%); CELEBRITIES (78%); NEWS BRIEFS (78%); POLLS & SURVEYS (78%); COVID-19 CORONAVIRUS (77%); GOVERNMENT ADVISORS & MINISTERS (77%); NEGATIVE PERSONAL NEWS (77%); REGIONAL & LOCAL GOVERNMENTS (77%); INFECTIOUS DISEASE (76%); CORONAVIRUSES (71%); PHOTO & VIDEO SHARING (71%); VIRUSES (71%); SUMMER OLYMPICS (68%)\n\nIndustry: CELEBRITIES (78%); MEDIA CONTENT (78%); PHOTO & VIDEO SHARING (71%)\n\nGeographic: NEW DELHI, INDIA (91%); MAHARASHTRA, INDIA (92%); MADHYA PRADESH, INDIA (79%); INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
705 \nSubject: 2016 RIO SUMMER OLYMPICS (90%); BADMINTON (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); MEN'S SPORTS (89%); TENNIS (78%); TOURNAMENTS (78%)\n\nGeographic: TAIPEI, TAIWAN (68%); JAPAN (86%); CHINA (71%); HONG KONG (71%); THAILAND (53%); NETHERLANDS (52%)\n\nLoad-Date: July 24, 2021\n\n\n
706 \nSubject: OLYMPICS (92%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); 2016 RIO SUMMER OLYMPICS (78%); EMOTIONS (77%); ATHLETES (73%)\n\nGeographic: INDIA (94%); BELGIUM (72%); SPAIN (58%); UNITED KINGDOM (57%)\n\nLoad-Date: August 1, 2021\n\n\n
707 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (89%); CELEBRITIES (78%); SPORTS AWARDS (78%); PROFESSIONAL SPORTS (76%); STADIUMS & ARENAS (76%); ATHLETES (75%); COMPUTER GAMES (71%); SOCCER (71%)\n\nCompany: MONDO AS (65%)\n\nIndustry: NAICS541519 OTHER COMPUTER RELATED SERVICES (65%); SIC7379 COMPUTER RELATED SERVICES, NEC (65%); CELEBRITIES (78%); MEDIA CONTENT (73%); COMPUTER GAMES (71%)\n\nGeographic: SWEDEN (73%); POLAND (72%)\n\nLoad-Date: August 3, 2021\n\n\n
708 \nSubject: ELECTIONS & POLITICS (90%); HEADS OF STATE & GOVERNMENT (90%); LEGISLATIVE BODIES (90%); MEN'S SPORTS (90%); POLITICS (90%); PRIME MINISTERS (90%); ECONOMIC CONDITIONS (89%); EMERGING MARKETS (88%); ECONOMIC RECOVERY (79%); GOVERNMENT & PUBLIC ADMINISTRATION (79%); NEGATIVE MISC NEWS (77%); NEGATIVE NEWS (77%); BUSINESS NEWS (74%); ECONOMIC GROWTH (74%); ECONOMY & ECONOMIC INDICATORS (74%); REGIONAL & LOCAL GOVERNMENTS (74%); VACCINES (50%)\n\nIndustry: VACCINES (50%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: August 6, 2021\n\n\n
709 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); 2016 RIO SUMMER OLYMPICS (78%); EMOTIONS (77%); ATHLETES (73%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (94%); BELGIUM (72%); JAPAN (58%); SPAIN (58%); UNITED KINGDOM (57%)\n\nLoad-Date: August 1, 2021\n\n\n
710 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); TRACK & FIELD (89%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); RACEWALKING (78%); SPORTS AWARDS (78%); WALKING & JOGGING (78%); SIKHS & SIKHISM (73%); RANKINGS (68%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (95%); KENYA (56%)\n\nLoad-Date: July 30, 2021\n\n\n
711 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); WRESTLING (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS CAMPS & SCHOOLS (78%); 2012 LONDON SUMMER OLYMPICS (77%); ARRESTS (77%); NEGATIVE NEWS (77%); STUDENTS & STUDENT LIFE (77%); DEATH & DYING (72%)\n\nIndustry: MOBILE & CELLULAR TELEPHONES (73%)\n\nGeographic: BEIJING, CHINA (92%); NEW DELHI, INDIA (89%); LONDON, ENGLAND (88%); NORTH CENTRAL CHINA (92%); INDIA (93%); CHINA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
712 \nSubject: BADMINTON (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (78%); ATHLETES (70%)\n\nCompany: BEST INC (51%)\n\nTicker: BEST (NYSE) (51%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (51%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (51%)\n\nGeographic: TOKYO, JAPAN (72%); GLASGOW, SCOTLAND (55%); TAIPEI, TAIWAN (55%); JAPAN (57%); HONG KONG (54%)\n\nLoad-Date: August 8, 2021\n\n\n
713 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); TOURNAMENTS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); CELEBRITIES (78%); TENNIS (73%); WEATHER (71%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (73%); KOLKATA, WEST BENGAL, INDIA (59%); KARNATAKA, INDIA (78%); INDIA (92%); JAPAN (57%)\n\nLoad-Date: August 7, 2021\n\n\n
714 \nSubject: ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); RANKINGS (71%)\n\nGeographic: HARYANA, INDIA (73%); INDIA (94%); KAZAKHSTAN (79%); RUSSIAN FEDERATION (73%); ITALY (58%); SAN MARINO (58%); UKRAINE (54%)\n\nLoad-Date: August 6, 2021\n\n\n
715 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); EMOTIONS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (76%); SOCCER TOURNAMENTS (72%); CRICKET (65%)\n\nPerson: ROGER FEDERER (50%)\n\nGeographic: SYDNEY, AUSTRALIA (90%); TOKYO, JAPAN (90%); BEIJING, CHINA (77%); LONDON, ENGLAND (54%); NORTH CENTRAL CHINA (77%); INDIA (93%); AUSTRALIA (92%); JAPAN (78%); POLAND (75%); PAKISTAN (58%)\n\nLoad-Date: August 6, 2021\n\n\n
716 \nSubject: OLYMPICS (89%); SUMMER OLYMPICS (89%); TENNIS (89%); SPORTS OFFICIATING (78%); WOMEN'S SPORTS (78%); RANKINGS (77%); HEAT STRESS DISORDERS (74%); REFEREES & UMPIRES (73%)\n\nPerson: ELINA SVITOLINA (79%); KEI NISHIKORI (79%); NOVAK DJOKOVIC (79%)\n\nGeographic: TOKYO, JAPAN (73%); SPAIN (68%); UKRAINE (66%); JAPAN (58%); TAIWAN (52%)\n\nLoad-Date: July 29, 2021\n\n\n
717 \nSubject: NEGATIVE PERSONAL NEWS (91%); ARRESTS (90%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); NEGATIVE NEWS (90%); CRIME, LAW ENFORCEMENT & CORRECTIONS (89%); ABUSE & NEGLECT (78%); CRIMINAL CONVICTIONS (78%); SPORTS GOVERNING BODIES (77%); WOMEN'S SPORTS (77%); POLICE FORCES (72%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); ELECTRONIC PUBLISHING (78%)\n\nGeographic: UTTARAKHAND, INDIA (89%)\n\nLoad-Date: August 6, 2021\n\n\n
718 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); MEN'S SPORTS (78%)\n\nCompany: PERFECTION AS (65%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (97%); BELGIUM (91%); AUSTRALIA (79%); GERMANY (73%)\n\nLoad-Date: August 4, 2021\n\n\n
719 \nSubject: ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); RANKINGS (71%)\n\nGeographic: HARYANA, INDIA (73%); INDIA (94%); KAZAKHSTAN (79%); KYRGYZSTAN (79%); RUSSIAN FEDERATION (73%); ITALY (58%); SAN MARINO (58%); UKRAINE (54%)\n\nLoad-Date: August 6, 2021\n\n\n
720 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); STADIUMS & ARENAS (78%); ATHLETES (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); AUSTRALIA (91%); INDIA (91%); ARGENTINA (90%); SPAIN (90%); NEW ZEALAND (73%); JAPAN (72%); AUSTRALIA & NEW ZEALAND (58%)\n\nLoad-Date: July 28, 2021\n\n\n
721 \nSubject: VACCINES (94%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); HEALTH CARE PROFESSIONALS (90%); FIELD HOCKEY (89%); INFECTIOUS DISEASE (89%); MEN'S SPORTS (86%); OLYMPICS (86%); NEWS BRIEFS (78%); RESPIRATORY DISORDERS & INJURIES (78%); CORONAVIRUSES (77%); DISEASE IMMUNITY (77%); VACCINATION & IMMUNIZATION (77%); DEFAMATION (75%); US PRESIDENTIAL CANDIDATES 2016 (65%); US PRESIDENTIAL CANDIDATES 2020 (65%)\n\nIndustry: VACCINES (94%); HEALTH CARE PROFESSIONALS (90%); MEDIA CONTENT (78%); VACCINATION & IMMUNIZATION (77%); FARMERS & RANCHERS (76%); MOTOR VEHICLES (50%)\n\nPerson: ANTHONY FAUCI (92%); JOE BIDEN (74%)\n\nGeographic: NEW DELHI, INDIA (90%); TRIPURA, INDIA (93%); HARYANA, INDIA (92%); INDIA (92%); UNITED STATES (92%); UNITED KINGDOM (68%); BELGIUM (53%)\n\nLoad-Date: August 1, 2021\n\n\n
722 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); PROFILES & BIOGRAPHIES (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (78%); WEAPONS & ARMS (60%); ARMIES (50%)\n\nIndustry: ARMIES (50%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
723 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); COACHES & TRAINERS (78%); NEGATIVE NEWS (78%); SPORTS & RECREATION (78%); WORKING MOTHERS (78%); POVERTY & HOMELESSNESS (76%); ELECTRONIC TICKETS (75%); PHYSICAL FITNESS (72%); WEDDINGS & ENGAGEMENTS (71%); DEATH & DYING (69%)\n\nIndustry: MOTORCOACHES & BUSES (77%); ELECTRONIC TICKETS (75%)\n\nGeographic: HARYANA, INDIA (90%); CHANDIGARH, INDIA (79%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
724 \nSubject: OLYMPICS (92%); CELEBRITIES (90%); EXERCISE & FITNESS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (89%); 2020 TOKYO SUMMER OLYMPICS (77%); WOMEN'S SPORTS (77%); SOCIAL MEDIA (66%)\n\nIndustry: CELEBRITIES (90%); SOCIAL MEDIA (66%)\n\nPerson: NARENDRA MODI (79%); SALMAN KHAN (79%)\n\nGeographic: NEW DELHI, INDIA (74%); MANIPUR, INDIA (58%); INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
725 \nSubject: TRACK & FIELD (90%); COACHES & TRAINERS (89%); OLYMPICS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (89%); WRESTLING (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); PHYSICAL FITNESS (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (75%); EXERCISE & FITNESS (73%); STADIUMS & ARENAS (73%); BIOMECHANICS (71%); ATHLETES (69%); WOUNDS & INJURIES (50%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%); GERMANY (91%); CHINA (79%)\n\nLoad-Date: August 9, 2021\n\n\n
726 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (78%); ARMIES (77%); WORLD WAR II (76%)\n\nIndustry: ARMIES (77%)\n\nGeographic: BEIJING, CHINA (79%); LOS ANGELES, CA, USA (79%); NORTH CENTRAL CHINA (79%); CALIFORNIA, USA (72%); EARTH'S MOON (70%); INDIA (94%); CHINA (79%)\n\nLoad-Date: July 31, 2021\n\n\n
727 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); RUNNING (89%); WRESTLING (89%); WOMEN'S SPORTS (78%); TRACK & FIELD (77%); WOUNDS & INJURIES (77%); OLYMPIC COMMITTEES (73%); WEIGHTLIFTING (68%); EXERCISE & FITNESS (66%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (95%); KAZAKHSTAN (79%); RUSSIAN FEDERATION (75%); CZECH REPUBLIC (55%)\n\nLoad-Date: August 8, 2021\n\n\n
728 \nSubject: OLYMPICS (92%); ATHLETES (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (90%); BADMINTON (78%); STADIUMS & ARENAS (78%); EXERCISE & FITNESS (68%)\n\nGeographic: TOKYO, JAPAN (69%); INDIA (93%); ENGLAND (69%)\n\nLoad-Date: August 2, 2021\n\n\n
729 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); WRESTLING (90%); GRANDCHILDREN (89%); NEGATIVE PERSONAL NEWS (89%); SPORTS AWARDS (89%); 2012 LONDON SUMMER OLYMPICS (77%)\n\nGeographic: TOKYO, JAPAN (73%); LONDON, ENGLAND (69%); CHANDIGARH, INDIA (92%); HARYANA, INDIA (79%); INDIA (91%)\n\nLoad-Date: August 4, 2021\n\n\n
730 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); FIELD HOCKEY (79%); ARCHERY (78%); 2016 RIO SUMMER OLYMPICS (77%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (50%); INDIA (93%)\n\nLoad-Date: July 29, 2021\n\n\n
731 \nSubject: WRESTLING (90%); ATHLETES (89%); OLYMPICS (89%); SUMMER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); NEGATIVE PERSONAL NEWS (78%); SPORTS AWARDS (78%); SPORTS & RECREATION EVENTS (77%)\n\nGeographic: INDIA (90%); IRAN, ISLAMIC REPUBLIC OF (53%)\n\nLoad-Date: August 6, 2021\n\n\n
732 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); LEGISLATIVE BODIES (78%); CRICKET (72%)\n\nIndustry: CONSULTING SERVICES (73%)\n\nGeographic: INDIA (89%)\n\nLoad-Date: August 8, 2021\n\n\n
733 \nSubject: FIELD HOCKEY (90%); SPORTS CAMPS & SCHOOLS (90%); COACHES & TRAINERS (89%); OLYMPICS (89%); ATHLETES (78%); MEN'S SPORTS (78%); NEGATIVE PERSONAL NEWS (78%); 2020 TOKYO SUMMER OLYMPICS (76%); SUMMER OLYMPICS (76%); CHILDREN (72%); PRESS CONFERENCES (50%)\n\nGeographic: CHANDIGARH, INDIA (91%); PUNJAB, INDIA (74%); INDIA (90%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
734 \nSubject: ATHLETES (91%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GYMNASTICS (89%); INTERNET TROLLING (89%); NEGATIVE PERSONAL NEWS (89%); SEX OFFENSES (89%); SEXUAL ASSAULT (89%); 2016 RIO SUMMER OLYMPICS (78%); ABUSE & NEGLECT (78%); CELEBRITIES (78%); COACHES & TRAINERS (78%); NEGATIVE NEWS (78%); NEGATIVE SOCIETAL NEWS (78%); WOMEN'S SPORTS (78%); EXERCISE & FITNESS (77%); PHYSICAL FITNESS (77%); MEDICINE & HEALTH (73%); MENTAL HEALTH (73%); CHILD SEXUAL ABUSE (68%); SPORTS MEDICINE (68%); SENTENCING (67%); CRIMINAL CONVICTIONS (62%)\n\nIndustry: INTERNET TROLLING (89%); CELEBRITIES (78%); SPORTS MEDICINE (68%)\n\nPerson: SIMONE BILES (93%); MICHAEL PHELPS (79%)\n\nGeographic: ATLANTA, GA, USA (79%); UNITED STATES (95%)\n\nLoad-Date: July 29, 2021\n\n\n
735 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); STADIUMS & ARENAS (90%); TRENDS & EVENTS (90%); CELEBRITIES (89%); SHOOTING SPORTS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WEAPONS & ARMS (89%); 2020 TOKYO SUMMER OLYMPICS (79%); RUNNING (77%); SPORTS & RECREATION EVENTS (77%); WALKING & JOGGING (76%); COVID CORONAVIRUS (75%); COVID-19 CORONAVIRUS (75%); COVID-19 CORONAVIRUS REGULATION & POLICY (75%); FACE MASK MANDATES (75%); NEGATIVE NEWS (73%); TENNIS (73%); CYCLING (72%); INFECTIOUS DISEASE (70%); PROTESTS & DEMONSTRATIONS (66%)\n\nIndustry: CELEBRITIES (89%)\n\nPerson: NAOMI OSAKA (78%)\n\nGeographic: TOKYO, JAPAN (91%); NEW DELHI, INDIA (73%); OSAKA, JAPAN (58%); INDIA (94%); JAPAN (74%)\n\nLoad-Date: July 23, 2021\n\n\n
736 \nSubject: PRIME MINISTERS (91%); HEADS OF STATE & GOVERNMENT (90%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); INFECTIOUS DISEASE (89%); PANDEMICS (89%); POLITICS (89%); VACCINES (78%); DIWALI (74%); GOVERNMENT ADVISORS & MINISTERS (73%); FOOD SECURITY (72%); THIS DAY IN HISTORY (67%); OLYMPICS (65%); MEN'S SPORTS (60%)\n\nIndustry: VACCINES (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: UTTAR PRADESH, INDIA (93%); INDIA (95%)\n\nLoad-Date: August 5, 2021\n\n\n
737 \nSubject: SPORTS & RECREATION (90%); WOMEN (90%); SPORTS & RECREATION EVENTS (89%); WOMEN'S SPORTS (89%); ATHLETES (78%); COACHES & TRAINERS (78%); COLLEGE & UNIVERSITY SPORTS (78%); MEN'S SPORTS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (74%); SPORTS FANS (73%); SCHOOL ATHLETIC STAFF (69%)\n\nIndustry: COLLEGE & UNIVERSITY SPORTS (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%); UTTAR PRADESH, INDIA (92%); UTTARAKHAND, INDIA (89%); INDIA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
738 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); TRACK & FIELD (89%); ATHLETES (78%); SUMMER OLYMPICS (78%); VETERANS (78%); WOMEN (78%); GOVERNMENT & PUBLIC ADMINISTRATION (72%); PART TIME EMPLOYMENT (68%); REGIONAL & LOCAL GOVERNMENTS (67%); CRICKET (62%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (79%); GUJARAT, INDIA (79%); HARYANA, INDIA (79%); INDIA (95%); ASIA (92%)\n\nLoad-Date: August 9, 2021\n\n\n
739 \nSubject: BOXING (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SPORTS OFFICIATING (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (89%); 2016 RIO SUMMER OLYMPICS (79%); ATHLETES (78%); 2012 LONDON SUMMER OLYMPICS (71%)\n\nGeographic: LONDON, ENGLAND (57%); INDIA (91%); DOMINICAN REPUBLIC (57%)\n\nLoad-Date: July 26, 2021\n\n\n
740 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); INTERNET SOCIAL NETWORKING (89%); EXECUTIVES (87%); TRENDS (85%); CONSUMERS (79%); EXERCISE & FITNESS (78%); SOCIAL MEDIA INFLUENCERS (78%); CELEBRITIES (75%); MANAGERS & SUPERVISORS (68%); YOUTH MARKET (65%)\n\nCompany: DOMINO'S PIZZA INC (92%); TWITTER INC (85%); JUBILANT FOODWORKS LTD (55%)\n\nTicker: DPZ (NYSE) (92%); TWTR (NYSE) (85%); JUBLFOOD (NSE) (55%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (92%); SIC5812 EATING PLACES (92%); NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (85%); INTERNET SOCIAL NETWORKING (89%); PRODUCT ENDORSEMENTS (87%); SOCIAL MEDIA INFLUENCERS (78%); CELEBRITIES (75%); YOUTH MARKET (65%)\n\nPerson: PRIYANKA CHOPRA (79%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: July 30, 2021\n\n\n
741 \nSubject: OLYMPICS (91%); 2016 RIO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (89%); SUMMER OLYMPICS (89%); BADMINTON (78%); INTERVIEWS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%); WOMEN (78%); SPORTS & RECREATION (76%); EMOTIONS (68%)\n\nGeographic: NEW DELHI, INDIA (89%); HYDERABAD, ANDHRA PRADESH, INDIA (58%); TOKYO, JAPAN (56%); INDIA (93%)\n\nLoad-Date: August 3, 2021\n\n\n
742 \nSubject: OLYMPICS (91%); EMOTIONS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); ATHLETES (79%); MEN'S SPORTS (79%); STADIUMS & ARENAS (79%); SUMMER OLYMPICS (78%); TOURNAMENTS (78%); MEN (73%); TRENDS (73%)\n\nGeographic: INDIA (96%); UNITED KINGDOM (88%); BELGIUM (73%); SPAIN (57%)\n\nLoad-Date: August 2, 2021\n\n\n
743 \nSubject: WOMEN'S SPORTS (91%); ACTORS & ACTRESSES (90%); COACHES & TRAINERS (90%); DIWALI (90%); FIELD HOCKEY (90%); FAMILY (89%); OLYMPICS (89%); ATHLETES (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (72%)\n\nIndustry: ACTORS & ACTRESSES (90%)\n\nPerson: SHAH RUKH KHAN (93%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
744 \nSubject: WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (89%); OLYMPICS (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); SUMMER OLYMPICS (89%); TOURNAMENTS (89%); WINTER OLYMPICS (89%); ATHLETES (78%); PROFESSIONAL SPORTS (78%); SPORTS SPONSORSHIP (78%); SCHOOL SPORTS (73%); CHILDREN (66%); CULTURE DEPARTMENTS (60%)\n\nIndustry: SPONSORSHIP (90%); SPORTS SPONSORSHIP (78%)\n\nGeographic: TOKYO, JAPAN (58%); ODISHA, INDIA (96%); INDIA (96%); UNITED KINGDOM (79%)\n\nLoad-Date: August 2, 2021\n\n\n
745 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); HEADS OF STATE & GOVERNMENT (89%); POLITICS (87%); PRIME MINISTERS (87%); LEGISLATIVE BODIES (78%); PUBLIC POLICY (78%); SPORTS & RECREATION EVENTS (78%); 2016 RIO SUMMER OLYMPICS (77%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%); TOURNAMENTS (76%); TRENDS & EVENTS (75%); INTEREST RATES (67%); MONETARY POLICY (67%); AGRICULTURAL LAW (63%); CENTRAL BANKS (62%); ECONOMIC POLICY (62%); COVID CORONAVIRUS (61%)\n\nCompany: RESERVE BANK OF INDIA (82%)\n\nIndustry: NAICS521110 MONETARY AUTHORITIES - CENTRAL BANK (82%); SIC6011 FEDERAL RESERVE BANKS (82%); BANKING & FINANCE (67%); BANKING & FINANCE REGULATION & POLICY (67%); INTEREST RATES (67%); MONETARY POLICY (67%); AGRICULTURAL LAW (63%); CENTRAL BANKS (62%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (79%); INDIA (97%); UNITED KINGDOM (90%)\n\nLoad-Date: August 6, 2021\n\n\n
746 \nSubject: RELIGION (91%); CUSTOMS & CULTURAL HERITAGE (90%); HINDUS & HINDUISM (90%); HISTORIC SITES (90%); OLYMPICS (86%); SPORTS AWARDS (86%); NEWS BRIEFS (78%); PROFESSIONAL SPORTS (76%); SPORTS & RECREATION EVENTS (76%); UNITED NATIONS (76%); SPORTS & RECREATION (71%); EXECUTIVE MOVES (70%); GOVERNMENT ADVISORS & MINISTERS (69%); SUMMER OLYMPICS (68%); WRESTLING (68%); ACTORS & ACTRESSES (63%)\n\nIndustry: HISTORIC SITES (90%); MEDIA CONTENT (78%); ACTORS & ACTRESSES (63%)\n\nGeographic: KARNATAKA, INDIA (90%); DUBAI, UNITED ARAB EMIRATES (75%); TAMIL NADU, INDIA (59%); UTTAR PRADESH, INDIA (59%); INDIA (96%); UNITED ARAB EMIRATES (94%); CHINA (93%); PAKISTAN (92%); AFGHANISTAN (79%)\n\nLoad-Date: July 25, 2021\n\n\n
747 \nSubject: OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (89%); KAZAKHSTAN (69%); AZERBAIJAN (54%)\n\nLoad-Date: August 7, 2021\n\n\n
748 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nGeographic: HYDERABAD, ANDHRA PRADESH, INDIA (74%); MUMBAI, MAHARASHTRA, INDIA (74%); CHENNAI, TAMIL NADU, INDIA (58%); TOKYO, JAPAN (58%); MANIPUR, INDIA (73%); INDIA (95%)\n\nLoad-Date: July 25, 2021\n\n\n
749 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); STADIUMS & ARENAS (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); TOURNAMENTS (74%); SPORTS & RECREATION (73%); 2012 LONDON SUMMER OLYMPICS (69%); SUMMER OLYMPICS (69%)\n\nGeographic: TOKYO, JAPAN (89%); LONDON, ENGLAND (52%); KERALA, INDIA (58%); INDIA (95%); GERMANY (90%); BELGIUM (52%)\n\nLoad-Date: August 5, 2021\n\n\n
750 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: IRAN, ISLAMIC REPUBLIC OF (77%); KYRGYZSTAN (77%)\n\nLoad-Date: August 6, 2021\n\n\n
751 \nSubject: BADMINTON (90%); OLYMPICS (90%); WOMEN'S SPORTS (78%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: TAIPEI, TAIWAN (88%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (72%); TOKYO, JAPAN (56%); INDIA (92%); INDONESIA (90%); UNITED KINGDOM (72%)\n\nLoad-Date: July 27, 2021\n\n\n
752 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (89%); OLYMPICS (89%); WRESTLING (89%); NEGATIVE PERSONAL NEWS (78%); 2016 RIO SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); SUMMER OLYMPICS (77%)\n\nGeographic: INDIA (90%); IRAN, ISLAMIC REPUBLIC OF (53%)\n\nLoad-Date: August 6, 2021\n\n\n
753 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (93%); JAPAN (58%); HONG KONG (51%); SPAIN (50%)\n\nLoad-Date: July 30, 2021\n\n\n
754 \nSubject: GOLF (90%); GOLF TOURNAMENTS (89%); OLYMPICS (89%); PROFESSIONAL SPORTS (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); RANKINGS (78%); 2016 RIO SUMMER OLYMPICS (76%); ATHLETES (76%); SPORTS AWARDS (76%)\n\nPerson: LYDIA KO (79%)\n\nGeographic: INDIA (91%); JAPAN (88%); NEW ZEALAND (73%)\n\nLoad-Date: August 7, 2021\n\n\n
755 \nSubject: COVID CORONAVIRUS (92%); COVID-19 CORONAVIRUS (91%); EPIDEMICS (90%); INFECTIOUS DISEASE (90%); PANDEMICS (90%); PRIME MINISTERS (90%); PUBLIC HEALTH (90%); TRENDS & EVENTS (90%); 2020 TOKYO SUMMER OLYMPICS (87%); OLYMPICS (87%); SUMMER OLYMPICS (86%); CORONAVIRUSES (78%); DISEASE REPORTING (78%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); HEADS OF STATE & GOVERNMENT (78%); PUBLIC HEALTH ADMINISTRATION (78%); VIRUSES (78%); ELECTIONS & POLITICS (73%); VACCINATION & IMMUNIZATION (73%); VACCINES (73%); EXERCISE & FITNESS (71%); WEIGHTLIFTING (70%); WOMEN'S SPORTS (70%)\n\nIndustry: DESTINATIONS & ATTRACTIONS (78%); VACCINATION & IMMUNIZATION (73%); VACCINES (73%); TOURISM (70%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (91%); MANIPUR, INDIA (79%); INDIA (95%); PAKISTAN (79%)\n\nLoad-Date: July 25, 2021\n\n\n
756 \nSubject: SHOOTING SPORTS (90%); OLYMPICS (89%); WEAPONS & ARMS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); TOURNAMENTS (78%); TRENDS & EVENTS (78%); SPORTS AWARDS (77%); SPORTS & RECREATION (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (89%); INDIA (94%); KOREA, REPUBLIC OF (79%)\n\nLoad-Date: July 25, 2021\n\n\n
757 \nSubject: CELEBRITIES (90%); ATHLETES (89%); OLYMPICS (89%); TRACK & FIELD (89%); TENNIS (86%); SUMMER OLYMPICS (78%); EMOTIONS (77%); SPORTS & RECREATION (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); 2020 TOKYO SUMMER OLYMPICS (76%); TENNIS TOURNAMENTS (72%); GOLF (65%)\n\nIndustry: CELEBRITIES (90%)\n\nGeographic: BEIJING, CHINA (75%); NORTH CENTRAL CHINA (75%); INDIA (94%); GERMANY (88%); CHINA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
758 \nSubject: TABLE TENNIS (90%); WEDDINGS & ENGAGEMENTS (90%); COVID CORONAVIRUS (89%); COVID-19 CORONAVIRUS (89%); INFECTIOUS DISEASE (89%); VACCINES (89%); WOMEN'S SPORTS (78%); EMOTIONS (73%)\n\nIndustry: VACCINES (89%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (73%); CHENNAI, TAMIL NADU, INDIA (59%); FRANCE (92%); GERMANY (91%); INDIA (90%); EUROPE (73%)\n\nLoad-Date: July 24, 2021\n\n\n
759 \nSubject: SPORTS GOVERNING BODIES (90%); TRACK & FIELD (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%); MATERIALS SCIENCE & TECHNOLOGY (77%); SPORTS AWARDS (76%); SCIENCE & TECHNOLOGY (69%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (89%)\n\nLoad-Date: August 10, 2021\n\n\n
760 \nSubject: SPORTS & RECREATION (90%); WOMEN (90%); SPORTS & RECREATION EVENTS (89%); WOMEN'S SPORTS (89%); ATHLETES (78%); COACHES & TRAINERS (78%); COLLEGE & UNIVERSITY SPORTS (78%); MEN'S SPORTS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (74%); SPORTS FANS (73%); SCHOOL ATHLETIC STAFF (68%)\n\nIndustry: COLLEGE & UNIVERSITY SPORTS (78%)\n\nGeographic: UTTAR PRADESH, INDIA (91%); UTTARAKHAND, INDIA (79%); INDIA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
761 \nSubject: OLYMPICS (92%); SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); CELEBRITIES (78%); EMOJIS & EMOTICONS (77%); PHOTO & VIDEO SHARING (77%); SOCIAL MEDIA (71%)\n\nIndustry: CELEBRITIES (78%); MEDIA CONTENT (78%); EMOJIS & EMOTICONS (77%); PHOTO & VIDEO SHARING (77%); SOCIAL MEDIA (71%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
762 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); MEN'S SPORTS (90%); OLYMPICS (90%); TOURNAMENTS (90%); ATHLETES (89%); FIELD HOCKEY (89%); SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); SEOUL, KOREA, REPUBLIC OF (58%); ARGENTINA (94%); INDIA (94%); AUSTRALIA (93%); NEW ZEALAND (73%); JAPAN (58%); SOUTH AMERICA (56%)\n\nLoad-Date: July 29, 2021\n\n\n
763 \nSubject: CLIMBING (90%); SPORTS & RECREATION EVENTS (90%); OLYMPICS (89%); ROCK CLIMBING (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); ATHLETES (78%); CURRICULA (77%); BASKETBALL (73%); CRICKET (70%)\n\nPerson: MICHAEL JORDAN (79%); USAIN BOLT (79%)\n\nGeographic: CZECH REPUBLIC (58%)\n\nLoad-Date: August 5, 2021\n\n\n
764 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); ATHLETES (90%); CELEBRITIES (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); AWARDS & PRIZES (78%); SPORTS & RECREATION EVENTS (78%); TRENDS & EVENTS (78%); CULTURE DEPARTMENTS (77%); GOVERNMENT & PUBLIC ADMINISTRATION (73%); REGIONAL & LOCAL GOVERNMENTS (68%); ASSOCIATIONS & ORGANIZATIONS (65%)\n\nCompany: MAHINDRA & MAHINDRA LTD (56%)\n\nTicker: MHID (LSE) (56%); M&M (NSE) (56%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (56%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (56%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (56%); CELEBRITIES (90%); GASOLINE (90%); MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (72%); GUJARAT, INDIA (91%); HARYANA, INDIA (79%); PUNJAB, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
765 \nSubject: APPOINTMENTS (90%); FIELD HOCKEY (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); JOB CREATION (73%); POLICE FORCES (71%)\n\nIndustry: TRAVEL TICKETS (70%)\n\nGeographic: TOKYO, JAPAN (73%); MANIPUR, INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
766 \nSubject: EDITORIALS & OPINIONS (99%); WOMEN'S SPORTS (92%); SPORTS & RECREATION (90%); WOMEN (90%); ATHLETES (89%); MEN'S SPORTS (89%); NEGATIVE MISC NEWS (89%); NEGATIVE PERSONAL NEWS (89%); SEX & GENDER ISSUES (89%); SPORTS GOVERNING BODIES (89%); TENNIS (89%); GENDER & SEX DISCRIMINATION (84%); SHAMING (79%); EQUAL PAY (78%); OLYMPICS (78%); SPORTS REGULATION & POLICY (78%); NEGATIVE NEWS (76%); FINES & PENALTIES (73%); HANDBALL (73%); BADMINTON (71%); SUMMER OLYMPICS (70%); WAGE DISCRIMINATION (64%); WAGES & SALARIES (60%); PSYCHOLOGICAL STRESS (50%)\n\nIndustry: SWIMWEAR (75%)\n\nPerson: SERENA WILLIAMS (51%)\n\nLoad-Date: July 31, 2021\n\n\n
767 \nSubject: TRACK & FIELD (91%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); OLYMPICS (78%); SPORTS FANS (78%); SUMMER OLYMPICS (78%)\n\nLoad-Date: August 8, 2021\n\n\n
768 \nSubject: SPORTS AWARDS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); ATHLETES (78%); WOMEN'S SPORTS (78%); SUMMER OLYMPICS (77%); WOMEN (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (93%); GERMANY (90%)\n\nLoad-Date: August 5, 2021\n\n\n
769 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); EXECUTIVES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); CELEBRITIES (78%); ELECTRONIC GOVERNMENT (78%); MANAGERS & SUPERVISORS (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (77%); COMPANY STRUCTURES & OWNERSHIP (74%)\n\nCompany: BEST INC (90%)\n\nTicker: BEST (NYSE) (90%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (90%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (90%); CARPET & RUG MILLS (89%); CELEBRITIES (78%); FLOORING (78%); SPONSORSHIP (78%); PUBLIC SERVICE ADVERTISING (64%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (92%)\n\nLoad-Date: August 9, 2021\n\n\n
770 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); VETERANS (90%); MEN'S SPORTS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS FANS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (76%); UNIVERSITY ADMINISTRATION (60%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (91%); TOKYO, JAPAN (73%); WEST BENGAL, INDIA (59%); INDIA (94%); AUSTRALIA (79%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
771 \nSubject: ARCHERY (92%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); 2016 RIO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%)\n\nGeographic: BANGKOK, THAILAND (73%); LOS ANGELES, CA, USA (72%); TOKYO, JAPAN (72%); INDIA (93%); BHUTAN (92%)\n\nLoad-Date: July 24, 2021\n\n\n
772 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); TRACK & FIELD (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); BEACHES (78%); SPORTS & RECREATION EVENTS (76%); ANIMATION (73%)\n\nIndustry: ANIMATION (73%)\n\nGeographic: TOKYO, JAPAN (71%); ODISHA, INDIA (89%); INDIA (94%); CZECH REPUBLIC (52%)\n\nLoad-Date: August 7, 2021\n\n\n
773 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); 2012 LONDON SUMMER OLYMPICS (78%); HEADS OF STATE & GOVERNMENT (78%); PRIME MINISTERS (78%); SPORTS AWARDS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: RAM NATH KOVIND (90%); NARENDRA MODI (79%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (89%); LONDON, ENGLAND (53%); HARYANA, INDIA (58%); INDIA (94%); KAZAKHSTAN (91%)\n\nLoad-Date: August 7, 2021\n\n\n
774 \nSubject: ELECTIONS & POLITICS (91%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (78%); NEGATIVE PERSONAL NEWS (78%); TYPES OF GOVERNMENT (78%); CULTURE DEPARTMENTS (77%); NEGATIVE NEWS (75%); HUMAN RIGHTS VIOLATIONS (73%); BADMINTON (72%); EXERCISE & FITNESS (69%); WEIGHTLIFTING (69%)\n\nGeographic: ASSAM, INDIA (74%)\n\nLoad-Date: August 4, 2021\n\n\n
775 \nSubject: ATHLETES (90%); SPORTS AWARDS (90%); WOMEN (90%); WOMEN'S SPORTS (90%); OLYMPICS (89%); RUNNING (78%); SPORTS REGULATION & POLICY (78%); OLYMPIC COMMITTEES (73%)\n\nGeographic: NAMIBIA (90%)\n\nLoad-Date: August 4, 2021\n\n\n
776 \nSubject: CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); NEGATIVE PERSONAL NEWS (90%); ARRESTS (89%); ABUSE & NEGLECT (78%); SPORTS GOVERNING BODIES (78%); WOMEN'S SPORTS (78%); CRIMINAL CONVICTIONS (77%); DISORDERLY CONDUCT (76%); INVESTIGATIONS (75%); COACHES & TRAINERS (73%); POLICE FORCES (72%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: UTTARAKHAND, INDIA (89%)\n\nLoad-Date: August 6, 2021\n\n\n
777 \nSubject: DRUGS IN SPORTS (92%); WEIGHTLIFTING (92%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); DRUG TESTING (78%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (59%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); INDONESIA (73%)\n\nLoad-Date: July 26, 2021\n\n\n
778 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); OLYMPICS (90%); RACE & ETHNICITY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); FILM (77%); SPORTS & RECREATION (76%); VISUAL ARTISTS (69%)\n\nIndustry: ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); FILM (77%); VISUAL ARTISTS (69%)\n\nPerson: PRIYANKA CHOPRA (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); MANIPUR, INDIA (95%); INDIA (91%)\n\nLoad-Date: July 28, 2021\n\n\n
779 \nSubject: BOXING (90%); OLYMPICS (90%); SPORTS AWARDS (78%); SUMMER OLYMPICS (75%)\n\nIndustry: MEDIA CONTENT (78%)\n\nLoad-Date: August 4, 2021\n\n\n
780 \nSubject: TENNIS (93%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS GOVERNING BODIES (89%); SUMMER OLYMPICS (89%); NEGATIVE PERSONAL NEWS (78%); PRESS CONFERENCES (78%); ATHLETES (77%); OLYMPIC COMMITTEES (77%); SPORTS & RECREATION (77%); SPORTS AWARDS (77%); TENNIS TOURNAMENTS (77%); TRENDS & EVENTS (74%); SOCIAL MEDIA (72%); MENTAL HEALTH (67%); FINES & PENALTIES (66%)\n\nCompany: NETFLIX INC (57%)\n\nTicker: NFLX (NASDAQ) (57%)\n\nIndustry: NAICS532282 VIDEO TAPE & DISC RENTAL (57%); SIC7841 VIDEO TAPE RENTAL (57%); CAMERAS (77%); DOLL & STUFFED TOY MFG (74%); SOCIAL MEDIA (72%)\n\nPerson: NAOMI OSAKA (92%)\n\nGeographic: OSAKA, JAPAN (91%); TOKYO, JAPAN (88%); NEW DELHI, INDIA (74%); PARIS, FRANCE (57%); INDIA (90%); JAPAN (78%)\n\nLoad-Date: July 25, 2021\n\n\n
781 \nSubject: OLYMPICS (92%); SPORTS AWARDS (91%); ATHLETES (90%); CELEBRITIES (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); AWARDS & PRIZES (78%); SPORTS & RECREATION EVENTS (78%); TRENDS & EVENTS (78%); CULTURE DEPARTMENTS (77%); GOVERNMENT & PUBLIC ADMINISTRATION (73%); GASOLINE PRICES (72%); OIL & GAS PRICES (72%); REGIONAL & LOCAL GOVERNMENTS (68%); ASSOCIATIONS & ORGANIZATIONS (64%)\n\nCompany: MAHINDRA & MAHINDRA LTD (56%)\n\nTicker: MHID (LSE) (56%); M&M (NSE) (56%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (56%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (56%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (56%); CELEBRITIES (90%); GASOLINE (90%); MEDIA CONTENT (78%); GASOLINE PRICES (72%); OIL & GAS PRICES (72%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (72%); GUJARAT, INDIA (91%); HARYANA, INDIA (79%); PUNJAB, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
782 \nSubject: COACHES & TRAINERS (90%); FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); ATHLETES (89%); OLYMPICS (89%); WOMEN (89%); APPOINTMENTS (78%); EMOTIONS (78%); MEN'S SPORTS (78%); 2016 RIO SUMMER OLYMPICS (68%)\n\nGeographic: TOKYO, JAPAN (73%); BEIJING, CHINA (68%); BANGALORE, KARNATAKA, INDIA (59%); NORTH CENTRAL CHINA (68%); ODISHA, INDIA (59%); INDIA (94%); NETHERLANDS (92%); AUSTRALIA (91%); GREECE (68%)\n\nLoad-Date: August 2, 2021\n\n\n
783 \nSubject: OLYMPICS (89%); SAFETY (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); ATHLETES (79%); GYMNASTICS (79%); PROFESSIONAL SPORTS (79%); NEGATIVE PERSONAL NEWS (78%); NEGATIVE NEWS (76%); MENTAL HEALTH (71%)\n\nCompany: BEAM GLOBAL (69%)\n\nTicker: BEEM (NASDAQ) (69%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (69%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (69%)\n\nPerson: SIMONE BILES (92%); NAOMI OSAKA (74%)\n\nGeographic: TOKYO, JAPAN (52%); UNITED ARAB EMIRATES (73%); INDIA (59%)\n\nLoad-Date: August 10, 2021\n\n\n
784 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (78%); FENCING (78%); STADIUMS & ARENAS (78%); WOMEN'S SPORTS (78%)\n\nIndustry: ACTIVEWEAR & SPORTSWEAR (78%)\n\nGeographic: TOKYO, JAPAN (88%); HARYANA, INDIA (59%); INDIA (90%); ALGERIA (71%)\n\nLoad-Date: July 28, 2021\n\n\n
785 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (78%); WOMEN (73%)\n\nGeographic: TOKYO, JAPAN (58%); PUNJAB, INDIA (73%); INDIA (91%)\n\nLoad-Date: August 6, 2021\n\n\n
786 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); WRESTLING (90%); 2020 TOKYO SUMMER OLYMPICS (89%); ATHLETES (89%); BOXING (89%); SPORTS OFFICIATING (89%); SUMMER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS GOVERNING BODIES (78%); NEGATIVE PERSONAL NEWS (77%); OLYMPIC COMMITTEES (73%)\n\nGeographic: TOKYO, JAPAN (58%); KAZAKHSTAN (90%)\n\nLoad-Date: August 6, 2021\n\n\n
787 \nSubject: MEN (90%); FIELD HOCKEY (78%); WOMEN (78%); NEGATIVE NEWS (77%); NEGATIVE PERSONAL NEWS (77%); WOMEN'S SPORTS (70%)\n\nGeographic: INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
788 \nSubject: WEIGHTLIFTING (91%); SPORTS & RECREATION (90%); MENSTRUATION (89%); COACHES & TRAINERS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); PERSONAL PROTECTIVE EQUIPMENT (76%); ATHLETES (73%); WOMEN'S HEALTH (73%); COVID CORONAVIRUS (71%); MANDATORY COVID TESTING (71%); GENETIC ANALYTIC TECHNIQUES (69%); EXERCISE & FITNESS (66%); COVID-19 CORONAVIRUS (54%)\n\nIndustry: GENETIC ANALYTIC TECHNIQUES (69%)\n\nGeographic: TOKYO, JAPAN (88%)\n\nLoad-Date: July 27, 2021\n\n\n
789 \nSubject: WOMEN'S SPORTS (94%); FIELD HOCKEY (90%); OLYMPICS (89%); 2020 TOKYO SUMMER OLYMPICS (77%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: GUJARAT, INDIA (79%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
790 \nSubject: WRESTLING (94%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SOCIAL MEDIA (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); ACTORS & ACTRESSES (89%); ELECTIONS & POLITICS (89%); TRENDS & EVENTS (76%)\n\nIndustry: SOCIAL MEDIA (90%); ACTORS & ACTRESSES (89%)\n\nGeographic: BUDAPEST, HUNGARY (90%); NEW DELHI, INDIA (79%); TOKYO, JAPAN (69%); HUNGARY (93%); INDIA (93%); BELARUS (79%)\n\nLoad-Date: July 26, 2021\n\n\n
791 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); CHILDHOOD OBESITY (90%); OBESITY (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SELF IMPROVEMENT (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: SALMAN KHAN (79%)\n\nGeographic: INDIA (89%)\n\nLoad-Date: August 9, 2021\n\n\n
792 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); CHILDHOOD OBESITY (90%); OBESITY (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SELF IMPROVEMENT (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: SALMAN KHAN (79%)\n\nGeographic: INDIA (89%)\n\nLoad-Date: August 9, 2021\n\n\n
793 \nSubject: INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); PHOTO & VIDEO SHARING (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); VIRAL VIDEOS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); EXERCISE & FITNESS (77%); BASKETBALL (72%); WEIGHTLIFTING (72%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); INTERNET VIDEO (90%); PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%); MEDIA CONTENT (78%)\n\nGeographic: INDIA (89%)\n\nLoad-Date: July 27, 2021\n\n\n
794 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); ATHLETES (89%); SPORTING GOODS (78%); SPORTS AWARDS (78%); TOURNAMENTS (78%); OLYMPIC COMMITTEES (72%); TRENDS & EVENTS (70%); CHILDREN (68%); PREGNANCY & CHILDBIRTH (64%)\n\nIndustry: CONSUMER ELECTRONICS (78%); SPORTING GOODS (78%); TELEVISION EQUIPMENT (76%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); ODISHA, INDIA (92%); INDIA (93%)\n\nLoad-Date: August 5, 2021\n\n\n
795 \nSubject: GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WATER RESOURCES (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%); TALKS & MEETINGS (78%); WATER SUPPLY (77%)\n\nGeographic: CHANDIGARH, INDIA (79%); HARYANA, INDIA (79%)\n\nLoad-Date: August 9, 2021\n\n\n
796 \nSubject: APPOINTMENTS (92%); GOVERNMENT & PUBLIC ADMINISTRATION (92%); ATHLETES (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); POLICE FORCES (90%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); RESIGNATIONS (78%); SPORTS & RECREATION (78%); MARTIAL ARTS (73%); WEIGHTLIFTING (72%)\n\nGeographic: NEW DELHI, INDIA (79%); MANIPUR, INDIA (94%); INDIA (79%)\n\nLoad-Date: July 27, 2021\n\n\n
797 \nSubject: FIELD HOCKEY (90%); OLYMPICS (89%); SPORTS CAMPS & SCHOOLS (89%); 2020 TOKYO SUMMER OLYMPICS (77%); MEN'S SPORTS (77%); SPORTS AWARDS (77%); SUMMER OLYMPICS (72%); EMOTIONS (66%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (73%); MADHYA PRADESH, INDIA (94%); INDIA (94%); BELGIUM (56%)\n\nLoad-Date: August 5, 2021\n\n\n
798 \nSubject: WRESTLING (95%); ATHLETES (90%); CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (78%)\n\nCompany: TWITTER INC (92%); ABHISHEK CORP LTD (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); NAICS313110 FIBER, YARN & THREAD MILLS (92%); SIC2281 YARN SPINNING MILLS (92%); CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); SOCIAL MEDIA (90%)\n\nGeographic: BUDAPEST, HUNGARY (91%); HUNGARY (93%); INDIA (93%)\n\nLoad-Date: July 26, 2021\n\n\n
799 \nSubject: OLYMPICS (91%); WRESTLING (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); OLYMPIC COMMITTEES (77%); SPORTS & RECREATION EVENTS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (94%); KAZAKHSTAN (73%); RUSSIAN FEDERATION (73%); COLOMBIA (68%); BULGARIA (58%)\n\nLoad-Date: August 5, 2021\n\n\n
800 \nSubject: CRICKET (90%); OLYMPICS (90%); TRENDS & EVENTS (90%); PRESS CONFERENCES (89%); RUNNING (89%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); TRACK & FIELD (78%)\n\nGeographic: NOTTINGHAM, ENGLAND (91%); TOKYO, JAPAN (54%); INDIA (95%); ENGLAND (94%)\n\nLoad-Date: August 8, 2021\n\n\n
801 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION FACILITIES & VENUES (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (76%); ELECTIONS & POLITICS (72%)\n\nIndustry: TRUCK DRIVERS (75%); MOTORCOACHES & BUSES (69%)\n\nGeographic: MANIPUR, INDIA (93%)\n\nLoad-Date: July 30, 2021\n\n\n
802 \nSubject: ATHLETES (90%); TENNIS (90%); PROFESSIONAL SPORTS (89%); TENNIS TOURNAMENTS (89%); OLYMPICS (88%); 2020 TOKYO SUMMER OLYMPICS (79%); SPORTS AWARDS (79%); SUMMER OLYMPICS (79%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS FANS (78%); EMOTIONS (76%); MEDICINE & HEALTH (76%); MENTAL HEALTH (76%); EMOJIS & EMOTICONS (75%); PROFILES & BIOGRAPHIES (73%); ARTISTS & PERFORMERS (70%); PAINTING (70%)\n\nIndustry: EMOJIS & EMOTICONS (75%); ARTISTS & PERFORMERS (70%); PAINTING (70%)\n\nPerson: SIMONE BILES (94%); NAOMI OSAKA (73%); RAFAEL NADAL (58%); SERENA WILLIAMS (58%)\n\nGeographic: CHINA (92%)\n\nLoad-Date: August 1, 2021\n\n\n
803 \nSubject: MEN (90%); FIELD HOCKEY (78%); NEGATIVE NEWS (78%); WOMEN (78%); NEGATIVE PERSONAL NEWS (76%); WOMEN'S SPORTS (70%)\n\nGeographic: INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
804 \nSubject: CHILDREN (90%); FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); STADIUMS & ARENAS (89%); TOURNAMENTS (89%); COACHES & TRAINERS (78%); OLYMPICS (78%); SCHOOL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); FAMILY (75%); HIGH SCHOOL SPORTS (73%); TEACHING & TEACHERS (73%); BOARDING SCHOOLS (72%); EDUCATION & TRAINING (72%); PARAEDUCATORS (72%); STUDENTS & STUDENT LIFE (72%); MIDDLE & JUNIOR HIGH SCHOOLS (67%); POVERTY & HOMELESSNESS (55%)\n\nIndustry: HIGH SCHOOL SPORTS (73%); BOARDING SCHOOLS (72%); MIDDLE & JUNIOR HIGH SCHOOLS (67%)\n\nGeographic: TOKYO, JAPAN (73%); JHARKHAND, INDIA (94%); BIHAR, INDIA (92%); INDIA (93%); UNITED KINGDOM (73%)\n\nLoad-Date: August 8, 2021\n\n\n
805 \nSubject: FIELD HOCKEY (90%); STADIUMS & ARENAS (90%); CHILDREN, ADOLESCENTS & TEENS (89%); ATHLETES (78%); COACHES & TRAINERS (78%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); SPORTING GOODS (73%); OLYMPICS (69%)\n\nIndustry: SPORTING GOODS (73%)\n\nGeographic: HARYANA, INDIA (91%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
806 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CONSERVATISM (90%); GYMNASTICS (90%); LIBERALISM (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ATHLETES (89%); CELEBRITIES (89%); MENTAL HEALTH (89%); NEGATIVE NEWS (89%); NEGATIVE PERSONAL NEWS (89%); RACE & ETHNICITY (89%); SPORTS AWARDS (89%); ABUSE & NEGLECT (78%); GENDER EQUALITY (78%); LITIGATION (78%); PROFESSIONAL SPORTS (78%); WOMEN (78%); MENTAL ILLNESS (77%); NEGATIVE SOCIETAL NEWS (74%); DISEASES & DISORDERS (71%); SENTENCING (61%); CRIME, LAW ENFORCEMENT & CORRECTIONS (60%); JAIL SENTENCING (60%); SEX OFFENSES (60%)\n\nCompany: GRAHAM HOLDINGS CO (56%)\n\nTicker: GHC (NYSE) (56%)\n\nIndustry: NAICS517311 WIRED TELECOMMUNICATIONS CARRIERS (56%); NAICS515120 TELEVISION BROADCASTING (56%); NAICS511120 PERIODICAL PUBLISHERS (56%); NAICS511110 NEWSPAPER PUBLISHERS (56%); CELEBRITIES (89%); INTERNET BROADCASTING (74%); NETWORK TELEVISION (60%); PODCASTING (54%)\n\nPerson: SIMONE BILES (94%); ALY RAISMAN (79%); MICHAEL PHELPS (79%)\n\nGeographic: UNITED STATES (94%)\n\nLoad-Date: July 29, 2021\n\n\n
807 \nSubject: ABUSE & NEGLECT (92%); CELEBRITIES (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); NEGATIVE PERSONAL NEWS (90%); WOMEN'S SPORTS (90%); BLACK LIVES MATTER (89%); NEGATIVE MISC NEWS (78%); RACE & ETHNICITY (78%); SOCIAL MEDIA (78%); ARRESTS (77%); CRIME, LAW ENFORCEMENT & CORRECTIONS (77%); DISORDERLY CONDUCT (77%); OLYMPICS (77%); RACISM & XENOPHOBIA (73%); POLICE FORCES (71%); CRIMINAL LAW (53%)\n\nIndustry: CELEBRITIES (90%); SOCIAL MEDIA (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); ARGENTINA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
808 \nSubject: WOMEN'S SPORTS (93%); FIELD HOCKEY (90%); PRIME MINISTERS (90%); COACHES & TRAINERS (78%); EMOTIONS (78%); OLYMPICS (76%); ATHLETES (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
809 \nSubject: GOVERNMENT & PUBLIC ADMINISTRATION (90%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (90%); US INDEPENDENCE DAY (89%); STATE & NATIONAL SYMBOLS (88%); FAMILY (78%); GOVERNMENT ADVISORS & MINISTERS (78%); CULTURE DEPARTMENTS (77%); ATHLETES (73%); CIVIL SERVICES (72%); OLYMPICS (69%); SPORTS AWARDS (69%); SUMMER OLYMPICS (69%)\n\nCompany: TWITTER INC (91%)\n\nTicker: TWTR (NYSE) (91%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (91%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (90%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (92%); INDIA (93%)\n\nLoad-Date: August 9, 2021\n\n\n
810 \nSubject: ATHLETES (90%); GYMNASTICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (77%); SOCIAL MEDIA (70%)\n\nIndustry: SOCIAL MEDIA (70%)\n\nPerson: JUSTIN BIEBER (90%); SIMONE BILES (79%)\n\nLoad-Date: July 29, 2021\n\n\n
811 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SOCIAL MEDIA (69%)\n\nCompany: MAHINDRA & MAHINDRA LTD (90%)\n\nTicker: MHID (LSE) (90%); M&M (NSE) (90%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (90%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (90%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (90%); MEDIA CONTENT (78%); SOCIAL MEDIA (69%)\n\nGeographic: TOKYO, JAPAN (73%); HARYANA, INDIA (74%); INDIA (93%); CZECH REPUBLIC (54%)\n\nLoad-Date: August 7, 2021\n\n\n
812 \nSubject: CELEBRITIES (90%); SPORTS & RECREATION (90%); OLYMPICS (79%); SPORTS AWARDS (78%); MEDICINE & HEALTH (77%); MENTAL HEALTH (77%); 2016 RIO SUMMER OLYMPICS (72%); SUMMER OLYMPICS (71%)\n\nIndustry: CELEBRITIES (90%); MEDIA CONTENT (78%)\n\nPerson: SIMONE BILES (79%)\n\nGeographic: TOKYO, JAPAN (90%)\n\nLoad-Date: July 28, 2021\n\n\n
813 \nSubject: OLYMPICS (91%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (77%); SPORTS & RECREATION (70%)\n\nGeographic: TOKYO, JAPAN (90%); FRANCE (73%)\n\nLoad-Date: August 6, 2021\n\n\n
814 \nSubject: SPORTS AWARDS (90%); WEIGHTLIFTING (89%); SPORTS & RECREATION (88%); COVID CORONAVIRUS (69%); EXERCISE & FITNESS (68%)\n\nGeographic: MANIPUR, INDIA (78%); INDIA (59%)\n\nLoad-Date: July 24, 2021\n\n\n
815 \nSubject: OLYMPICS (89%); SUMMER OLYMPICS (89%); CONSUMERS (79%); INTERVIEWS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); MANAGERS & SUPERVISORS (75%); WEIGHTLIFTING (75%); ENTREPRENEURSHIP (74%); EXECUTIVES (74%); OLYMPIC COMMITTEES (72%); SOCIAL MEDIA (72%); ANGEL INVESTORS (50%)\n\nCompany: DOMINO'S PIZZA INC (84%); COCA-COLA CO (52%)\n\nTicker: DPZ (NYSE) (84%); KO (NYSE) (52%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (84%); SIC5812 EATING PLACES (84%); NAICS312111 SOFT DRINK MANUFACTURING (52%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (52%); FAST FOOD RESTAURANTS (91%); SOFT DRINK INDUSTRY (77%); RESTAURANTS (73%); ADVERTISING SLOGANS (72%); DAIRY PRODUCTS (72%); SOCIAL MEDIA (72%); PRODUCT ENDORSEMENTS (68%); TELEVISION PROGRAMMING (56%); ANGEL INVESTORS (50%)\n\nGeographic: MANIPUR, INDIA (78%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
816 \nSubject: OLYMPICS (91%); WEIGHTLIFTING (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); CULTURE DEPARTMENTS (90%); PHOTO & VIDEO SHARING (90%); SPORTS AWARDS (90%); VIRAL VIDEOS (90%); SPORTS & RECREATION (78%); SUMMER OLYMPICS (77%)\n\nIndustry: PHOTO & VIDEO SHARING (90%); VIRAL VIDEOS (90%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: July 27, 2021\n\n\n
817 \nSubject: HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); STADIUMS & ARENAS (90%); FIELD HOCKEY (89%); OLYMPICS (89%); SPORTS AWARDS (88%); SUMMER OLYMPICS (88%); MEN'S SPORTS (77%); SPORTS & RECREATION FACILITIES & VENUES (77%); WOMEN'S SPORTS (77%); GOVERNMENT ADVISORS & MINISTERS (73%); 2020 TOKYO SUMMER OLYMPICS (72%); ATHLETES (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (94%)\n\nGeographic: NEW DELHI, INDIA (92%); AHMEDABAD, GUJARAT, INDIA (88%); MELBOURNE, AUSTRALIA (79%); VICTORIA, AUSTRALIA (79%); INDIA (93%); AUSTRALIA (79%); GERMANY (79%); UNITED KINGDOM (79%)\n\nLoad-Date: August 6, 2021\n\n\n
818 \nSubject: SPORTS AWARDS (90%); OLYMPICS (89%); SPORTS BUSINESS (79%); 2020 TOKYO SUMMER OLYMPICS (78%); COPYRIGHT (78%); ETHICS (78%); LEGAL NOTICES (78%); LISTINGS & NOTICES (78%); SPORTS MARKETING (78%); SUITS & CLAIMS (78%); SUMMER OLYMPICS (78%); BRANDING (77%); SPORTS & RECREATION (76%); WEIGHTLIFTING (69%); MULTINATIONAL CORPORATIONS (55%)\n\nCompany: ADITYA BIRLA GROUP (57%)\n\nIndustry: SPORTS MARKETING (78%); BRANDING (77%); MARKETING & ADVERTISING AGENCIES (72%)\n\nLoad-Date: August 6, 2021\n\n\n
819 \nSubject: ATHLETES (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); COURTSHIP & DATING (89%); PHOTO & VIDEO SHARING (89%); TENNIS (89%); VIRAL VIDEOS (89%); SOCIAL MEDIA (78%); CELEBRITIES (75%); SPORTS AWARDS (75%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (89%); VIRAL VIDEOS (89%); SOCIAL MEDIA (78%); CELEBRITIES (75%)\n\nPerson: AMITABH BACHCHAN (79%); SHAH RUKH KHAN (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (90%); GOA, INDIA (74%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
820 \nSubject: ATHLETES (78%); BOXING (78%); OLYMPICS (78%); SPORTS AWARDS (78%); SPORTS FANS (73%); 2016 RIO SUMMER OLYMPICS (72%)\n\nGeographic: INDIA (92%); COLOMBIA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
821 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SPORTS AWARDS (77%); SPORTS & RECREATION EVENTS (75%); SUMMER OLYMPICS (75%); TOURNAMENTS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: ASSAM, INDIA (71%); SIKKIM, INDIA (71%)\n\nLoad-Date: August 4, 2021\n\n\n
822 \nSubject: WOMEN'S SPORTS (96%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); WOMEN (90%); COACHES & TRAINERS (89%); MEN'S SPORTS (78%); OLYMPICS (78%); EMOTIONS (63%)\n\nIndustry: HOTELS & MOTELS (91%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (96%); ARGENTINA (92%); UNITED KINGDOM (92%); AUSTRALIA (79%)\n\nLoad-Date: August 10, 2021\n\n\n
823 \nSubject: WOMEN'S SPORTS (78%); OLYMPICS (72%); GOVERNMENT ADVISORS & MINISTERS (65%); DEFENSE DEPARTMENTS (64%)\n\nIndustry: DEFENSE DEPARTMENTS (64%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
824 \nSubject: DISCRIMINATION (90%); MEN (90%); FIELD HOCKEY (78%); NEGATIVE NEWS (78%); NEGATIVE PERSONAL NEWS (78%); WOMEN (78%); WOMEN'S SPORTS (70%)\n\nGeographic: INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
825 \nSubject: BOXING (90%); MARTIAL ARTS (90%); OLYMPICS (78%); WOMEN'S SPORTS (77%)\n\nPerson: MUHAMMAD ALI (55%)\n\nGeographic: TOKYO, JAPAN (56%); ASSAM, INDIA (78%); MANIPUR, INDIA (78%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
826 \nSubject: BOXING (90%); MARTIAL ARTS (90%); OLYMPICS (78%); WOMEN'S SPORTS (75%)\n\nPerson: MUHAMMAD ALI (58%)\n\nGeographic: TOKYO, JAPAN (73%); ASSAM, INDIA (90%); MANIPUR, INDIA (78%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
827 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); WOMEN (78%)\n\nGeographic: INDIA (90%); NETHERLANDS (90%)\n\nLoad-Date: August 3, 2021\n\n\n
828 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS AWARDS (89%); TOURNAMENTS (77%); BADMINTON (71%); COACHES & TRAINERS (71%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (88%); HELSINKI, FINLAND (57%); HARYANA, INDIA (73%); KANTO, JAPAN (59%); INDIA (93%); KAZAKHSTAN (79%)\n\nLoad-Date: August 4, 2021\n\n\n
829 \nSubject: SPORTS AWARDS (90%); POLITICS (89%); PROTESTS & DEMONSTRATIONS (89%); OLYMPICS (77%); GOVERNMENT ADVISORS & MINISTERS (76%); SUMMER OLYMPICS (72%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
830 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (78%); STADIUMS & ARENAS (78%); SIKHS & SIKHISM (73%)\n\nCompany: TALLGRASS ENERGY CORP (51%)\n\nIndustry: NAICS211130 NATURAL GAS EXTRACTION (51%); NAICS211120 CRUDE PETROLEUM EXTRACTION (51%); SIC1321 NATURAL GAS LIQUIDS (51%); SIC1311 CRUDE PETROLEUM & NATURAL GAS (51%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (94%); GERMANY (73%)\n\nLoad-Date: August 6, 2021\n\n\n
831 \nSubject: ARCHERY (91%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); MEN'S SPORTS (78%); SPORTS AWARDS (78%)\n\nGeographic: INDIA (93%); KOREA, REPUBLIC OF (90%); KAZAKHSTAN (71%)\n\nLoad-Date: July 27, 2021\n\n\n
832 \nSubject: 2016 RIO SUMMER OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MENTORS & ROLE MODELS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (89%); TOURNAMENTS (89%); SPORTS & RECREATION (78%); WOUNDS & INJURIES (66%); KNEE DISORDERS & INJURIES (52%)\n\nGeographic: TOKYO, JAPAN (90%); ASTANA, KAZAKHSTAN (79%); HARYANA, INDIA (73%); INDIA (93%); RUSSIAN FEDERATION (55%)\n\nLoad-Date: August 8, 2021\n\n\n
833 \nSubject: 2016 RIO SUMMER OLYMPICS (92%); ATHLETES (90%); MENTORS & ROLE MODELS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (89%); TRENDS & EVENTS (78%); TOURNAMENTS (77%); WOUNDS & INJURIES (69%); KNEE DISORDERS & INJURIES (54%)\n\nGeographic: TOKYO, JAPAN (88%); ASTANA, KAZAKHSTAN (79%); HARYANA, INDIA (73%); INDIA (93%); RUSSIAN FEDERATION (56%)\n\nLoad-Date: August 8, 2021\n\n\n
834 \nSubject: GOVERNMENT ADVISORS & MINISTERS (90%); APPOINTMENTS (78%); CIVIL SERVICES (78%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); POLICE FORCES (78%); EDUCATION DEPARTMENTS (73%); ELECTIONS & POLITICS (73%); OLYMPICS (71%); SPORTS AWARDS (71%); MARTIAL ARTS (67%)\n\nIndustry: TRAVEL TICKETS (77%)\n\nGeographic: TOKYO, JAPAN (70%); MANIPUR, INDIA (94%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
835 \nSubject: FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); STADIUMS & ARENAS (89%); SUMMER OLYMPICS (88%); SPORTS & RECREATION EVENTS (78%); ARMIES (53%)\n\nIndustry: ARMIES (53%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BERLIN, GERMANY (92%); MUMBAI, MAHARASHTRA, INDIA (79%); ADELAIDE, AUSTRALIA (77%); INDIA (97%); AUSTRALIA (79%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
836 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); DIVERSITY & INCLUSION (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); DISCRIMINATION (78%); RACE & ETHNICITY (78%); NEGATIVE SOCIETAL NEWS (72%); CUSTOMS & CULTURAL HERITAGE (67%); LANGUAGE & LANGUAGES (52%); RELIGION (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: ASSAM, INDIA (79%); MANIPUR, INDIA (79%); INDIA (92%)\n\nLoad-Date: August 1, 2021\n\n\n
837 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); WEIGHTLIFTING (78%); SOCIAL MEDIA (72%)\n\nIndustry: MEDIA CONTENT (78%); SOCIAL MEDIA (72%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: July 29, 2021\n\n\n
838 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); OLYMPICS (77%)\n\nCompany: DOMINO'S PIZZA INC (92%)\n\nTicker: DPZ (NYSE) (92%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (92%); SIC5812 EATING PLACES (92%); FAST FOOD RESTAURANTS (92%); RESTAURANTS (73%)\n\nLoad-Date: July 25, 2021\n\n\n
839 \nSubject: ATHLETES (93%); WOMEN'S SPORTS (91%); GYMNASTICS (90%); HANDBALL (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); WOMEN (90%); SEX & GENDER ISSUES (78%); TRENDS & EVENTS (78%); OLYMPICS (77%); FINES & PENALTIES (75%); SUMMER OLYMPICS (73%); GENDER & SEX DISCRIMINATION (71%); BEACHES (68%)\n\nIndustry: SWIMWEAR (78%)\n\nGeographic: GERMANY (92%); NORWAY (88%)\n\nLoad-Date: July 28, 2021\n\n\n
840 \nSubject: SPORTS FANS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (78%); GRANDPARENTS (77%); EMOTIONS (70%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
841 \nSubject: ATHLETES (90%); SPORTS AWARDS (90%); GYMNASTICS (89%); OLYMPICS (89%); NEGATIVE NEWS (85%); TENNIS (82%); TENNIS TOURNAMENTS (82%); NEGATIVE PERSONAL NEWS (73%); SUMMER OLYMPICS (72%); WOUNDS & INJURIES (62%); RACE & ETHNICITY (60%); ETHNIC GROUPS (50%); MINORITY GROUPS (50%)\n\nPerson: SIMONE BILES (79%); PIERS MORGAN (76%); MEGHAN, DUCHESS OF SUSSEX (66%); NAOMI OSAKA (58%); NOVAK DJOKOVIC (50%)\n\nGeographic: NEW DELHI, INDIA (74%); AUSTRALIA (79%)\n\nLoad-Date: August 4, 2021\n\n\n
842 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (89%); ATHLETES (78%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); CABINET OFFICES (77%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); REGIONAL & LOCAL GOVERNMENTS (77%); ASSOCIATIONS & ORGANIZATIONS (72%); SPORTS REGULATION & POLICY (72%); EXECUTIVES (71%)\n\nCompany: MAHINDRA & MAHINDRA LTD (59%)\n\nTicker: MHID (LSE) (59%); M&M (NSE) (59%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (59%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (59%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (59%); MEDIA CONTENT (78%); REAL ESTATE (78%); AIRLINES (64%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); HARYANA, INDIA (90%); MANIPUR, INDIA (90%); PUNJAB, INDIA (90%); INDIA (97%)\n\nLoad-Date: August 8, 2021\n\n\n
843 \nSubject: PHOTO & VIDEO SHARING (90%); OLYMPICS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (72%); WOMEN'S SPORTS (72%)\n\nIndustry: PHOTO & VIDEO SHARING (90%); FAST FOOD RESTAURANTS (78%); MEDIA CONTENT (78%); RESTAURANTS (78%)\n\nGeographic: MANIPUR, INDIA (74%); INDIA (91%)\n\nLoad-Date: July 29, 2021\n\n\n
844 \nSubject: OLYMPICS (94%); PARALYMPICS (94%); 2016 RIO SUMMER OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS AWARDS (89%); TENNIS (89%); TRENDS & EVENTS (89%); SPORTS & RECREATION FACILITIES & VENUES (78%); SPORTS INJURIES (78%); STADIUMS & ARENAS (78%); TRAFFIC ACCIDENTS (77%); WOUNDS & INJURIES (77%); SOCCER (69%); SOCCER TOURNAMENTS (69%); DELAYS & POSTPONEMENTS (63%)\n\nCompany: BEST INC (90%)\n\nTicker: BEST (NYSE) (90%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (90%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (90%); TRAFFIC ACCIDENTS (77%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (78%); TOKYO, JAPAN (66%); INDIA (97%); JAPAN (79%)\n\nLoad-Date: July 30, 2021\n\n\n
845 \nSubject: GRANDCHILDREN (91%); FIELD HOCKEY (90%); SPORTS & RECREATION (90%); GRANDPARENTS (89%); OLYMPICS (78%); WOMEN'S SPORTS (78%); COACHES & TRAINERS (73%); FAMILY (72%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: BERLIN, GERMANY (73%); RAJASTHAN, INDIA (79%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
846 \nSubject: 2020 TOKYO SUMMER OLYMPICS (89%); FIELD HOCKEY (89%); OLYMPICS (89%); SOCIAL MEDIA (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); 2016 RIO SUMMER OLYMPICS (74%); ATHLETES (74%); MEN'S SPORTS (74%); BOXING (73%); BADMINTON (69%); HEADS OF STATE & GOVERNMENT (69%); PRIME MINISTERS (54%)\n\nIndustry: ENTERTAINMENT & ARTS (89%); SOCIAL MEDIA (89%); MOVIE INDUSTRY (78%)\n\nPerson: AKSHAY KUMAR (92%); SHAH RUKH KHAN (79%)\n\nGeographic: UTTAR PRADESH, INDIA (74%); INDIA (94%); GERMANY (79%); UNITED KINGDOM (76%)\n\nLoad-Date: August 6, 2021\n\n\n
847 \nSubject: ELECTION TECHNOLOGY (90%); OLYMPICS (90%); CRICKET (89%); ATHLETES (88%); CELEBRITIES (78%); NEWS BRIEFS (78%); LEGISLATIVE BODIES (76%); MEDICAL RESEARCH (75%); POLITICS (75%); 2020 TOKYO SUMMER OLYMPICS (74%); NEGATIVE MISC NEWS (74%); SPORTS AWARDS (74%); SPORTS INJURIES (74%); SUMMER OLYMPICS (74%); WOMEN'S SPORTS (74%); EMBASSIES & CONSULATES (72%); VOTERS & VOTING (71%); FAR RIGHT POLITICS (69%); MEDICAL SCIENCE (69%); MEDICINE & HEALTH (69%); SPORTS MEDICINE (69%); ELECTRONIC VOTING MACHINES (66%); INVESTIGATIONS (66%); WEIGHTLIFTING (53%)\n\nIndustry: ELECTION TECHNOLOGY (90%); CELEBRITIES (78%); MEDIA CONTENT (78%); SPORTS MEDICINE (69%); ELECTRONIC VOTING MACHINES (66%)\n\nPerson: JAIR BOLSONARO (79%)\n\nGeographic: NEW DELHI, INDIA (92%); MANIPUR, INDIA (92%); INDIA (96%); BRAZIL (92%); ASIA (79%); UNITED STATES (79%)\n\nLoad-Date: August 3, 2021\n\n\n
848 \nSubject: MEN (90%); NEGATIVE NEWS (90%); FIELD HOCKEY (78%); WOMEN (78%); NEGATIVE PERSONAL NEWS (76%); WOMEN'S SPORTS (70%)\n\nIndustry: INDUSTRIAL PROPERTY (69%)\n\nGeographic: INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
849 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (89%); ATHLETES (78%); COACHES & TRAINERS (78%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (97%); GERMANY (92%); UNITED KINGDOM (79%); BELGIUM (52%)\n\nLoad-Date: August 6, 2021\n\n\n
850 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); DRAMA FILMS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); INTERVIEWS (89%); PROFILES & BIOGRAPHIES (89%); ACTORS & ACTRESSES (78%); FILM (77%); RESCUE OPERATIONS (69%); NEGATIVE NEWS (67%); ESPIONAGE (60%); HIJACKING (60%); HOSTAGE TAKING (60%)\n\nIndustry: DRAMA FILMS (90%); ACTORS & ACTRESSES (78%); FILM (77%); INTERNET & WWW (74%); MEDIA CONTENT (73%)\n\nPerson: AKSHAY KUMAR (92%)\n\nGeographic: INDIA (74%)\n\nLoad-Date: August 9, 2021\n\n\n
851 \nSubject: WRESTLING (97%); SPORTS & RECREATION EVENTS (91%); ATHLETES (90%); FACT CHECKING (90%); INTERNET SOCIAL NETWORKING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); 2016 RIO SUMMER OLYMPICS (78%); TOURNAMENTS (78%); WOMEN (78%); FAKE NEWS (77%)\n\nCompany: FACEBOOK INC (58%)\n\nTicker: FB (NASDAQ) (58%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (58%); INTERNET SOCIAL NETWORKING (90%); ONLINE CONTENT & INFORMATION SERVICES (78%)\n\nGeographic: TOKYO, JAPAN (53%); HARYANA, INDIA (90%); INDIA (92%); HUNGARY (73%); BELARUS (52%)\n\nLoad-Date: July 26, 2021\n\n\n
852 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (89%)\n\nLoad-Date: August 6, 2021\n\n\n
853 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); BOXING (89%); MARTIAL ARTS (73%); PARENTING (69%)\n\nGeographic: ASSAM, INDIA (79%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
854 \nSubject: SPORTS AWARDS (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); SUITS & CLAIMS (89%); CELEBRITIES (88%); SPORTS BUSINESS (79%); 2020 TOKYO SUMMER OLYMPICS (78%); BRANDING (78%); COPYRIGHT (78%); ETHICS (78%); LEGAL NOTICES (78%); SPORTS MARKETING (78%); SUMMER OLYMPICS (78%); LITIGATION (77%); LISTINGS & NOTICES (76%); WEIGHTLIFTING (69%); MULTINATIONAL CORPORATIONS (55%)\n\nCompany: ADITYA BIRLA GROUP (58%)\n\nIndustry: CELEBRITIES (88%); BRANDING (78%); SPORTS MARKETING (78%); MARKETING & ADVERTISING AGENCIES (73%)\n\nLoad-Date: August 6, 2021\n\n\n
855 \nSubject: SPORTS AWARDS (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); SUITS & CLAIMS (89%); CELEBRITIES (88%); SPORTS BUSINESS (79%); 2020 TOKYO SUMMER OLYMPICS (78%); COPYRIGHT (78%); ETHICS (78%); LEGAL NOTICES (78%); LISTINGS & NOTICES (78%); SPORTS MARKETING (78%); SUMMER OLYMPICS (78%); BRANDING (77%); LITIGATION (77%); WEIGHTLIFTING (69%); MULTINATIONAL CORPORATIONS (55%)\n\nCompany: ADITYA BIRLA GROUP (58%)\n\nIndustry: CELEBRITIES (88%); SPORTS MARKETING (78%); BRANDING (77%); MARKETING & ADVERTISING AGENCIES (72%)\n\nLoad-Date: August 6, 2021\n\n\n
856 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SHOOTINGS (90%); GUNSHOT WOUNDS (89%); SPORTS & RECREATION (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); ATHLETES (76%); SPORTS & RECREATION EVENTS (76%)\n\nPerson: USAIN BOLT (72%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (92%); KOREA, REPUBLIC OF (90%)\n\nLoad-Date: July 26, 2021\n\n\n
857 \nSubject: ATHLETES (90%); WOMEN'S SPORTS (90%); INTERVIEWS (79%); MENTORS & ROLE MODELS (79%); MEN'S SPORTS (78%); COVID CORONAVIRUS (52%); COVID-19 CORONAVIRUS (52%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%); HARYANA, INDIA (73%); INDIA (93%)\n\nLoad-Date: August 3, 2021\n\n\n
858 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); WOMEN (89%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); FILM (73%); OLYMPICS (69%)\n\nIndustry: FILM (73%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (74%); TOKYO, JAPAN (55%); INDIA (92%); ARGENTINA (90%); AUSTRALIA (90%)\n\nLoad-Date: August 3, 2021\n\n\n
859 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); EMOTIONS (89%); SPORTS & RECREATION EVENTS (89%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); WOMEN (78%); TOURNAMENTS (76%); PRESS CONFERENCES (55%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (93%); NETHERLANDS (79%)\n\nLoad-Date: August 7, 2021\n\n\n
860 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); MEN'S SPORTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); FEMINISM & WOMEN'S RIGHTS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); WOMEN'S SPORTS (78%); SUMMER OLYMPICS (77%); GOVERNMENT ADVISORS & MINISTERS (70%); PHOTOGRAPHY (69%); PROFILES & BIOGRAPHIES (60%); PRIME MINISTERS (55%)\n\nIndustry: PHOTOGRAPHY (69%)\n\nPerson: NARENDRA MODI (79%); AKSHAY KUMAR (76%)\n\nGeographic: TOKYO, JAPAN (90%); JHARKHAND, INDIA (79%); MIZORAM, INDIA (79%); HARYANA, INDIA (74%); MANIPUR, INDIA (74%); ODISHA, INDIA (74%); PUNJAB, INDIA (74%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
861 \nSubject: RACISM & XENOPHOBIA (92%); NEGATIVE NEWS (90%); RACE & ETHNICITY (90%); ANNIVERSARIES (86%); EMOJIS & EMOTICONS (78%); WEIGHTLIFTING (78%); DISCRIMINATION (77%); OLYMPICS (77%); SPORTS AWARDS (77%); RELIGION (52%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); EMOJIS & EMOTICONS (78%); MEDIA CONTENT (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); TOKYO, JAPAN (58%); KASHMIR (79%); NORTHEAST INDIA (79%); NAGALAND, INDIA (59%); INDIA (95%)\n\nLoad-Date: July 27, 2021\n\n\n
862 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); RUNNING (89%); SPORTS & RECREATION (89%); SUMMER OLYMPICS (89%); ATHLETES (78%); MEN'S SPORTS (78%); TRACK & FIELD (78%); WOMEN'S SPORTS (78%); COACHES & TRAINERS (76%); SPORTS GOVERNING BODIES (73%); TRENDS (72%); GOLF (70%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (97%); EUROPE (78%)\n\nLoad-Date: August 8, 2021\n\n\n
863 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); SPORTS & RECREATION (90%); OLYMPICS (89%); CORONAVIRUSES (78%); MEN'S SPORTS (78%); TRENDS & EVENTS (78%); SOCIAL DISTANCING (77%); VIRUSES (73%); SUMMER OLYMPICS (70%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (92%)\n\nLoad-Date: July 23, 2021\n\n\n
864 \nSubject: OLYMPICS (90%); CAMPAIGNS & ELECTIONS (78%); ELECTIONS (78%); ELECTIONS & POLITICS (78%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); ATHLETES (73%); GOVERNMENT ADVISORS & MINISTERS (73%); SCHOOL SPORTS (73%); SPORTS FANS (73%); SUMMER OLYMPICS (72%); POLITICS (70%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nGeographic: ODISHA, INDIA (91%); UTTAR PRADESH, INDIA (79%); BIHAR, INDIA (78%); INDIA (95%)\n\nLoad-Date: August 8, 2021\n\n\n
865 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (89%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WINTER OLYMPICS (77%); TOURNAMENTS (74%); EMOTIONS (72%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); INDIA (94%); ENGLAND (90%); NEW ZEALAND (79%); UNITED KINGDOM (71%)\n\nLoad-Date: August 7, 2021\n\n\n
866 \nSubject: HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); GOVERNMENT ADVISORS & MINISTERS (79%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); CRICKET (73%); DEFENSE DEPARTMENTS (73%); OLYMPICS (72%)\n\nIndustry: DEFENSE DEPARTMENTS (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
867 \nSubject: HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); GOVERNMENT ADVISORS & MINISTERS (79%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%); CRICKET (73%); DEFENSE DEPARTMENTS (73%); OLYMPICS (72%)\n\nIndustry: DEFENSE DEPARTMENTS (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
868 \nSubject: INVESTIGATIONS (90%); LEGISLATIVE BODIES (90%); NEGATIVE PERSONAL NEWS (90%); NEGATIVE TECHNOLOGY NEWS (90%); POLITICS (90%); SPYWARE (90%); GOVERNMENT ADVISORS & MINISTERS (78%); JOURNALISM (78%); SURVEILLANCE (74%); ELECTIONS & POLITICS (73%); OLYMPICS (68%); SPORTS AWARDS (68%); CIVIC & SOCIAL ORGANIZATIONS (67%); SUPREME COURTS (67%); WRITERS (65%)\n\nIndustry: SPYWARE (90%); MEDIA CONTENT (78%); PUBLISHING (78%); WRITERS (65%)\n\nPerson: MAMATA BANERJEE (79%); SONIA GANDHI (57%)\n\nGeographic: NEW DELHI, INDIA (92%); WEST BENGAL, INDIA (71%); INDIA (92%)\n\nLoad-Date: July 26, 2021\n\n\n
869 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FACT CHECKING (90%); OLYMPICS (90%); SOCIAL MEDIA (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRENDS & EVENTS (90%); WEIGHTLIFTING (90%); INTERNET SOCIAL NETWORKING (89%); PHOTO & VIDEO SHARING (78%); SPORTS & RECREATION EVENTS (78%); CULTURE DEPARTMENTS (77%); FAKE NEWS (72%)\n\nCompany: FACEBOOK INC (52%)\n\nTicker: FB (NASDAQ) (52%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (52%); SOCIAL MEDIA (90%); INTERNET SOCIAL NETWORKING (89%); PHOTO & VIDEO SHARING (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MANIPUR, INDIA (89%); INDIA (95%)\n\nLoad-Date: July 31, 2021\n\n\n
870 \nSubject: MEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (78%); FAMILY (74%); ATHLETES (72%)\n\nIndustry: TRUCK DRIVERS (71%)\n\nGeographic: INDIA (92%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
871 \nSubject: ESSENTIAL BUSINESSES & WORKERS (90%); GOVERNMENT ADVISORS & MINISTERS (89%); NEGATIVE MISC NEWS (89%); PROTESTS & DEMONSTRATIONS (89%); CONSTITUTIONAL AMENDMENTS (88%); OLYMPICS (83%); EDUCATION DEPARTMENTS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); DEFENSE DEPARTMENTS (76%); FIELD HOCKEY (73%); AGRICULTURAL LAW (64%); PRICE CHANGES (64%); PRICE INCREASES (64%); TAXES & TAXATION (64%); 2020 TOKYO SUMMER OLYMPICS (62%); SPORTS AWARDS (62%); SUMMER OLYMPICS (60%); AIR QUALITY (52%)\n\nCompany: ESSENTIAL UTILITIES INC (55%)\n\nTicker: WTRG (NYSE) (55%)\n\nIndustry: NAICS221310 WATER SUPPLY & IRRIGATION SYSTEMS (55%); SIC4941 WATER SUPPLY (55%); DEFENSE DEPARTMENTS (76%); AGRICULTURAL LAW (64%); PRICE CHANGES (64%); PRICE INCREASES (64%)\n\nGeographic: KASHMIR (79%)\n\nLoad-Date: August 6, 2021\n\n\n
872 \nSubject: CRICKET (92%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TEMPORARY EMPLOYMENT (90%); WAGES & SALARIES (90%); FAMILY (73%); ORAL CANCER (72%); ELECTIONS & POLITICS (69%)\n\nGeographic: NEW DELHI, INDIA (79%); AHMEDABAD, GUJARAT, INDIA (58%); GUJARAT, INDIA (79%); INDIA (96%); PAKISTAN (92%); UNITED ARAB EMIRATES (79%)\n\nLoad-Date: July 31, 2021\n\n\n
873 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (90%)\n\nGeographic: TOKYO, JAPAN (58%)\n\nLoad-Date: August 6, 2021\n\n\n
874 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); DEPRESSION (89%); MENTAL HEALTH (89%); SUMMER OLYMPICS (89%); TENNIS (89%); TENNIS TOURNAMENTS (89%); WOMEN'S SPORTS (89%); 2020 TOKYO SUMMER OLYMPICS (78%); INTERVIEWS (78%); SPORTS AWARDS (78%); WOMEN (78%); NEGATIVE PERSONAL NEWS (77%); STADIUMS & ARENAS (77%); MEDICINE & HEALTH (74%); PSYCHOLOGICAL STRESS (74%); FACE MASK MANDATES (71%); INFECTIOUS DISEASE (69%); COVID CORONAVIRUS (66%); COVID-19 CORONAVIRUS (66%); COVID-19 CORONAVIRUS REGULATION & POLICY (66%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%); NAOMI OSAKA (76%)\n\nGeographic: TOKYO, JAPAN (88%); NEW DELHI, INDIA (74%); AUSTRALIA (92%); INDIA (74%); GREECE (58%)\n\nLoad-Date: July 28, 2021\n\n\n
875 \nSubject: SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); COMPUTER GAMES (75%); CHILDREN (74%); ELECTIONS & POLITICS (70%); ADMINISTRATIVE & CLERICAL WORKERS (67%); CERTIFICATES, DEGREES & DIPLOMAS (67%); WRITERS (60%)\n\nIndustry: COMPUTER GAMES (75%); WRITERS (60%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
876 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); DEPRESSION (89%); MENTAL HEALTH (89%); SUMMER OLYMPICS (89%); TENNIS (89%); TENNIS TOURNAMENTS (89%); WOMEN'S SPORTS (89%); INTERVIEWS (78%); SPORTS AWARDS (78%); WOMEN (78%); NEGATIVE PERSONAL NEWS (77%); STADIUMS & ARENAS (77%); MEDICINE & HEALTH (74%); PSYCHOLOGICAL STRESS (74%); FACE MASK MANDATES (71%); INFECTIOUS DISEASE (69%); COVID CORONAVIRUS (66%); COVID-19 CORONAVIRUS (66%); COVID-19 CORONAVIRUS REGULATION & POLICY (66%)\n\nPerson: SIMONE BILES (92%); MICHAEL PHELPS (79%); NAOMI OSAKA (78%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); AUSTRALIA (92%); INDIA (74%); GREECE (58%)\n\nLoad-Date: July 28, 2021\n\n\n
877 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (89%); ATHLETES (78%); MEN'S SPORTS (78%); SPORTS AWARDS (78%); WOMEN (78%); 2016 RIO SUMMER OLYMPICS (77%)\n\nCompany: SA DAY MANUFACTURING CO (69%)\n\nIndustry: SIC2899 CHEMICALS & CHEMICAL PREPARATIONS, NEC (69%)\n\nGeographic: ARGENTINA (94%); INDIA (93%); UNITED KINGDOM (87%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
878 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (89%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); ATHLETES (78%); COACHES & TRAINERS (78%); 2016 RIO SUMMER OLYMPICS (74%); SPORTS FANS (73%); TOURNAMENTS (69%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: TOKYO, JAPAN (73%); BELGIUM (51%)\n\nLoad-Date: August 3, 2021\n\n\n
879 \nSubject: EXERCISE & FITNESS (92%); WEIGHTLIFTING (92%); OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SUMMER OLYMPICS (89%); PHYSICAL FITNESS (78%); ACTORS & ACTRESSES (77%); SPORTS & RECREATION (77%); WOUNDS & INJURIES (72%)\n\nIndustry: MEDIA CONTENT (78%); ACTORS & ACTRESSES (77%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: July 25, 2021\n\n\n
880 \nSubject: DIVING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WATER SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%); PARKS & PLAYGROUNDS (74%); SOCIAL MEDIA (67%)\n\nIndustry: PARKS & PLAYGROUNDS (74%); AMUSEMENT & THEME PARKS (69%); TRAVEL, HOSPITALITY & TOURISM (69%); SOCIAL MEDIA (67%); INTERNET & WWW (64%)\n\nGeographic: TOKYO, JAPAN (73%); SOUTH CHINA (92%); GUANGDONG, CHINA (79%); CHINA (95%); INDIA (92%); AUSTRALIA (79%); HONG KONG (79%)\n\nLoad-Date: August 7, 2021\n\n\n
881 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); TOURNAMENTS (90%); WOMEN (78%); DEMOGRAPHIC GROUPS (73%); SPORTS FANS (73%); MIDDLE AGED PERSONS (69%)\n\nIndustry: TELEVISION EQUIPMENT (74%); LIGHT EMITTING DIODES (69%)\n\nGeographic: INDIA (94%); ARGENTINA (79%); UNITED KINGDOM (68%)\n\nLoad-Date: August 5, 2021\n\n\n
882 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); ATHLETES (78%); SPORTS AWARDS (78%); 2016 RIO SUMMER OLYMPICS (76%); 2020 TOKYO SUMMER OLYMPICS (76%)\n\nGeographic: UTTAR PRADESH, INDIA (58%); ARGENTINA (98%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
883 \nSubject: FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); MEN'S SPORTS (90%); OLYMPICS (90%); POLITICS (90%); PRIME MINISTERS (90%); SPORTS AWARDS (90%); NEGATIVE NEWS (89%); ELECTIONS & POLITICS (78%); EMOTIONS (78%); GOVERNMENT ADVISORS & MINISTERS (73%); NEGATIVE PERSONAL NEWS (72%); VACCINES (64%); COVID CORONAVIRUS (63%); HOSTAGE TAKING (62%); CORRUPTION (60%); AGRICULTURAL EXPORTS & IMPORTS (50%); ANNIVERSARIES (50%)\n\nIndustry: VACCINES (64%); AGRICULTURAL EXPORTS & IMPORTS (50%); AGRICULTURE (50%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: UTTAR PRADESH, INDIA (90%); JAMMU & KASHMIR, INDIA (79%); KASHMIR (79%); INDIA (96%)\n\nLoad-Date: August 6, 2021\n\n\n
884 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); WOMEN (89%); OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); ATHLETES (77%); STADIUMS & ARENAS (77%); FILM (72%)\n\nIndustry: FILM (72%)\n\nGeographic: TOKYO, JAPAN (54%); INDIA (93%); ARGENTINA (90%); AUSTRALIA (90%)\n\nLoad-Date: August 3, 2021\n\n\n
885 \nSubject: MARTIAL ARTS (91%); COACHES & TRAINERS (90%); VIRAL VIDEOS (90%); WOMEN'S SPORTS (78%); SOCIAL MEDIA (77%); OLYMPICS (75%); SUMMER OLYMPICS (73%)\n\nIndustry: VIRAL VIDEOS (90%); ENERGY DRINKS (79%); SOCIAL MEDIA (77%); BEVERAGE PRODUCTS (61%); SOFT DRINKS (61%)\n\nLoad-Date: July 28, 2021\n\n\n
886 \nSubject: NEGATIVE PERSONAL NEWS (92%); ARRESTS (90%); FIELD HOCKEY (90%); NEGATIVE NEWS (90%); FAMILY (89%); OLYMPICS (89%); WOMEN (89%); ABUSE & NEGLECT (78%); ATHLETES (78%); DISORDERLY CONDUCT (78%); INVESTIGATIONS (78%); WOMEN'S SPORTS (78%); RELIGION (55%)\n\nGeographic: UTTARAKHAND, INDIA (89%); INDIA (93%)\n\nLoad-Date: August 8, 2021\n\n\n
887 \nSubject: NEGATIVE NEWS (90%); NEGATIVE SOCIETAL NEWS (90%); RACE & ETHNICITY (90%); RACISM & XENOPHOBIA (90%); SOCIAL MEDIA (90%); WEDDINGS & ENGAGEMENTS (89%); DISCRIMINATION (78%); MARRIAGE (78%); NEGATIVE PERSONAL NEWS (78%); OLYMPICS (77%); SPORTS AWARDS (77%); 2020 TOKYO SUMMER OLYMPICS (72%); SUMMER OLYMPICS (68%); FAMILY (67%); FAMILY PLANNING (65%); WEIGHTLIFTING (54%)\n\nIndustry: SOCIAL MEDIA (90%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); NORTHEAST INDIA (93%); ASSAM, INDIA (79%); EAST INDIA (79%); MANIPUR, INDIA (79%); INDIA (98%); SPAIN (72%)\n\nLoad-Date: July 27, 2021\n\n\n
888 \nSubject: WOMEN'S SPORTS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); WOMEN (89%); ATHLETES (78%); MEN'S SPORTS (78%); 2016 RIO SUMMER OLYMPICS (77%); SPORTS & RECREATION (73%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (94%); BELGIUM (55%)\n\nLoad-Date: August 2, 2021\n\n\n
889 \nSubject: ATHLETES (91%); MENTAL HEALTH (91%); OLYMPICS (91%); CELEBRITIES (90%); GYMNASTICS (90%); INTERNET SOCIAL NETWORKING (90%); MEDICINE & HEALTH (90%); MENTAL ILLNESS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); PHOTO & VIDEO SHARING (89%); 2020 TOKYO SUMMER OLYMPICS (78%); WOMEN (78%); WRITERS (73%); MEMORY (72%); SPORTS FANS (72%)\n\nCompany: BEAM GLOBAL (60%)\n\nTicker: BEEM (NASDAQ) (60%)\n\nIndustry: NAICS541512 COMPUTER SYSTEMS DESIGN SERVICES (60%); SIC4931 ELECTRIC & OTHER SERVICES COMBINED (60%); CELEBRITIES (90%); INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (89%); WRITERS (73%)\n\nPerson: SIMONE BILES (94%)\n\nLoad-Date: August 2, 2021\n\n\n
890 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (89%)\n\nGeographic: UNITED STATES (77%)\n\nLoad-Date: August 6, 2021\n\n\n
891 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); COACHES & TRAINERS (78%); SPORTS CAMPS & SCHOOLS (78%); SUMMER OLYMPICS (78%); SCHOOL ATHLETIC STAFF (76%); WATER RESOURCES (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: PUNJAB, INDIA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
892 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); FIELD HOCKEY (89%); POOL & BILLIARDS (89%); SPORTS & RECREATION EVENTS (89%); ANNIVERSARIES (71%); SUMMER OLYMPICS (71%)\n\nGeographic: LONDON, ENGLAND (58%); SEOUL, KOREA, REPUBLIC OF (58%); INDIA (92%); UNITED KINGDOM (92%); AUSTRALIA (79%); BELGIUM (55%)\n\nLoad-Date: August 1, 2021\n\n\n
893 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%)\n\nCompany: ADAMS GOLF INC (59%)\n\nIndustry: NAICS339920 SPORTING & ATHLETIC GOODS MANUFACTURING (59%); SIC3949 SPORTING & ATHLETIC GOODS, NEC (59%)\n\nGeographic: UNITED STATES (77%)\n\nLoad-Date: August 6, 2021\n\n\n
894 \nSubject: INTERNET SOCIAL NETWORKING (90%); SPORTS AWARDS (90%); PHOTO & VIDEO SHARING (89%); VIRAL VIDEOS (89%); AGREEMENTS (78%); ACTORS & ACTRESSES (77%); ATHLETES (73%); GOVERNMENT ADVISORS & MINISTERS (71%); CHILD DEVELOPMENT (61%); CHILDREN (61%); SUMMER OLYMPICS (60%)\n\nIndustry: INTERNET SOCIAL NETWORKING (90%); PHOTO & VIDEO SHARING (89%); VIRAL VIDEOS (89%); ACTORS & ACTRESSES (77%); TELEVISION PROGRAMMING (60%)\n\nPerson: LIONEL MESSI (95%)\n\nGeographic: BARCELONA, SPAIN (90%)\n\nLoad-Date: August 6, 2021\n\n\n
895 \nSubject: EMOTIONS (90%); OLYMPICS (90%); FAMILY (89%); SPORTS AWARDS (89%); HEADS OF STATE & GOVERNMENT (73%); SPORTS FANS (73%); DANCE (60%); PRIME MINISTERS (60%)\n\nGeographic: TOKYO, JAPAN (72%); MUMBAI, MAHARASHTRA, INDIA (58%); MADHYA PRADESH, INDIA (79%); INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
896 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); EXERCISE & FITNESS (89%); WOMEN'S SPORTS (78%); SPORTS & RECREATION (75%)\n\nGeographic: TOKYO, JAPAN (58%)\n\nLoad-Date: July 25, 2021\n\n\n
897 \nSubject: COPYRIGHT (90%); SPORTS AWARDS (90%); CELEBRITIES (89%); LAW & LEGAL SYSTEM (89%); OLYMPICS (89%); SPORTS & RECREATION (89%); SUITS & CLAIMS (89%); SPORTS BUSINESS (79%); 2020 TOKYO SUMMER OLYMPICS (78%); BRANDING (78%); ETHICS (78%); INTELLECTUAL PROPERTY (78%); SPORTS MARKETING (78%); SUMMER OLYMPICS (78%); LEGAL NOTICES (77%); LEGAL SERVICES (77%); LITIGATION (77%); LAWYERS (75%); LISTINGS & NOTICES (75%); COVID CORONAVIRUS (74%); INFECTIOUS DISEASE (74%); WEIGHTLIFTING (69%); COVID-19 CORONAVIRUS (59%); MULTINATIONAL CORPORATIONS (55%)\n\nCompany: ADITYA BIRLA GROUP (58%)\n\nIndustry: CELEBRITIES (89%); BRANDING (78%); SPORTS MARKETING (78%); LEGAL SERVICES (77%); LAWYERS (75%); MARKETING & ADVERTISING AGENCIES (73%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
898 \nSubject: COVID-19 CORONAVIRUS (89%); COVID CORONAVIRUS (87%); NEWS BRIEFS (78%); NEGATIVE PERSONAL NEWS (77%); PUBLIC OFFICIALS (77%); HEALTH DEPARTMENTS (75%); OLYMPICS (74%); WOMEN'S HEALTH (74%); WOMEN'S SPORTS (74%); GOVERNMENT ADVISORS & MINISTERS (72%); CORONAVIRUSES (71%); 2020 TOKYO SUMMER OLYMPICS (69%); BADMINTON (69%); SUMMER OLYMPICS (69%); WATER RESOURCES (69%); DISEASES & DISORDERS (67%); INFECTIOUS DISEASE (67%); SARS (67%); VACCINES (65%); PUBLIC HEALTH ADMINISTRATION (64%); PREGNANCY & CHILDBIRTH (62%); VIRUSES (61%)\n\nCompany: STATE BANK OF INDIA (85%); FACEBOOK INC (57%)\n\nTicker: SBIN (NSE) (85%); SBID (LSE) (85%); FB (NASDAQ) (57%)\n\nIndustry: NAICS522110 COMMERCIAL BANKING (85%); SIC6021 NATIONAL COMMERCIAL BANKS (85%); NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (57%); MEDIA CONTENT (78%); HEALTH DEPARTMENTS (75%); BANKING & FINANCE (65%); VACCINES (65%)\n\nPerson: BILLIE EILISH (90%)\n\nGeographic: KARNATAKA, INDIA (79%); INDIA (94%)\n\nLoad-Date: July 31, 2021\n\n\n
899 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%); INTERNET SOCIAL NETWORKING (89%); CONSUMERS (79%); EXERCISE & FITNESS (78%); INTERVIEWS (78%); SOCIAL MEDIA INFLUENCERS (78%); EXECUTIVES (71%); MANAGERS & SUPERVISORS (68%); TRENDS (66%); YOUTH MARKET (60%)\n\nCompany: DOMINO'S PIZZA INC (92%); TWITTER INC (85%); JUBILANT FOODWORKS LTD (55%)\n\nTicker: DPZ (NYSE) (92%); TWTR (NYSE) (85%); JUBLFOOD (NSE) (55%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (92%); SIC5812 EATING PLACES (92%); NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (85%); INTERNET SOCIAL NETWORKING (89%); SOCIAL MEDIA INFLUENCERS (78%); PRODUCT ENDORSEMENTS (70%); YOUTH MARKET (60%)\n\nGeographic: MANIPUR, INDIA (73%); INDIA (90%)\n\nLoad-Date: July 30, 2021\n\n\n
900 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); STADIUMS & ARENAS (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); TOURNAMENTS (74%); 2012 LONDON SUMMER OLYMPICS (69%); SUMMER OLYMPICS (69%)\n\nGeographic: LONDON, ENGLAND (52%); TOKYO, JAPAN (51%); KERALA, INDIA (59%); INDIA (96%); GERMANY (90%); BELGIUM (52%)\n\nLoad-Date: August 5, 2021\n\n\n
901 \nSubject: DISEASES & DISORDERS (90%); DRAMA FILMS (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); 2020 TOKYO SUMMER OLYMPICS (89%); PROFILES & BIOGRAPHIES (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); ACTORS & ACTRESSES (78%); MEN (75%); MEDICINE & HEALTH (73%); RESPIRATORY DISORDERS & INJURIES (69%); UROGENITAL DISORDERS & INJURIES (65%)\n\nIndustry: DRAMA FILMS (90%); ACTORS & ACTRESSES (78%); MEDIA CONTENT (73%)\n\nGeographic: MANIPUR, INDIA (79%); INDIA (92%); MALAYSIA (79%)\n\nLoad-Date: August 8, 2021\n\n\n
902 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); SPORTS & RECREATION (90%); OLYMPICS (89%); CORONAVIRUSES (78%); MEN'S SPORTS (78%); TRENDS & EVENTS (78%); SOCIAL DISTANCING (77%); ARCHERY (73%); ASSOCIATIONS & ORGANIZATIONS (73%); VIRUSES (73%); SUMMER OLYMPICS (70%); OLYMPIC COMMITTEES (65%)\n\nGeographic: TOKYO, JAPAN (90%); ASSAM, INDIA (79%); INDIA (93%)\n\nLoad-Date: July 23, 2021\n\n\n
903 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (78%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); NEGATIVE PERSONAL NEWS (73%); COACHES & TRAINERS (72%); WRITERS (60%)\n\nIndustry: MEDIA CONTENT (78%); WRITERS (60%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); HARYANA, INDIA (94%); INDIA (91%)\n\nLoad-Date: July 24, 2021\n\n\n
904 \nSubject: ACTORS & ACTRESSES (90%); PHOTO & VIDEO SHARING (90%); FIELD HOCKEY (79%); CELEBRITIES (78%); EMOJIS & EMOTICONS (78%); FILM (78%); WOMEN'S SPORTS (77%); PHOTOGRAPHY SERVICES (73%); INTERNET SOCIAL NETWORKING (71%); VISUAL ARTISTS (68%)\n\nIndustry: ACTORS & ACTRESSES (90%); PHOTO & VIDEO SHARING (90%); CELEBRITIES (78%); EMOJIS & EMOTICONS (78%); FILM (78%); MEDIA CONTENT (78%); PHOTOGRAPHY SERVICES (73%); INTERNET SOCIAL NETWORKING (71%); EMERGENCY VEHICLES (69%); VISUAL ARTISTS (68%)\n\nPerson: SHAH RUKH KHAN (93%)\n\nGeographic: INDIA (91%)\n\nLoad-Date: August 3, 2021\n\n\n
905 \nSubject: 2016 RIO SUMMER OLYMPICS (77%); EMOTIONS (77%); SPORTS AWARDS (76%); REGIONAL & LOCAL GOVERNMENTS (72%); GOVERNMENT ADVISORS & MINISTERS (71%); WEIGHTLIFTING (70%); APPOINTMENTS (68%); GOVERNMENT & PUBLIC ADMINISTRATION (66%)\n\nIndustry: AIRPORTS (78%)\n\nGeographic: MANIPUR, INDIA (92%); INDIA (91%)\n\nLoad-Date: July 28, 2021\n\n\n
906 \nSubject: SPORTS AWARDS (91%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); MENTORS & ROLE MODELS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%); SOCCER TOURNAMENTS (77%); TOURNAMENTS (66%)\n\nGeographic: HARYANA, INDIA (73%); UTTAR PRADESH, INDIA (73%); INDIA (91%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
907 \nSubject: ATHLETES (90%); STADIUMS & ARENAS (90%); WRESTLING (90%); GRANDCHILDREN (89%); NEGATIVE PERSONAL NEWS (89%); OLYMPICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (88%); 2012 LONDON SUMMER OLYMPICS (71%)\n\nGeographic: TOKYO, JAPAN (73%); LONDON, ENGLAND (69%); HARYANA, INDIA (79%); INDIA (93%)\n\nLoad-Date: August 4, 2021\n\n\n
908 \nSubject: ATHLETES (90%); GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (90%); TOURNAMENTS (78%); SPORTS & RECREATION EVENTS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: LYDIA KO (79%)\n\nGeographic: NEW DELHI, INDIA (74%); AUSTRALIA (79%); NEW ZEALAND (78%); JAPAN (73%)\n\nLoad-Date: August 6, 2021\n\n\n
909 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); TENNIS (90%); TENNIS TOURNAMENTS (90%); GYMNASTICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); ATHLETES (78%); CELEBRITIES (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); WOMEN'S SPORTS (78%); MEDICINE & HEALTH (74%); WOMEN (73%); PRESS CONFERENCES (69%); RANKINGS (69%)\n\nIndustry: CELEBRITIES (78%)\n\nPerson: NAOMI OSAKA (79%); SIMONE BILES (79%)\n\nGeographic: OSAKA, JAPAN (90%); TOKYO, JAPAN (88%); UNITED STATES (79%)\n\nLoad-Date: July 28, 2021\n\n\n
910 \nSubject: WEAPONS & ARMS (98%); SHOOTING SPORTS (91%); FIREARMS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS & RECREATION (88%); OLYMPICS (79%); 2016 RIO SUMMER OLYMPICS (78%); RANKINGS (70%); SPORTS AWARDS (70%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (90%); CHINA (52%)\n\nLoad-Date: July 25, 2021\n\n\n
911 \nSubject: PROTESTS & DEMONSTRATIONS (91%); LEGISLATIVE BODIES (90%); NEGATIVE MISC NEWS (90%); NEGATIVE POLITICAL NEWS (90%); POLITICAL PROTESTS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); NEGATIVE PERSONAL NEWS (78%); WOMEN (78%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (71%); FREEDOM OF PRESS (71%); INFECTIOUS DISEASE (71%); ARMED FORCES (65%); OLYMPICS (64%); SPORTS AWARDS (64%); VACCINES (57%); CHILDREN (50%)\n\nIndustry: ARMED FORCES (65%); VACCINES (57%)\n\nPerson: JANOS ADER (92%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
912 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); TENNIS (90%); TENNIS TOURNAMENTS (90%); GYMNASTICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); ATHLETES (78%); CELEBRITIES (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); WOMEN'S SPORTS (78%); MEDICINE & HEALTH (74%); WOMEN (73%); PRESS CONFERENCES (69%); RANKINGS (69%)\n\nIndustry: CELEBRITIES (78%)\n\nPerson: NAOMI OSAKA (79%); SIMONE BILES (79%)\n\nGeographic: OSAKA, JAPAN (90%); TOKYO, JAPAN (73%); UNITED STATES (79%)\n\nLoad-Date: July 28, 2021\n\n\n
913 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); SPORTS & RECREATION (90%); ATHLETES (89%); ARCHERY (78%); BOXING (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); SPORTS FANS (78%); SUMMER OLYMPICS (78%); TABLE TENNIS (73%); WEIGHTLIFTING (72%); EXERCISE & FITNESS (63%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (74%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (93%)\n\nLoad-Date: July 23, 2021\n\n\n
914 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); BOXING (89%); MARTIAL ARTS (89%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); EMOTIONS (69%); HIGH SCHOOLS (64%)\n\nIndustry: HIGH SCHOOLS (64%)\n\nPerson: RAM NATH KOVIND (58%)\n\nGeographic: TAIPEI, TAIWAN (79%); ASSAM, INDIA (79%); INDIA (92%)\n\nLoad-Date: July 30, 2021\n\n\n
915 \nSubject: OLYMPICS (90%); CELEBRITIES (89%); NEWS BRIEFS (78%); RIGHT TO BE FORGOTTEN (78%); GOVERNMENT ADVISORS & MINISTERS (77%); NEGATIVE PERSONAL NEWS (77%); RESIGNATIONS (77%); ACTORS & ACTRESSES (71%); 2020 TOKYO SUMMER OLYMPICS (70%); SUMMER OLYMPICS (70%); EMBASSIES & CONSULATES (68%); MEN'S SPORTS (65%); WEIGHTLIFTING (65%); WOMEN'S SPORTS (65%)\n\nIndustry: CELEBRITIES (89%); MEDIA CONTENT (78%); RIGHT TO BE FORGOTTEN (78%); STYLISTS & IMAGE CONSULTANTS (76%); ACTORS & ACTRESSES (71%); REALITY TELEVISION (66%)\n\nGeographic: BIHAR, INDIA (79%); KARNATAKA, INDIA (79%); INDIA (95%); AFGHANISTAN (91%)\n\nLoad-Date: July 24, 2021\n\n\n
916 \nSubject: WOMEN'S SPORTS (91%); FAMILY (90%); FIELD HOCKEY (90%); MEN'S SPORTS (78%); SPORTS AWARDS (78%); CULTURE DEPARTMENTS (76%); OLYMPICS (76%); GOVERNMENT ADVISORS & MINISTERS (60%)\n\nIndustry: MEDIA CONTENT (73%)\n\nGeographic: HARYANA, INDIA (90%); AUSTRALIA (79%); INDIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
917 \nSubject: MEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); NEGATIVE SOCIETAL NEWS (89%); REGIONAL & LOCAL GOVERNMENTS (89%); NEGATIVE NEWS (78%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); DAY LABORERS (76%); NEGATIVE PERSONAL NEWS (75%); ARMIES (71%); MIGRANT WORKERS (71%); BONE FRACTURES (60%)\n\nIndustry: MEDIA CONTENT (73%); ARMIES (71%); MARINE VESSELS (68%)\n\nGeographic: TOKYO, JAPAN (58%); ODISHA, INDIA (95%); GOA, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 8, 2021\n\n\n
918 \nSubject: BADMINTON (90%); OLYMPICS (90%); WOMEN'S SPORTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TAIPEI, TAIWAN (88%); NEW DELHI, INDIA (74%); LONDON, ENGLAND (72%); TOKYO, JAPAN (56%); INDIA (92%); INDONESIA (88%); UNITED KINGDOM (57%)\n\nLoad-Date: July 28, 2021\n\n\n
919 \nSubject: PREHISTORIC LIFE (90%); RELIGION (90%); SCULPTURE (78%); ASTRONOMY & SPACE (75%); SMUGGLING (73%); PARKS & PLAYGROUNDS (72%); SPORTS AWARDS (72%); ATHLETES (71%); OLYMPICS (71%); LIFE FORMS (70%); BONE FRACTURES (69%); FOREIGN LABOR (67%); TECHNICIANS & TECHNOLOGICAL WORKERS (62%); LITERATURE (60%); PROFESSIONAL WORKERS (50%)\n\nIndustry: SCULPTURE (78%); MUSEUMS & GALLERIES (73%); PARKS & PLAYGROUNDS (72%); ART DEALERS (68%)\n\nGeographic: GOA, INDIA (79%); GUJARAT, INDIA (79%); NAGALAND, INDIA (79%); ODISHA, INDIA (79%); SIKKIM, INDIA (79%); TELANGANA, INDIA (74%); HIMALAYAS (59%); INDIA (95%); UNITED STATES (93%); ANTARCTICA (65%); IRAQ (65%)\n\nLoad-Date: July 31, 2021\n\n\n
920 \nSubject: WRESTLING (91%); ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (89%); OLYMPICS (78%); SUMMER OLYMPICS (78%); SPORTS INSTRUCTION (77%); VICTIM GROOMING (71%); RELIGION (69%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: LOS ANGELES, CA, USA (79%); MOSCOW, RUSSIAN FEDERATION (58%); HARYANA, INDIA (79%); RUSSIAN FEDERATION (58%)\n\nLoad-Date: August 6, 2021\n\n\n
921 \nSubject: EMOTIONS (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SUMMER OLYMPICS (89%); TENNIS (89%); TENNIS TOURNAMENTS (88%); MEN'S SPORTS (78%); DELAYS & POSTPONEMENTS (73%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nPerson: NOVAK DJOKOVIC (89%)\n\nGeographic: ATLANTA, GA, USA (57%); AUSTRALIA (79%); KAZAKHSTAN (78%); UZBEKISTAN (76%)\n\nLoad-Date: July 25, 2021\n\n\n
922 \nSubject: TABLE TENNIS (90%); OLYMPICS (89%); ATHLETES (78%); MEN'S SPORTS (78%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); TOKYO, JAPAN (58%); INDIA (93%)\n\nLoad-Date: July 27, 2021\n\n\n
923 \nSubject: SPORTS AWARDS (90%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (76%); 2016 RIO SUMMER OLYMPICS (73%)\n\nGeographic: TAIPEI, TAIWAN (78%)\n\nLoad-Date: August 1, 2021\n\n\n
924 \nSubject: LAW COURTS & TRIBUNALS (90%); LIBEL & SLANDER (90%); 2020 TOKYO SUMMER OLYMPICS (85%); OLYMPICS (85%); DEMOCRACIES (78%); NEWS BRIEFS (78%); LEGISLATIVE BODIES (77%); TALKS & MEETINGS (77%); CORONAVIRUSES (75%); COVID-19 CORONAVIRUS (75%); GENOMICS (73%); NEGATIVE PERSONAL NEWS (73%); BADMINTON (72%); LITIGATION (72%); ACTORS & ACTRESSES (71%); NEGATIVE TECHNOLOGY NEWS (71%); SPYWARE (71%); ALTERNATIVE MEDICINE (70%); INFECTIOUS DISEASE (69%); VIRUSES (69%); ARRESTS (68%); DEFAMATION (67%); SPORTS AWARDS (67%); WOMEN'S SPORTS (67%); 2016 RIO SUMMER OLYMPICS (66%); SUMMER OLYMPICS (66%); INTERNET SOCIAL NETWORKING (64%); VIRAL VIDEOS (64%); CRICKET (62%); ATHLETES (61%); PORNOGRAPHY (51%)\n\nIndustry: MEDIA CONTENT (73%); ACTORS & ACTRESSES (71%); COMPUTING & INFORMATION TECHNOLOGY (71%); SPYWARE (71%); ALTERNATIVE MEDICINE (70%); INTERNET SOCIAL NETWORKING (64%); VIRAL VIDEOS (64%)\n\nPerson: MAHENDRA SINGH DHONI (92%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (89%); TOKYO, JAPAN (68%); INDIA (93%); JAPAN (79%)\n\nLoad-Date: July 30, 2021\n\n\n
925 \nSubject: OLYMPICS (90%); CHILDREN (88%); COOKING & ENTERTAINING (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); WRITERS (69%); SLUM DWELLINGS (62%)\n\nIndustry: RESTAURANTS (77%); MEDIA CONTENT (73%); WRITERS (69%)\n\nGeographic: NEW DELHI, INDIA (74%); CHENNAI, TAMIL NADU, INDIA (58%); PERTH, AUSTRALIA (58%); NORTH INDIA (92%); TAMIL NADU, INDIA (73%); INDIA (96%); AUSTRALIA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
926 \nSubject: LAW COURTS & TRIBUNALS (90%); LIBEL & SLANDER (90%); 2020 TOKYO SUMMER OLYMPICS (85%); OLYMPICS (85%); DEMOCRACIES (78%); NEWS BRIEFS (78%); LEGISLATIVE BODIES (77%); TALKS & MEETINGS (77%); CORONAVIRUSES (75%); COVID-19 CORONAVIRUS (75%); GENOMICS (73%); NEGATIVE PERSONAL NEWS (73%); BADMINTON (72%); LITIGATION (72%); ACTORS & ACTRESSES (71%); NEGATIVE TECHNOLOGY NEWS (71%); SPYWARE (71%); ALTERNATIVE MEDICINE (70%); INFECTIOUS DISEASE (69%); VIRUSES (69%); ARRESTS (68%); DEFAMATION (67%); SPORTS AWARDS (67%); WOMEN'S SPORTS (67%); 2016 RIO SUMMER OLYMPICS (66%); SUMMER OLYMPICS (66%); INTERNET SOCIAL NETWORKING (64%); VIRAL VIDEOS (64%); CRICKET (62%); ATHLETES (61%); PORNOGRAPHY (51%)\n\nIndustry: MEDIA CONTENT (73%); COMPUTING & INFORMATION TECHNOLOGY (72%); ACTORS & ACTRESSES (71%); SPYWARE (71%); ALTERNATIVE MEDICINE (70%); INTERNET SOCIAL NETWORKING (64%); VIRAL VIDEOS (64%)\n\nPerson: MAHENDRA SINGH DHONI (92%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (89%); TOKYO, JAPAN (68%); INDIA (93%); JAPAN (79%)\n\nLoad-Date: July 30, 2021\n\n\n
927 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WOMEN (78%); 2020 TOKYO SUMMER OLYMPICS (75%); OLYMPICS (75%); TOURNAMENTS (75%); ATHLETES (73%); NEGATIVE NEWS (73%); SUMMER OLYMPICS (70%); POVERTY & HOMELESSNESS (51%)\n\nGeographic: TOKYO, JAPAN (67%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); GERMANY (79%); JAPAN (79%)\n\nLoad-Date: August 3, 2021\n\n\n
928 \nSubject: OLYMPICS (90%); SUMMER OLYMPICS (90%); BOXING (89%); COACHES & TRAINERS (78%); FENCING (78%); STADIUMS & ARENAS (78%); WOMEN'S SPORTS (78%)\n\nIndustry: ACTIVEWEAR & SPORTSWEAR (78%)\n\nGeographic: TOKYO, JAPAN (57%); HARYANA, INDIA (59%); INDIA (90%); ALGERIA (71%)\n\nLoad-Date: July 28, 2021\n\n\n
929 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (89%); NEGATIVE NEWS (89%); NEGATIVE PERSONAL NEWS (87%); PETITIONS (86%); HEADS OF STATE & GOVERNMENT (78%); RESIGNATIONS (71%); LITIGATION (66%); CRIME, LAW ENFORCEMENT & CORRECTIONS (61%); SPYWARE (61%); LAW COURTS & TRIBUNALS (60%); NEGATIVE TECHNOLOGY NEWS (60%); PRIME MINISTERS (60%); SUPREME COURTS (60%)\n\nIndustry: SPYWARE (61%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); PUNJAB, INDIA (90%); INDIA (94%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
930 \nSubject: OLYMPICS (89%); SUMMER OLYMPICS (89%); CONSUMERS (79%); INTERVIEWS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); MANAGERS & SUPERVISORS (75%); WEIGHTLIFTING (75%); ENTREPRENEURSHIP (74%); EXECUTIVES (74%); OLYMPIC COMMITTEES (72%); SOCIAL MEDIA (72%); ANGEL INVESTORS (50%)\n\nCompany: DOMINO'S PIZZA INC (84%); JUBILANT FOODWORKS LTD (53%); COCA-COLA CO (52%)\n\nTicker: DPZ (NYSE) (84%); JUBLFOOD (NSE) (53%); KO (NYSE) (52%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (84%); SIC5812 EATING PLACES (84%); NAICS312111 SOFT DRINK MANUFACTURING (52%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (52%); FAST FOOD RESTAURANTS (91%); SOFT DRINK INDUSTRY (77%); RESTAURANTS (73%); ADVERTISING SLOGANS (72%); DAIRY PRODUCTS (72%); SOCIAL MEDIA (72%); PRODUCT ENDORSEMENTS (68%); TELEVISION PROGRAMMING (56%); ANGEL INVESTORS (50%)\n\nGeographic: MANIPUR, INDIA (78%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
931 \nSubject: LEGISLATIVE BODIES (90%); NEGATIVE MISC NEWS (90%); PROTESTS & DEMONSTRATIONS (90%); NEGATIVE PERSONAL NEWS (89%); SURVEILLANCE TECHNOLOGY (89%); OLYMPICS (88%); SPORTS AWARDS (88%); HEADS OF STATE & GOVERNMENT (78%); SPYWARE (78%); SURVEILLANCE (78%); BOMBINGS (74%); NEGATIVE TECHNOLOGY NEWS (73%); PRIME MINISTERS (73%); SUMMER OLYMPICS (73%); AGRICULTURAL LAW (72%); TAXES & TAXATION (68%); EXECUTIVES (62%)\n\nIndustry: TELEVISION PROGRAMMING (89%); SPYWARE (78%); TELEVISION EQUIPMENT (77%); AGRICULTURAL LAW (72%)\n\nPerson: JANOS ADER (90%)\n\nGeographic: NEW DELHI, INDIA (79%); KASHMIR (79%); INDIA (92%)\n\nLoad-Date: August 9, 2021\n\n\n
932 \nSubject: ACCIDENTS & DISASTERS (90%); WEATHER (90%); EARTH & ATMOSPHERIC SCIENCE (78%); NEWS BRIEFS (78%); OCEANOGRAPHIC & ATMOSPHERIC SERVICES (77%); METEOROLOGY (71%); PROTESTS & DEMONSTRATIONS (68%); SPORTS AWARDS (66%); OLYMPICS (65%)\n\nCompany: APPLE INC (51%)\n\nTicker: AAPL (NASDAQ) (51%)\n\nIndustry: NAICS423430 COMPUTER & COMPUTER PERIPHERAL EQUIPMENT & SOFTWARE MERCHANT WHOLESALERS (51%); NAICS334413 SEMICONDUCTOR & RELATED DEVICE MANUFACTURING (51%); NAICS334112 COMPUTER STORAGE DEVICE MANUFACTURING (51%); NAICS334111 ELECTRONIC COMPUTER MANUFACTURING (51%); SIC5045 COMPUTERS & COMPUTER PERIPHERAL EQUIPMENT & SOFTWARE (51%); SIC3674 SEMICONDUCTORS & RELATED DEVICES (51%); SIC3577 COMPUTER PERIPHERAL EQUIPMENT, NEC (51%); SIC3572 COMPUTER STORAGE DEVICES (51%); SIC3571 ELECTRONIC COMPUTERS (51%); MEDIA CONTENT (78%); MOBILE & CELLULAR TELEPHONES (65%); SMARTPHONES (60%)\n\nGeographic: MAHARASHTRA, INDIA (91%); GOA, INDIA (79%); DUBAI, UNITED ARAB EMIRATES (78%); INDIA (99%); UNITED ARAB EMIRATES (94%); PAKISTAN (92%)\n\nLoad-Date: July 24, 2021\n\n\n
933 \nSubject: MEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); 2020 TOKYO SUMMER OLYMPICS (89%); GOVERNMENT & PUBLIC ADMINISTRATION (89%); NEGATIVE SOCIETAL NEWS (89%); REGIONAL & LOCAL GOVERNMENTS (89%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); NEGATIVE NEWS (77%); NEGATIVE PERSONAL NEWS (75%); CHILDREN (72%); MIGRANT WORKERS (71%); WAGES & SALARIES (63%); BONE FRACTURES (60%); ARMIES (51%)\n\nIndustry: MEDIA CONTENT (73%); MARINE VESSELS (68%); ARMIES (51%)\n\nGeographic: ODISHA, INDIA (95%); GOA, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 7, 2021\n\n\n
934 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (78%); MARTIAL ARTS (76%); SPORTS AWARDS (76%); COVID CORONAVIRUS (61%); COVID-19 CORONAVIRUS (61%); INFECTIOUS DISEASE (60%); TWINS & MULTIPLE BIRTHS (50%)\n\nGeographic: ASSAM, INDIA (88%); MEGHALAYA, INDIA (73%)\n\nLoad-Date: July 31, 2021\n\n\n
935 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (78%); ATHLETES (73%)\n\nGeographic: LONDON, ENGLAND (56%); ARGENTINA (96%); INDIA (92%)\n\nLoad-Date: August 4, 2021\n\n\n
936 \nSubject: AGRICULTURAL LAW (90%); GOVERNMENT ADVISORS & MINISTERS (90%); LEGISLATIVE BODIES (90%); NEGATIVE MISC NEWS (90%); NEGATIVE PERSONAL NEWS (90%); PROTESTS & DEMONSTRATIONS (90%); NEGATIVE NEWS (89%); HEADS OF STATE & GOVERNMENT (78%); INSOLVENCY & BANKRUPTCY LAW (77%); PUBLIC FINANCE (74%); PUBLIC FINANCE AGENCIES & TREASURIES (74%); PRIME MINISTERS (73%); ENTREPRENEURSHIP (71%); OLYMPICS (66%); SPORTS AWARDS (66%); INSOLVENCY & BANKRUPTCY (50%)\n\nIndustry: AGRICULTURAL LAW (90%); FOOD SCIENCE & TECHNOLOGY (76%); PUBLIC FINANCE AGENCIES & TREASURIES (74%)\n\nPerson: JANOS ADER (94%)\n\nGeographic: NEW DELHI, INDIA (79%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
937 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); ATHLETES (73%); TOURNAMENTS (73%)\n\nGeographic: LONDON, ENGLAND (58%); ARGENTINA (96%); INDIA (93%)\n\nLoad-Date: August 4, 2021\n\n\n
938 \nSubject: ARCHERY (93%); OLYMPICS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (89%); PHYSICAL EDUCATION (89%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); STUDENTS & STUDENT LIFE (77%); SPORTS & RECREATION (75%); OLYMPIC COMMITTEES (71%); WEATHER (68%); MALNUTRITION (66%); COVID CORONAVIRUS (50%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); MOBILE & CELLULAR TELEPHONES (55%)\n\nGeographic: MAHARASHTRA, INDIA (73%); INDIA (88%); RUSSIAN FEDERATION (56%)\n\nLoad-Date: July 29, 2021\n\n\n
939 \nSubject: CITIZENSHIP LAW (90%); COVID CORONAVIRUS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); SPORTS AWARDS (85%); INTERIOR DECORATING (78%); NEWS BRIEFS (78%); NEGATIVE PERSONAL NEWS (77%); VACCINES (73%); RESCUE OPERATIONS (71%); VACCINATION & IMMUNIZATION (71%); CORONAVIRUSES (66%); OLYMPICS (65%); VIRUSES (65%); WRESTLING (65%); SUMMER OLYMPICS (62%)\n\nIndustry: INTERIOR DESIGN SERVICES (77%); MEDIA CONTENT (73%); VACCINES (73%); VACCINATION & IMMUNIZATION (71%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: BELGRADE, SERBIA (92%); NEW DELHI, INDIA (91%); RAJASTHAN, INDIA (91%); JAMMU & KASHMIR, INDIA (79%); KASHMIR (79%); INDIA (94%); KAZAKHSTAN (79%); SERBIA (79%)\n\nLoad-Date: August 4, 2021\n\n\n
940 \nSubject: ASSOCIATIONS & ORGANIZATIONS (91%); FIREARMS (90%); OLYMPICS (90%); SHOOTING SPORTS (89%); WEAPONS & ARMS (89%); ATHLETES (78%); SHOOTINGS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); TALKS & MEETINGS (72%)\n\nOrganization: NATIONAL RIFLE ASSOCIATION OF AMERICA (84%)\n\nGeographic: TOKYO, JAPAN (90%); ZAGREB, CROATIA (90%); KOLKATA, WEST BENGAL, INDIA (79%); NEW DELHI, INDIA (79%); INDIA (95%); CROATIA (94%); FRANCE (75%)\n\nLoad-Date: August 9, 2021\n\n\n
941 \nSubject: WEIGHTLIFTING (93%); ARCHERY (90%); EXERCISE & FITNESS (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (78%); CURRICULA (75%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: HOTELS & MOTELS (63%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (74%); MANIPUR, INDIA (90%); INDIA (91%); BRAZIL (79%); CHINA (75%)\n\nLoad-Date: July 24, 2021\n\n\n
942 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); INTERNET SOCIAL NETWORKING (90%); SOCCER (78%); WOMEN (78%); SOCIAL MEDIA (77%); BLOGS & MESSAGE BOARDS (71%); PRIME MINISTERS (55%)\n\nCompany: TWITTER INC (92%)\n\nTicker: TWTR (NYSE) (92%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (92%); INTERNET SOCIAL NETWORKING (90%); MEDIA CONTENT (78%); SHORT FORM CONTENT (77%); SOCIAL MEDIA (77%); BLOGS & MESSAGE BOARDS (71%)\n\nPerson: NARENDRA MODI (79%); SHAH RUKH KHAN (79%)\n\nGeographic: INDIA (91%); AUSTRALIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
943 \nSubject: FIELD HOCKEY (90%); OLYMPICS (78%); PROFESSIONAL SPORTS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); MEN (73%); RANKINGS (73%)\n\nGeographic: TOKYO, JAPAN (72%); BEIJING, CHINA (55%); LONDON, ENGLAND (55%); NORTH CENTRAL CHINA (55%); INDIA (95%); BELGIUM (91%)\n\nLoad-Date: August 3, 2021\n\n\n
944 \nSubject: WOMEN'S SPORTS (92%); FIELD HOCKEY (90%); ATHLETES (79%); SPORTS & RECREATION (79%); SPORTS & RECREATION EVENTS (79%); OLYMPICS (78%); TOURNAMENTS (72%); RANKINGS (66%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: INDIA (96%); UNITED KINGDOM (70%)\n\nLoad-Date: August 7, 2021\n\n\n
945 \nSubject: OLYMPICS (90%); TOURNAMENTS (89%); SPORTS AWARDS (78%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: HONG KONG (73%); NETHERLANDS (57%); BULGARIA (56%); THAILAND (53%)\n\nLoad-Date: July 29, 2021\n\n\n
946 \nSubject: SPORTS AWARDS (90%); TRACK & FIELD (90%); OLYMPICS (89%); SPORTS & RECREATION (89%); PHYSICAL FITNESS (78%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (78%); PROFILES & BIOGRAPHIES (77%); EXERCISE & FITNESS (75%); COVID CORONAVIRUS (69%); COVID-19 CORONAVIRUS (69%); CORONAVIRUSES (54%); VIRUSES (54%)\n\nGeographic: TOKYO, JAPAN (52%)\n\nLoad-Date: August 9, 2021\n\n\n
947 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); ATHLETES (78%); REFEREES & UMPIRES (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); SPORTS OFFICIATING (78%); TOURNAMENTS (77%)\n\nGeographic: ARGENTINA (95%); UNITED KINGDOM (88%); NETHERLANDS (79%)\n\nLoad-Date: August 6, 2021\n\n\n
948 \nSubject: OLYMPICS (89%); SUMMER OLYMPICS (89%); CONSUMERS (79%); INTERVIEWS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); MANAGERS & SUPERVISORS (75%); WEIGHTLIFTING (75%); ENTREPRENEURSHIP (74%); EXECUTIVES (74%); OLYMPIC COMMITTEES (72%); SOCIAL MEDIA (72%); ANGEL INVESTORS (50%)\n\nCompany: DOMINO'S PIZZA INC (84%); JUBILANT FOODWORKS LTD (53%); COCA-COLA CO (52%)\n\nTicker: DPZ (NYSE) (84%); JUBLFOOD (NSE) (53%); KO (NYSE) (52%)\n\nIndustry: NAICS722513 LIMITED-SERVICE RESTAURANTS (84%); SIC5812 EATING PLACES (84%); NAICS312111 SOFT DRINK MANUFACTURING (52%); SIC2086 BOTTLED & CANNED SOFT DRINKS & CARBONATED WATER (52%); FAST FOOD RESTAURANTS (91%); SOFT DRINK INDUSTRY (77%); RESTAURANTS (73%); ADVERTISING SLOGANS (72%); DAIRY PRODUCTS (72%); SOCIAL MEDIA (72%); PRODUCT ENDORSEMENTS (68%); TELEVISION PROGRAMMING (56%); ANGEL INVESTORS (50%)\n\nGeographic: MANIPUR, INDIA (78%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
949 \nSubject: BADMINTON (90%); SPORTS AWARDS (90%); OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); NEGATIVE PERSONAL NEWS (77%); TOURNAMENTS (77%); SOCIAL MEDIA (70%)\n\nIndustry: SOCIAL MEDIA (70%)\n\nGeographic: NEW DELHI, INDIA (74%); TAIPEI, TAIWAN (73%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
950 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); PROFESSIONAL SPORTS (89%); SPORTS & RECREATION EVENTS (89%); MEN'S SPORTS (78%); SPORTS AWARDS (78%); WOMEN (78%); OLYMPICS (77%); TOURNAMENTS (76%); EMOTIONS (73%); SPORTS & RECREATION (73%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); TOKYO, JAPAN (55%); INDIA (95%); UNITED KINGDOM (90%); NETHERLANDS (79%)\n\nLoad-Date: August 6, 2021\n\n\n
951 \nSubject: WOMEN'S SPORTS (91%); FIELD HOCKEY (90%); NEGATIVE NEWS (78%); STADIUMS & ARENAS (78%); ATHLETES (73%); POVERTY & HOMELESSNESS (51%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (52%); INDIA (95%); GERMANY (79%); JAPAN (79%)\n\nLoad-Date: August 3, 2021\n\n\n
952 \nSubject: CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); NEGATIVE NEWS (90%); TERRORIST ATTACKS (90%); WEAPONS & ARMS (90%); GOVERNMENT ADVISORS & MINISTERS (89%); SIKHS & SIKHISM (79%); NEWS BRIEFS (78%); ARRESTS (77%); LAW ENFORCEMENT (77%); NEGATIVE PERSONAL NEWS (76%); RELIGION (75%); BOMBS & EXPLOSIVE DEVICES (74%); ILLEGAL WEAPONS (73%); FIREARMS (72%); STATE DEPARTMENTS & FOREIGN SERVICES (70%); TERRORISM (69%); GRENADES (67%); MILITARY WEAPONS (67%); DRAMA FILMS (66%); OLYMPICS (65%); SPORTS AWARDS (65%); SUMMER OLYMPICS (61%)\n\nIndustry: MILITARY WEAPONS (67%); DRAMA FILMS (66%)\n\nGeographic: GUJARAT, INDIA (93%); JAMMU & KASHMIR, INDIA (92%); KASHMIR (92%); RAJASTHAN, INDIA (79%); INDIA (96%); AFGHANISTAN (92%)\n\nLoad-Date: August 9, 2021\n\n\n
953 \nSubject: CELEBRITIES (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); EMOTIONS (89%); CITIZENSHIP (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (73%); WINTER OLYMPICS (68%); GERMAN CHANCELLORS (65%); ARMIES (50%)\n\nIndustry: CELEBRITIES (90%); ARMIES (50%)\n\nGeographic: BERLIN, GERMANY (90%); LOS ANGELES, CA, USA (79%); AMSTERDAM, NETHERLANDS (71%); INDIA (95%); NETHERLANDS (93%); GERMANY (90%); EUROPE (79%); UNITED STATES (78%)\n\nLoad-Date: August 6, 2021\n\n\n
954 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); ATHLETES (89%); COACHES & TRAINERS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (68%)\n\nGeographic: TOKYO, JAPAN (87%); INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
955 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); COACHES & TRAINERS (77%); CHILDREN (76%); COLLEGES & UNIVERSITIES (50%)\n\nIndustry: MEDIA CONTENT (78%); COLLEGES & UNIVERSITIES (50%)\n\nGeographic: GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
956 \nSubject: OLYMPICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (77%); TRACK & FIELD (77%); 2020 TOKYO SUMMER OLYMPICS (75%); ANNIVERSARIES (73%); GOVERNMENT & PUBLIC ADMINISTRATION (72%); REGIONAL & LOCAL GOVERNMENTS (72%); ELECTIONS & POLITICS (67%); MEDICAL SCIENCE (60%); MEDICINE & HEALTH (60%)\n\nCompany: VALLEY NEWSPAPERS (52%)\n\nIndustry: SIC2711 NEWSPAPERS: PUBLISHING, OR PUBLISHING & PRINTING (52%)\n\nGeographic: NEW DELHI, INDIA (90%); KASHMIR (99%); JAMMU & KASHMIR, INDIA (93%); INDIA (98%)\n\nLoad-Date: August 9, 2021\n\n\n
957 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); ATHLETES (78%); BADMINTON (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); EMOTIONS (63%)\n\nGeographic: TOKYO, JAPAN (88%); HYDERABAD, ANDHRA PRADESH, INDIA (59%); LONDON, ENGLAND (55%); INDIA (94%); UNITED KINGDOM (71%); BELGIUM (53%)\n\nLoad-Date: August 1, 2021\n\n\n
958 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); TOURNAMENTS (89%); ATHLETES (78%); BADMINTON (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); EMOTIONS (63%)\n\nGeographic: TOKYO, JAPAN (90%); NEW DELHI, INDIA (74%); HYDERABAD, ANDHRA PRADESH, INDIA (58%); LONDON, ENGLAND (55%); INDIA (94%); UNITED KINGDOM (71%); BELGIUM (53%)\n\nLoad-Date: August 1, 2021\n\n\n
959 \nSubject: PRIME MINISTERS (91%); FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); STADIUMS & ARENAS (90%); ELECTIONS & POLITICS (89%); MEN'S SPORTS (78%); GOVERNMENT ADVISORS & MINISTERS (77%); POLITICS (77%); FACT CHECKING (72%); SOCIAL MEDIA (72%); SOCIAL MEDIA INFLUENCERS (72%); CRICKET (69%); OLYMPICS (69%); WINTER OLYMPICS (63%)\n\nIndustry: SOCIAL MEDIA (72%); SOCIAL MEDIA INFLUENCERS (72%)\n\nPerson: NARENDRA MODI (95%)\n\nGeographic: AHMEDABAD, GUJARAT, INDIA (73%); GUJARAT, INDIA (79%); INDIA (95%)\n\nLoad-Date: August 7, 2021\n\n\n
960 \nSubject: ATHLETES (90%); COACHES & TRAINERS (90%); TABLE TENNIS (90%); WOMEN'S SPORTS (90%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); SUMMER OLYMPICS (72%)\n\nIndustry: CAMERAS (60%)\n\nGeographic: BARCELONA, SPAIN (68%); CATALONIA, SPAIN (68%); INDIA (90%); UKRAINE (88%); SPAIN (75%); AUSTRIA (55%); CUBA (53%)\n\nLoad-Date: July 26, 2021\n\n\n
961 \nSubject: ATHLETES (90%); TABLE TENNIS (90%); WOMEN'S SPORTS (90%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); SUMMER OLYMPICS (72%); RANKINGS (69%)\n\nIndustry: CAMERAS (60%)\n\nGeographic: BARCELONA, SPAIN (68%); CATALONIA, SPAIN (68%); INDIA (90%); UKRAINE (88%); SPAIN (75%); AUSTRIA (55%); CUBA (53%)\n\nLoad-Date: July 26, 2021\n\n\n
962 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); WOMEN (89%); FAMILY (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (75%); ATHLETES (71%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (60%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%); INDIA (92%)\n\nLoad-Date: August 3, 2021\n\n\n
963 \nSubject: SPORTS AWARDS (90%); TRACK & FIELD (90%); OLYMPICS (89%); PHYSICAL FITNESS (78%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (78%); PROFILES & BIOGRAPHIES (77%); EXERCISE & FITNESS (75%); COVID CORONAVIRUS (69%); COVID-19 CORONAVIRUS (69%); CORONAVIRUSES (54%); VIRUSES (54%)\n\nGeographic: TOKYO, JAPAN (51%); INDIA (91%)\n\nLoad-Date: August 9, 2021\n\n\n
964 \nSubject: BOXING (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); MARTIAL ARTS (77%); WOMEN'S SPORTS (77%); WRESTLING (77%); SUMO (73%); WEIGHTLIFTING (71%); TALKS & MEETINGS (70%)\n\nGeographic: TOKYO, JAPAN (74%); TAIPEI, TAIWAN (53%); ASSAM, INDIA (73%); INDIA (91%); JAPAN (74%)\n\nLoad-Date: July 30, 2021\n\n\n
965 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (77%); MARTIAL ARTS (77%); WOMEN'S SPORTS (77%); WRESTLING (77%); SUMO (73%); WEIGHTLIFTING (71%); TALKS & MEETINGS (70%)\n\nGeographic: TOKYO, JAPAN (89%); TAIPEI, TAIWAN (53%); ASSAM, INDIA (73%); INDIA (91%); JAPAN (74%)\n\nLoad-Date: July 30, 2021\n\n\n
966 \nSubject: DELAYS & POSTPONEMENTS (90%); LEGISLATIVE BODIES (90%); RESIGNATIONS (90%); SPORTS & RECREATION (86%); SPORTS AWARDS (86%); CELEBRITIES (78%); INTERVIEWS (78%); NEWS BRIEFS (78%); TALIBAN (77%); GOVERNMENT ADVISORS & MINISTERS (76%); ANNIVERSARIES (75%); AGRICULTURAL LAW (74%); PROTESTS & DEMONSTRATIONS (71%); COVID-19 CORONAVIRUS REGULATION & POLICY (69%); OLYMPICS (69%); SPORTS & RECREATION EVENTS (69%); ACTORS & ACTRESSES (63%); COVID CORONAVIRUS (60%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: CELEBRITIES (78%); AGRICULTURAL LAW (74%); ACTORS & ACTRESSES (63%)\n\nPerson: RAM NATH KOVIND (79%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (79%); KASHMIR (94%); KARNATAKA, INDIA (90%); INDIA (96%); AFGHANISTAN (93%); UNITED KINGDOM (91%); UNITED STATES (79%)\n\nLoad-Date: July 26, 2021\n\n\n
967 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (89%); INTERVIEWS (77%); PROFESSIONAL SPORTS (77%); FOODIES (73%)\n\nIndustry: FOOD PRODUCTS (90%); CONFECTIONERY (87%); FOODIES (73%); FRUIT & JUICE DRINKS (66%)\n\nLoad-Date: August 9, 2021\n\n\n
968 \nSubject: WEIGHTLIFTING (94%); EXERCISE & FITNESS (92%); WOMEN (90%); COACHES & TRAINERS (89%); PHOTO & VIDEO SHARING (89%); MEN (78%); PHYSICAL FITNESS (78%); SOCIAL MEDIA (78%); SUMMER OLYMPICS (78%); SELFIES (73%); VIRAL VIDEOS (73%); SPORTS AWARDS (72%); DIET, NUTRITION & FITNESS (70%)\n\nIndustry: PHOTO & VIDEO SHARING (89%); SOCIAL MEDIA (78%); SELFIES (73%); VIRAL VIDEOS (73%); INFORMATION TECHNOLOGY INDUSTRY (69%); STEROIDS (68%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%)\n\nLoad-Date: August 8, 2021\n\n\n
969 \nSubject: MATHEMATICS (92%); CURRICULA (90%); OLYMPICS (90%); STUDENTS & STUDENT LIFE (90%); ADULTS (89%); HUMANITIES & SOCIAL SCIENCE (78%); MATH & SCIENCE EDUCATION (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SPORTS AWARDS (77%); GAMES OF SKILL (74%); SELF IMPROVEMENT (74%); GOVERNMENT & PUBLIC ADMINISTRATION (73%); PUBLIC SCHOOLS (73%); MULTINATIONAL CORPORATIONS (72%); VIRTUAL EVENTS (67%); HISTORY (65%); ELECTIONS & POLITICS (52%); HEAD INJURIES (50%); MUSIC (50%); MUSIC HISTORY (50%); WOUNDS & INJURIES (50%)\n\nIndustry: GAMES OF SKILL (74%); PUBLIC SCHOOLS (73%)\n\nPerson: USAIN BOLT (58%)\n\nGeographic: HYDERABAD, ANDHRA PRADESH, INDIA (74%); ANDHRA PRADESH, INDIA (79%); UNITED KINGDOM (76%); INDIA (74%)\n\nLoad-Date: July 26, 2021\n\n\n
970 \nSubject: OLYMPICS (90%); WOMEN'S SPORTS (90%); TABLE TENNIS (89%); MEN'S SPORTS (78%); RANKINGS (78%); SUMMER OLYMPICS (78%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (92%); UKRAINE (73%); HONG KONG (72%); AUSTRIA (55%)\n\nLoad-Date: July 26, 2021\n\n\n
971 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (75%); ATHLETES (73%); WOMEN (73%)\n\nGeographic: BELGIUM (91%); INDIA (91%); AUSTRALIA (79%); GERMANY (79%)\n\nLoad-Date: August 3, 2021\n\n\n
972 \nSubject: CELEBRITIES (90%); STUDENTS & STUDENT LIFE (89%); CHURCH & STATE (78%); DRAMA FILMS (77%); SPORTS AWARDS (77%); PROFILES & BIOGRAPHIES (76%); RELIGION (75%)\n\nIndustry: CELEBRITIES (90%); DRAMA FILMS (77%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MANIPUR, INDIA (91%); MADHYA PRADESH, INDIA (79%); INDIA (93%)\n\nLoad-Date: July 31, 2021\n\n\n
973 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); STADIUMS & ARENAS (90%); COACHES & TRAINERS (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); TOURNAMENTS (75%); ATHLETES (73%); WOMEN (73%)\n\nGeographic: BELGIUM (91%); INDIA (91%); AUSTRALIA (79%); GERMANY (79%)\n\nLoad-Date: August 3, 2021\n\n\n
974 \nSubject: WEIGHTLIFTING (94%); EXERCISE & FITNESS (92%); WOMEN (90%); COACHES & TRAINERS (89%); PHOTO & VIDEO SHARING (89%); MEN (78%); PHYSICAL FITNESS (78%); SOCIAL MEDIA (78%); SUMMER OLYMPICS (78%); SELFIES (73%); VIRAL VIDEOS (73%); SPORTS AWARDS (72%); DIET, NUTRITION & FITNESS (70%)\n\nIndustry: PHOTO & VIDEO SHARING (89%); SOCIAL MEDIA (78%); SELFIES (73%); VIRAL VIDEOS (73%); INFORMATION TECHNOLOGY INDUSTRY (69%); STEROIDS (68%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%)\n\nLoad-Date: August 2, 2021\n\n\n
975 \nSubject: WOMEN'S SPORTS (92%); GYMNASTICS (90%); LETTERS & COMMENTS (90%); TALIBAN (90%); SPORTS & RECREATION EVENTS (78%); WOMEN (78%); ATHLETES (77%); OLYMPICS (77%); TOURNAMENTS (77%); NEGATIVE MISC NEWS (76%); NEGATIVE NEWS (76%); REBELLIONS & INSURGENCIES (76%); HANDBALL (73%); SUMMER OLYMPICS (73%); TERRORISM (72%); WAR & CONFLICT (72%); ARMED FORCES (71%); TERRORIST ORGANIZATIONS (68%); FINES & PENALTIES (56%)\n\nIndustry: SWIMWEAR (77%); ARMED FORCES (71%)\n\nGeographic: KABUL, AFGHANISTAN (92%); NEW DELHI, INDIA (79%); KOLKATA, WEST BENGAL, INDIA (73%); MUMBAI, MAHARASHTRA, INDIA (73%); KASHMIR (79%); INDIA (98%); AFGHANISTAN (95%); UNITED STATES (94%); PAKISTAN (92%)\n\nLoad-Date: July 31, 2021\n\n\n
976 \nSubject: WEIGHTLIFTING (94%); EXERCISE & FITNESS (92%); WOMEN (90%); COACHES & TRAINERS (89%); PHOTO & VIDEO SHARING (89%); MEN (78%); PHYSICAL FITNESS (78%); SOCIAL MEDIA (78%); SUMMER OLYMPICS (78%); SELFIES (73%); VIRAL VIDEOS (73%); SPORTS AWARDS (72%); DIET, NUTRITION & FITNESS (70%)\n\nIndustry: PHOTO & VIDEO SHARING (89%); SOCIAL MEDIA (78%); SELFIES (73%); VIRAL VIDEOS (73%); INFORMATION TECHNOLOGY INDUSTRY (69%); STEROIDS (68%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%)\n\nLoad-Date: August 1, 2021\n\n\n
977 \nSubject: DEATH NOTICES & OBITUARIES (92%); BADMINTON (90%); DEATH & DYING (90%); SPORTS & RECREATION (89%); SPORTS GOVERNING BODIES (89%); ASSOCIATIONS & ORGANIZATIONS (88%); MEN'S SPORTS (78%); SPORTS COMMISSIONERS (78%); TENNIS (78%); HEADS OF STATE & GOVERNMENT (77%); MENTORS & ROLE MODELS (76%); CULTURE DEPARTMENTS (72%); SOCIAL MEDIA (67%); COVID CORONAVIRUS (54%); COVID-19 CORONAVIRUS (54%); PRIME MINISTERS (52%)\n\nCompany: METROPOLITAN BANK HOLDING CORP (52%)\n\nTicker: MCB (NYSE) (52%)\n\nIndustry: NAICS522110 COMMERCIAL BANKING (52%); SIC6029 COMMERCIAL BANKS, NEC (52%); SOCIAL MEDIA (67%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MAHARASHTRA, INDIA (90%); INDIA (95%)\n\nLoad-Date: July 28, 2021\n\n\n
978 \nSubject: ATHLETES (91%); SPORTS & RECREATION (91%); GYMNASTICS (90%); NEGATIVE MISC NEWS (89%); NEGATIVE NEWS (89%); OLYMPICS (78%); SPORTS GOVERNING BODIES (78%); SPORTS REGULATION & POLICY (78%); VOLLEYBALL (78%); WOMEN (78%); WOMEN'S SPORTS (78%); NEGATIVE PERSONAL NEWS (77%); ABUSE & NEGLECT (73%); HANDBALL (73%); WRESTLING (73%); SUMMER OLYMPICS (72%); SCANDALS (62%); FINES & PENALTIES (61%); MUSLIMS & ISLAM (50%); SEX SCANDALS (50%)\n\nIndustry: ACTIVEWEAR & SPORTSWEAR (90%); SWIMWEAR (89%)\n\nGeographic: GERMANY (93%); INDIA (79%); NORWAY (78%); EUROPE (55%); UNITED STATES (53%)\n\nLoad-Date: August 8, 2021\n\n\n
979 \nSubject: OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); SPORTS FANS (78%)\n\nGeographic: MANIPUR, INDIA (79%); INDIA (90%)\n\nLoad-Date: July 28, 2021\n\n\n
980 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION EVENTS (89%); WEIGHTLIFTING (89%); COACHES & TRAINERS (78%); BACK DISORDERS & INJURIES (73%); EMOTIONS (72%); TOURNAMENTS (63%); WOUNDS & INJURIES (50%)\n\nGeographic: TOKYO, JAPAN (72%); TASHKENT, UZBEKISTAN (68%); MANIPUR, INDIA (90%); INDIA (94%)\n\nLoad-Date: July 25, 2021\n\n\n
981 \nSubject: CABINET OFFICES (90%); FIELD HOCKEY (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); GOVERNMENT ADVISORS & MINISTERS (90%); REGIONAL & LOCAL GOVERNMENTS (90%); CIVIL SERVICES (89%); EDUCATIONAL INSTITUTION EMPLOYEES (89%); HUMAN RESOURCES (89%); HUMAN RESOURCES & PERSONNEL MANAGEMENT (89%); TEACHING & TEACHERS (88%); OLYMPICS (77%); SPORTS AWARDS (77%); STADIUMS & ARENAS (77%); TALKS & MEETINGS (77%); SUMMER OLYMPICS (73%); APPROVALS (71%); EMPLOYEE TRAINING (71%); OUTPUT & DEMAND (70%); VISION IMPAIRMENTS (69%); EDUCATION ADMINISTRATION (67%); DISABLED PERSONS (64%)\n\nGeographic: HARYANA, INDIA (93%)\n\nLoad-Date: August 5, 2021\n\n\n
982 \nSubject: BADMINTON (90%); SPORTS AWARDS (90%); OLYMPICS (89%); 2016 RIO SUMMER OLYMPICS (78%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (74%); TOKYO, JAPAN (73%); INDIA (94%)\n\nLoad-Date: July 31, 2021\n\n\n
983 \nSubject: BOXING (91%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS & RECREATION (90%); ARCHERY (89%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); AMATEUR SPORTS (79%); COACHES & TRAINERS (79%); TRENDS & EVENTS (79%); WOMEN'S SPORTS (79%); ATHLETES (78%); CROWDFUNDING (78%); OLYMPICS (78%); WOMEN (78%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); BICYCLES (74%); BADMINTON (73%); CROWDSOURCING (73%)\n\nIndustry: BICYCLES (74%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (90%); ODISHA, INDIA (92%); ASSAM, INDIA (79%); JHARKHAND, INDIA (79%); TAMIL NADU, INDIA (79%); TRIPURA, INDIA (79%); INDIA (96%)\n\nLoad-Date: August 2, 2021\n\n\n
984 \nSubject: PARALYMPICS (92%); COVID CORONAVIRUS (90%); OLYMPICS (90%); SPORTS AWARDS (89%); WOUNDS & INJURIES (89%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS INSTRUCTION (78%); WEIGHTLIFTING (78%); DELAYS & POSTPONEMENTS (77%); MUSCULOSKELETAL DISORDERS & INJURIES (76%); SPINAL CORD INJURIES (76%); DEATH & DYING (73%); EXERCISE & FITNESS (66%); CANCER (60%); LUNG CANCER (50%)\n\nIndustry: LIQUEFIED PETROLEUM GAS (72%)\n\nGeographic: GUJARAT, INDIA (73%); INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
985 \nSubject: BOXING (91%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS & RECREATION (90%); ARCHERY (89%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); AMATEUR SPORTS (79%); COACHES & TRAINERS (79%); TRENDS & EVENTS (79%); WOMEN'S SPORTS (79%); ATHLETES (78%); CROWDFUNDING (78%); OLYMPICS (78%); WOMEN (78%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); BICYCLES (74%); BADMINTON (73%); CROWDSOURCING (73%)\n\nIndustry: BICYCLES (74%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (90%); ODISHA, INDIA (92%); ASSAM, INDIA (79%); JHARKHAND, INDIA (79%); TAMIL NADU, INDIA (79%); TRIPURA, INDIA (79%); INDIA (96%)\n\nLoad-Date: July 29, 2021\n\n\n
986 \nSubject: BOXING (91%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS & RECREATION (90%); ARCHERY (89%); FIELD HOCKEY (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); AMATEUR SPORTS (79%); COACHES & TRAINERS (79%); TRENDS & EVENTS (79%); WOMEN'S SPORTS (79%); ATHLETES (78%); CROWDFUNDING (78%); OLYMPICS (78%); WOMEN (78%); GOVERNMENT & PUBLIC ADMINISTRATION (77%); BICYCLES (74%); BADMINTON (73%); CROWDSOURCING (73%)\n\nIndustry: BICYCLES (74%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (90%); ODISHA, INDIA (92%); ASSAM, INDIA (79%); JHARKHAND, INDIA (79%); TAMIL NADU, INDIA (79%); TRIPURA, INDIA (79%); INDIA (96%)\n\nLoad-Date: July 28, 2021\n\n\n
987 \nSubject: NEGATIVE PERSONAL NEWS (90%); WOMEN (90%); NEGATIVE NEWS (89%); MARRIAGE (88%); ABUSE & NEGLECT (78%); NEGATIVE MISC NEWS (78%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (78%); FAMILY (77%); MEN (77%); WOMEN'S SPORTS (77%); CRIME, LAW ENFORCEMENT & CORRECTIONS (75%); DOMESTIC VIOLENCE (73%); INTERPERSONAL RELATIONSHIPS (73%); HANDBALL (72%); FINES & PENALTIES (70%); RELIGION (69%); JUDGES (60%); LAW COURTS & TRIBUNALS (60%)\n\nIndustry: MOBILE & CELLULAR COMMUNICATIONS (66%); TELEPHONIC EQUIPMENT (66%); MOBILE & CELLULAR TELEPHONES (61%)\n\nPerson: SIMONE BILES (73%)\n\nGeographic: KERALA, INDIA (79%); MADHYA PRADESH, INDIA (79%); GUJARAT, INDIA (74%); UTTAR PRADESH, INDIA (74%); INDIA (94%)\n\nLoad-Date: July 31, 2021\n\n\n
988 \nSubject: FIELD HOCKEY (89%); OLYMPICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%); WRESTLING (73%)\n\nGeographic: INDIA (96%); ARGENTINA (79%); GERMANY (79%); NETHERLANDS (79%)\n\nLoad-Date: August 8, 2021\n\n\n
989 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION FACILITIES & VENUES (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); EMOTIONS (89%); SPORTS & RECREATION (89%); STATE & NATIONAL SYMBOLS (89%); TRACK & FIELD (89%)\n\nGeographic: TOKYO, JAPAN (57%); HARYANA, INDIA (74%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
990 \nSubject: BOXING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (89%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); COVID CORONAVIRUS (63%); SURGERY & TRANSPLANTATION (50%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); HOTELS & MOTELS (62%)\n\nGeographic: INDIA (73%); EUROPE (58%)\n\nLoad-Date: August 7, 2021\n\n\n
991 \nSubject: SPORTS AWARDS (91%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); MENTORS & ROLE MODELS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS & RECREATION (78%); SOCCER TOURNAMENTS (77%); TOURNAMENTS (66%)\n\nGeographic: HARYANA, INDIA (73%); UTTAR PRADESH, INDIA (73%); INDIA (91%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
992 \nSubject: SPORTS AWARDS (91%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); MENTORS & ROLE MODELS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS & RECREATION (78%); SOCCER TOURNAMENTS (77%); TOURNAMENTS (66%)\n\nGeographic: HARYANA, INDIA (73%); UTTAR PRADESH, INDIA (73%); INDIA (91%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
993 \nSubject: SPORTS AWARDS (91%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); MENTORS & ROLE MODELS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS & RECREATION (78%); SOCCER TOURNAMENTS (77%); TOURNAMENTS (66%)\n\nGeographic: HARYANA, INDIA (73%); UTTAR PRADESH, INDIA (73%); INDIA (91%); GERMANY (79%)\n\nLoad-Date: August 8, 2021\n\n\n
994 \nSubject: OLYMPICS (90%); WRESTLING (89%); SPORTS AWARDS (78%); ATHLETES (77%); SPORTS & RECREATION EVENTS (77%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); OLYMPIC COMMITTEES (71%); WATER RESOURCES (67%); WATER SUPPLY (67%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); ENERGY & UTILITIES (67%)\n\nGeographic: TOKYO, JAPAN (69%); HARYANA, INDIA (78%); INDIA (91%); RUSSIAN FEDERATION (52%)\n\nLoad-Date: August 6, 2021\n\n\n
995 \nSubject: OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WEAPONS & ARMS (89%); WRESTLING (89%); SPORTS & RECREATION (78%); SPORTS OFFICIATING (78%); DIGITAL CURRENCY (73%); OLYMPIC COMMITTEES (72%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); DIGITAL CURRENCY (73%)\n\nGeographic: TOKYO, JAPAN (56%); LONDON, ENGLAND (54%); RUSSIAN FEDERATION (71%)\n\nLoad-Date: August 6, 2021\n\n\n
996 \nSubject: ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); WEAPONS & ARMS (89%); WRESTLING (89%); SPORTS OFFICIATING (78%); DIGITAL CURRENCY (73%); SPORTS & RECREATION (73%); OLYMPIC COMMITTEES (72%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); DIGITAL CURRENCY (73%)\n\nGeographic: LONDON, ENGLAND (54%); RUSSIAN FEDERATION (71%)\n\nLoad-Date: August 6, 2021\n\n\n
997 \nSubject: CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); KIDNAPPING & ABDUCTION (90%); MURDER (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WITNESSES (90%); WEAPONS & ARMS (89%); ARRESTS (78%); CRIMINAL INVESTIGATIONS (78%); INVESTIGATIONS (78%); LAW ENFORCEMENT (78%); WRESTLING (78%)\n\nIndustry: MOBILE & CELLULAR TELEPHONES (71%)\n\nGeographic: INDIA (73%)\n\nLoad-Date: August 3, 2021\n\n\n
998 \nSubject: FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); PRIME MINISTERS (90%); GOVERNMENT ADVISORS & MINISTERS (89%); POLITICS (89%); CELEBRITIES (78%); ELECTIONS & POLITICS (78%); MEN'S SPORTS (78%); PUBLIC FINANCE (78%); SPORTS AWARDS (78%); 2020 TOKYO SUMMER OLYMPICS (76%); SUMMER OLYMPICS (76%); PUBLIC FINANCE AGENCIES & TREASURIES (72%); BADMINTON (71%)\n\nIndustry: CELEBRITIES (78%); MEDIA CONTENT (73%); PUBLIC FINANCE AGENCIES & TREASURIES (72%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (92%); ASSAM, INDIA (79%); INDIA (98%)\n\nLoad-Date: August 6, 2021\n\n\n
999 \nSubject: OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); TRACK & FIELD (78%)\n\nGeographic: LOS ANGELES, CA, USA (57%); CALIFORNIA, USA (56%); POLAND (73%)\n\nLoad-Date: August 8, 2021\n\n\n
1000 \nSubject: OLYMPICS (90%); WRESTLING (89%); ATHLETES (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); OLYMPIC COMMITTEES (71%); WATER RESOURCES (67%); WATER SUPPLY (67%)\n\nIndustry: ELECTRONIC PUBLISHING (90%); ENERGY & UTILITIES (67%)\n\nGeographic: TOKYO, JAPAN (69%); HARYANA, INDIA (79%); INDIA (90%); RUSSIAN FEDERATION (53%)\n\nLoad-Date: August 6, 2021\n\n\n
1001 \nSubject: OLYMPICS (90%); WRESTLING (89%); SPORTS AWARDS (78%); ATHLETES (77%); SPORTS & RECREATION EVENTS (77%); STADIUMS & ARENAS (77%); SUMMER OLYMPICS (77%); BICYCLES (75%); OLYMPIC COMMITTEES (71%); WATER RESOURCES (67%); WATER SUPPLY (67%)\n\nIndustry: ELECTRONIC PUBLISHING (89%); BICYCLES (75%); ENERGY & UTILITIES (67%)\n\nGeographic: TOKYO, JAPAN (69%); HARYANA, INDIA (79%); INDIA (91%); RUSSIAN FEDERATION (52%)\n\nLoad-Date: August 6, 2021\n\n\n
1002 \nSubject: ARCHERY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (89%); ATHLETES (78%); OLYMPIC COMMITTEES (73%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (58%); TOKYO, JAPAN (58%); TAIPEI, TAIWAN (57%); JHARKHAND, INDIA (58%); INDIA (94%); UNITED STATES (90%); BHUTAN (88%); RUSSIAN FEDERATION (51%)\n\nLoad-Date: July 29, 2021\n\n\n
1003 \nSubject: OLYMPICS (90%); EXERCISE & FITNESS (89%); DOGS (78%); SPORTS AWARDS (78%); WEIGHTLIFTING (78%); SPORTS & RECREATION FACILITIES & VENUES (75%); SUMMER OLYMPICS (75%); WOMEN'S SPORTS (75%); SPORTS & RECREATION (66%)\n\nGeographic: TOKYO, JAPAN (87%); MANIPUR, INDIA (73%); INDIA (96%)\n\nLoad-Date: July 25, 2021\n\n\n
1004 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WRESTLING (90%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: BEIJING, CHINA (78%); TOKYO, JAPAN (55%); NORTH CENTRAL CHINA (78%); HARYANA, INDIA (74%); INDIA (90%); CHINA (55%)\n\nLoad-Date: August 5, 2021\n\n\n
1005 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WRESTLING (90%); SPORTS & RECREATION EVENTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (89%); BEIJING, CHINA (78%); NORTH CENTRAL CHINA (78%); HARYANA, INDIA (73%); INDIA (89%); CHINA (55%)\n\nLoad-Date: August 5, 2021\n\n\n
1006 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (79%); SPORTS AWARDS (77%); STADIUMS & ARENAS (77%); WRESTLING (77%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: BEVERAGE PRODUCTS (50%)\n\nGeographic: BEIJING, CHINA (79%); INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
1007 \nSubject: OLYMPICS (90%); WRESTLING (89%); SPORTS AWARDS (78%); ATHLETES (77%); SPORTS & RECREATION EVENTS (77%); STADIUMS & ARENAS (77%); WATER RESOURCES (68%); WATER SUPPLY (68%)\n\nIndustry: ELECTRONIC PUBLISHING (89%); ENERGY & UTILITIES (68%)\n\nGeographic: TOKYO, JAPAN (70%); HARYANA, INDIA (79%); INDIA (91%)\n\nLoad-Date: August 6, 2021\n\n\n
1008 \nSubject: OLYMPICS (90%); WRESTLING (89%); ATHLETES (77%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); STADIUMS & ARENAS (77%); WATER RESOURCES (68%); WATER SUPPLY (68%)\n\nIndustry: ELECTRONIC PUBLISHING (90%); ENERGY & UTILITIES (68%)\n\nGeographic: TOKYO, JAPAN (70%); HARYANA, INDIA (79%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
1009 \nSubject: ATHLETES (90%); GOLF (90%); SPORTS AWARDS (89%); OLYMPICS (78%)\n\nPerson: LYDIA KO (92%)\n\nGeographic: EUROPE (77%); UNITED STATES (57%)\n\nLoad-Date: August 7, 2021\n\n\n
1010 \nSubject: BOXING (94%); WOMEN'S SPORTS (92%); GENDER EQUALITY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); YOUTH CLUBS & ACTIVITIES (76%); GENDER & SEX DISCRIMINATION (72%); TOURNAMENTS (61%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (58%); SIKKIM, INDIA (73%); INDIA (92%)\n\nLoad-Date: August 6, 2021\n\n\n
1011 \nSubject: BOXING (93%); WOMEN'S SPORTS (91%); GENDER EQUALITY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN (90%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); YOUTH CLUBS & ACTIVITIES (76%); GENDER & SEX DISCRIMINATION (72%); TOURNAMENTS (61%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (58%); SIKKIM, INDIA (73%); INDIA (92%)\n\nLoad-Date: August 6, 2021\n\n\n
1012 \nSubject: MURDER (94%); CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); KIDNAPPING & ABDUCTION (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WITNESSES (90%); ATHLETES (89%); NEGATIVE NEWS (89%); STADIUMS & ARENAS (89%); WEAPONS & ARMS (89%); WRESTLING (89%); ARRESTS (78%); AUTOPSIES (78%); CRIMINAL INVESTIGATIONS (78%); DEATH & DYING (78%); INVESTIGATIONS (78%); LAW ENFORCEMENT (78%)\n\nIndustry: MOBILE & CELLULAR TELEPHONES (71%)\n\nGeographic: INDIA (88%)\n\nLoad-Date: August 3, 2021\n\n\n
1013 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); ICE HOCKEY (89%); SPORTS AWARDS (89%); SPORTS & RECREATION (78%); SUMMER OLYMPICS (78%); TOURNAMENTS (78%)\n\nGeographic: TOKYO, JAPAN (73%); KOLKATA, WEST BENGAL, INDIA (59%); PUNJAB, INDIA (90%); INDIA (90%)\n\nLoad-Date: August 7, 2021\n\n\n
1014 \nSubject: TENNIS (91%); TENNIS TOURNAMENTS (90%); OLYMPICS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (78%); EMOTIONS (73%)\n\nPerson: ELINA SVITOLINA (79%); NOVAK DJOKOVIC (79%); ANDY MURRAY (78%); SERENA WILLIAMS (58%); VENUS WILLIAMS (58%)\n\nGeographic: BARCELONA, SPAIN (53%); BRAZIL (79%); CZECH REPUBLIC (56%); SPAIN (53%)\n\nLoad-Date: July 30, 2021\n\n\n
1015 \nSubject: TENNIS (90%); ATHLETES (89%); MEN'S SPORTS (89%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (77%)\n\nPerson: NOVAK DJOKOVIC (79%)\n\nGeographic: TOKYO, JAPAN (58%); GERMANY (88%); SPAIN (55%); CROATIA (52%)\n\nLoad-Date: July 31, 2021\n\n\n
1016 \nSubject: TENNIS (90%); ATHLETES (89%); MEN'S SPORTS (89%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (78%); SUMMER OLYMPICS (78%)\n\nPerson: NOVAK DJOKOVIC (79%)\n\nGeographic: TOKYO, JAPAN (58%); GERMANY (88%); SPAIN (55%); CROATIA (52%)\n\nLoad-Date: July 31, 2021\n\n\n
1017 \nSubject: ATHLETES (90%); OLYMPICS (90%); WEIGHTLIFTING (90%); EXERCISE & FITNESS (89%); SPORTS AWARDS (89%); SUMMER OLYMPICS (89%); WOMEN'S SPORTS (89%); STADIUMS & ARENAS (78%); 2016 RIO SUMMER OLYMPICS (77%)\n\nGeographic: TOKYO, JAPAN (58%); MANIPUR, INDIA (58%); INDIA (94%)\n\nLoad-Date: July 25, 2021\n\n\n
1018 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); NEGATIVE NEWS (89%); NEGATIVE SOCIETAL NEWS (89%); SOCIETY, SOCIAL ASSISTANCE & LIFESTYLE (78%); STADIUMS & ARENAS (78%); RANKINGS (70%)\n\nGeographic: TOKYO, JAPAN (56%); AUSTRALIA (79%); GERMANY (79%); NETHERLANDS (79%); UNITED KINGDOM (70%)\n\nLoad-Date: August 2, 2021\n\n\n
1019 \nSubject: FIELD HOCKEY (90%); STADIUMS & ARENAS (90%); OLYMPICS (89%); SPORTS AWARDS (89%); ATHLETES (78%); PHYSICAL FITNESS (78%); MEN (77%)\n\nIndustry: ELECTRONIC PUBLISHING (78%)\n\nGeographic: TOKYO, JAPAN (58%); GERMANY (96%); INDIA (95%)\n\nLoad-Date: August 6, 2021\n\n\n
1020 \nSubject: APPROVALS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); POLICE FORCES (90%); TALKS & MEETINGS (90%); WOMEN'S SPORTS (90%); GOVERNMENT ADVISORS & MINISTERS (89%); SPORTS & RECREATION EVENTS (78%); TRANSPORTATION DEPARTMENTS (78%); SPORTS AWARDS (77%)\n\nIndustry: TRANSPORTATION DEPARTMENTS (78%)\n\nGeographic: TOKYO, JAPAN (52%); MANIPUR, INDIA (95%); NAGALAND, INDIA (93%)\n\nLoad-Date: August 9, 2021\n\n\n
1021 \nSubject: ATHLETES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS AWARDS (90%)\n\nGeographic: TOKYO, JAPAN (55%); INDIA (91%); BELGIUM (53%)\n\nLoad-Date: August 6, 2021\n\n\n
1022 \nSubject: BOXING (90%); OLYMPICS (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); MARTIAL ARTS (73%); ARCHERY (72%)\n\nIndustry: HIGHWAYS & STREETS (50%)\n\nGeographic: ASSAM, INDIA (93%)\n\nLoad-Date: July 31, 2021\n\n\n
1023 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); WRESTLING (90%); RANKINGS (88%); CELEBRITIES (78%); SPORTS AWARDS (78%); OLYMPIC COMMITTEES (67%); SPRAINS & STRAINS (61%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (57%); HARYANA, INDIA (78%); KAZAKHSTAN (94%); INDIA (91%); RUSSIAN FEDERATION (70%)\n\nLoad-Date: August 6, 2021\n\n\n
1024 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SIKHS & SIKHISM (78%); EMOTIONS (72%)\n\nGeographic: GERMANY (88%)\n\nLoad-Date: August 6, 2021\n\n\n
1025 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (77%); EMOTIONS (72%); SMALL BUSINESS (70%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: PUNJAB, INDIA (59%); INDIA (93%)\n\nLoad-Date: August 5, 2021\n\n\n
1026 \nSubject: FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (78%); PRIME MINISTERS (78%); SPORTS AWARDS (77%); OLYMPICS (65%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: NEW DELHI, INDIA (90%); INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
1027 \nSubject: FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); STADIUMS & ARENAS (89%); PRIME MINISTERS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (73%); OLYMPICS (65%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (79%); INDIA (92%)\n\nLoad-Date: August 6, 2021\n\n\n
1028 \nSubject: COACHES & TRAINERS (90%); FIELD HOCKEY (90%); SOCIAL MEDIA (90%); TRENDS (90%); TRENDS & EVENTS (90%); WOMEN'S SPORTS (90%); INTERNET TROLLING (79%); WOMEN (79%); SPORTS & RECREATION EVENTS (77%); OLYMPICS (71%)\n\nIndustry: SOCIAL MEDIA (90%); INTERNET TROLLING (79%)\n\nPerson: SHAH RUKH KHAN (92%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (57%); INDIA (95%)\n\nLoad-Date: August 2, 2021\n\n\n
1029 \nSubject: FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); TOURNAMENTS (90%); WOMEN'S SPORTS (90%); SPORTS AWARDS (89%); BASKETBALL (79%); MEN'S SPORTS (79%); OLYMPICS (73%)\n\nPerson: KOBE BRYANT (79%)\n\nGeographic: ARGENTINA (79%); UNITED KINGDOM (74%); NETHERLANDS (73%)\n\nLoad-Date: August 6, 2021\n\n\n
1030 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (90%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); COVID CORONAVIRUS (62%); COVID-19 CORONAVIRUS (62%); INFECTIOUS DISEASE (62%)\n\nGeographic: GERMANY (96%); INDIA (94%); AUSTRALIA (88%); UNITED KINGDOM (79%); BELGIUM (73%)\n\nLoad-Date: August 6, 2021\n\n\n
1031 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); TOURNAMENTS (90%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); COVID CORONAVIRUS (62%); COVID-19 CORONAVIRUS (62%); INFECTIOUS DISEASE (62%)\n\nGeographic: GERMANY (96%); INDIA (94%); AUSTRALIA (88%); UNITED KINGDOM (79%); BELGIUM (73%)\n\nLoad-Date: August 6, 2021\n\n\n
1032 \nSubject: COVID CORONAVIRUS (90%); NEWS BRIEFS (78%); COVID-19 CORONAVIRUS (77%); INTERNATIONAL RELATIONS & NATIONAL SECURITY (76%); TALKS & MEETINGS (74%); CORONAVIRUSES (72%); TERRITORIAL & NATIONAL BORDERS (71%); ACTORS & ACTRESSES (70%); NATIONAL SECURITY (69%); SPORTS AWARDS (66%); TRACK & FIELD (61%); VIRUSES (57%)\n\nOrganization: NATIONAL SECURITY COUNCIL (55%)\n\nIndustry: MEDIA CONTENT (78%); ACTORS & ACTRESSES (70%); REALITY TELEVISION (64%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (90%); ASSAM, INDIA (89%); MIZORAM, INDIA (89%); INDIA (94%); PAKISTAN (92%); AFGHANISTAN (87%)\n\nLoad-Date: August 8, 2021\n\n\n
1033 \nSubject: BOXING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); COACHES & TRAINERS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (56%)\n\nGeographic: TAIPEI, TAIWAN (71%); MANIPUR, INDIA (73%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
1034 \nSubject: ATHLETES (92%); GYMNASTICS (90%); OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); NEGATIVE NEWS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); MEDICINE & HEALTH (75%); MENTAL HEALTH (75%); BASKETBALL (73%); TENNIS (70%); WOUNDS & INJURIES (70%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%); NAOMI OSAKA (78%); RONDA ROUSEY (78%); SERENA WILLIAMS (50%)\n\nGeographic: NEW DELHI, INDIA (89%); TOKYO, JAPAN (72%); UNITED STATES (93%)\n\nLoad-Date: July 29, 2021\n\n\n
1035 \nSubject: BOXING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); COACHES & TRAINERS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (56%)\n\nGeographic: TAIPEI, TAIWAN (71%); MANIPUR, INDIA (73%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
1036 \nSubject: BOXING (90%); OLYMPICS (90%); SPORTS AWARDS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); COACHES & TRAINERS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); COVID CORONAVIRUS (71%); COVID-19 CORONAVIRUS (56%)\n\nGeographic: TAIPEI, TAIWAN (71%); MANIPUR, INDIA (73%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
1037 \nSubject: ATHLETES (92%); GYMNASTICS (90%); OLYMPICS (90%); NEGATIVE NEWS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%); MEDICINE & HEALTH (75%); MENTAL HEALTH (75%); BASKETBALL (73%); TENNIS (70%); WOUNDS & INJURIES (70%)\n\nPerson: MICHAEL PHELPS (79%); SIMONE BILES (79%); NAOMI OSAKA (78%); RONDA ROUSEY (78%); SERENA WILLIAMS (50%)\n\nGeographic: NEW DELHI, INDIA (89%); TOKYO, JAPAN (72%); UNITED STATES (93%)\n\nLoad-Date: July 29, 2021\n\n\n
1038 \nSubject: FIELD HOCKEY (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); ATHLETES (78%); MEN'S SPORTS (78%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); GOVERNMENT ADVISORS & MINISTERS (77%)\n\nIndustry: SPONSORSHIP (89%)\n\nGeographic: TOKYO, JAPAN (55%); ODISHA, INDIA (93%); INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1039 \nSubject: SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%); PRIME MINISTERS (73%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); INDIA (98%)\n\nLoad-Date: August 6, 2021\n\n\n
1040 \nSubject: SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); TRACK & FIELD (90%); ATHLETES (78%); OLYMPICS (78%); SPORTS AWARDS (78%); SPORTS FANS (78%)\n\nGeographic: NEW DELHI, INDIA (79%); CENTRAL CHINA (79%); KARNATAKA, INDIA (73%); INDIA (95%); POLAND (87%); ASIA (79%)\n\nLoad-Date: August 9, 2021\n\n\n
1041 \nSubject: OLYMPICS (90%); STADIUMS & ARENAS (90%); ATHLETES (78%); SPORTS AWARDS (78%); TRACK & FIELD (78%)\n\nGeographic: TOKYO, JAPAN (58%); INDIA (93%); PAKISTAN (58%); GERMANY (55%); POLAND (52%); KENYA (51%)\n\nLoad-Date: August 6, 2021\n\n\n
1042 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); SPORTS AWARDS (89%); ATHLETES (78%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); GOVERNMENT ADVISORS & MINISTERS (77%); CHILDREN, ADOLESCENTS & TEENS (71%); OLYMPICS (71%)\n\nIndustry: SPONSORSHIP (89%)\n\nGeographic: TOKYO, JAPAN (55%); ODISHA, INDIA (94%); INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1043 \nSubject: AGRICULTURAL LAW (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); LEGISLATIVE BODIES (90%); NEGATIVE MISC NEWS (89%); NEGATIVE NEWS (78%); NEGATIVE TECHNOLOGY NEWS (78%); SPYWARE (78%); TALKS & MEETINGS (78%); GOVERNMENT ADVISORS & MINISTERS (73%); NEGATIVE PERSONAL NEWS (73%); TAX LAW (73%); TAXES & TAXATION (72%); SPORTS AWARDS (68%); WOMEN'S SPORTS (68%); FIELD HOCKEY (63%); OLYMPICS (63%); SEXUAL ASSAULT (60%)\n\nIndustry: AGRICULTURAL LAW (90%); SPYWARE (78%)\n\nGeographic: NEW DELHI, INDIA (79%); RAJASTHAN, INDIA (79%); INDIA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1044 \nSubject: ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); WRESTLING (90%); OLYMPICS (78%); WOMEN'S SPORTS (78%); COACHES & TRAINERS (73%)\n\nGeographic: HARYANA, INDIA (58%); INDIA (90%); BULGARIA (50%)\n\nLoad-Date: August 4, 2021\n\n\n
1045 \nSubject: ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); WRESTLING (90%); OLYMPICS (78%); WOMEN'S SPORTS (78%); COACHES & TRAINERS (73%)\n\nGeographic: HARYANA, INDIA (58%); INDIA (90%); BULGARIA (50%)\n\nLoad-Date: August 4, 2021\n\n\n
1046 \nSubject: OLYMPICS (78%); SPORTS AWARDS (78%); BACK DISORDERS & INJURIES (70%); WOUNDS & INJURIES (52%)\n\nGeographic: NEW DELHI, INDIA (59%); MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (56%); MANIPUR, INDIA (73%); INDIA (89%)\n\nLoad-Date: July 25, 2021\n\n\n
1047 \nSubject: ACTORS & ACTRESSES (90%); FILM (77%); FILM DIRECTORS (77%); MOVIE REVIEWS (77%); SPORTS AWARDS (70%); PREGNANCY & CHILDBIRTH (69%); RATINGS & REVIEWS (69%)\n\nCompany: NETFLIX INC (57%)\n\nTicker: NFLX (NASDAQ) (57%)\n\nIndustry: NAICS532282 VIDEO TAPE & DISC RENTAL (57%); SIC7841 VIDEO TAPE RENTAL (57%); ACTORS & ACTRESSES (90%); MOVIE RELEASE DATES (90%); FILM (77%); FILM DIRECTORS (77%); MOVIE REVIEWS (77%)\n\nGeographic: HYDERABAD, ANDHRA PRADESH, INDIA (59%); INDIA (89%)\n\nLoad-Date: July 28, 2021\n\n\n
1048 \nSubject: BOXING (93%); WOMEN'S SPORTS (91%); OLYMPICS (90%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); YOUTH CLUBS & ACTIVITIES (76%); TOURNAMENTS (64%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (58%); INDIA (92%)\n\nLoad-Date: August 6, 2021\n\n\n
1049 \nSubject: SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); WOUNDS & INJURIES (89%); OLYMPICS (79%); FACIAL INJURIES (75%); INFECTIOUS DISEASE (72%); HEAD INJURIES (70%); SPORTS & RECREATION (67%); COVID CORONAVIRUS (50%); COVID-19 CORONAVIRUS (50%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 1, 2021\n\n\n
1050 \nSubject: ATHLETES (78%); OLYMPICS (78%); SPORTS AWARDS (78%); STADIUMS & ARENAS (78%); WATER RESOURCES (78%); WRESTLING (78%); WATER SUPPLY (73%); MEDICAL TOURISM (62%)\n\nIndustry: ENERGY & UTILITIES (94%); UNINTERRUPTIBLE POWER SUPPLIES (73%); MEDICAL TOURISM (62%)\n\nGeographic: TOKYO, JAPAN (88%); HARYANA, INDIA (92%); ASSAM, INDIA (79%); INDIA (91%)\n\nLoad-Date: August 6, 2021\n\n\n
1051 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); OLYMPICS (78%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); PRESS CONFERENCES (50%)\n\nGeographic: TOKYO, JAPAN (58%); GERMANY (92%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
1052 \nSubject: FIELD HOCKEY (90%); 2020 TOKYO SUMMER OLYMPICS (89%); COLLEGE & UNIVERSITY SPORTS (89%); MEN'S SPORTS (89%); SPORTS & RECREATION (89%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (89%); STADIUMS & ARENAS (89%); CELEBRITIES (78%); OLYMPICS (78%); PRIME MINISTERS (78%); SPORTS FANS (78%); TRENDS & EVENTS (78%); TOURNAMENTS (76%); HEADS OF STATE & GOVERNMENT (73%)\n\nIndustry: COLLEGE & UNIVERSITY SPORTS (89%); CELEBRITIES (78%)\n\nGeographic: UTTAR PRADESH, INDIA (92%); INDIA (97%)\n\nLoad-Date: August 6, 2021\n\n\n
1053 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (89%); MARTIAL ARTS (89%); TOURNAMENTS (89%); OLYMPICS (79%); INTERVIEWS (78%); TERRITORIAL & NATIONAL BORDERS (78%); SPORTS & RECREATION EVENTS (77%); SPORTS AWARDS (77%); UROGENITAL DISORDERS & INJURIES (70%); TRANSPLANT SURGERY (50%)\n\nIndustry: MOBILE & CELLULAR TELEPHONES (70%); TEA (50%); TEA FARMING (50%)\n\nGeographic: TOKYO, JAPAN (90%); TAIPEI, TAIWAN (79%); KOLKATA, WEST BENGAL, INDIA (72%); BEIJING, CHINA (69%); ASSAM, INDIA (79%); NAGALAND, INDIA (79%); INDIA (93%)\n\nLoad-Date: July 30, 2021\n\n\n
1054 \nSubject: FIELD HOCKEY (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); SPORTS & RECREATION EVENTS (89%); SPORTS INSTRUCTION (89%); ATHLETES (78%); MEN'S SPORTS (78%); OLYMPICS (78%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION (78%); STADIUMS & ARENAS (78%); TOURNAMENTS (78%); GOVERNMENT ADVISORS & MINISTERS (77%); CHILDREN, ADOLESCENTS & TEENS (71%)\n\nIndustry: SPONSORSHIP (89%)\n\nGeographic: TOKYO, JAPAN (55%); ODISHA, INDIA (94%); INDIA (96%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1055 \nSubject: ARMIES (93%); OLYMPICS (92%); PARALYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (89%); SPORTS AWARDS (86%); EXPLOSIONS (78%); WEAPONS & ARMS (78%); PROSTHETICS & ORTHOTICS (73%); BOXING (72%); COVID CORONAVIRUS (60%); COVID-19 CORONAVIRUS (60%); INFECTIOUS DISEASE (60%)\n\nIndustry: ARMIES (93%); PROSTHETICS & ORTHOTICS (73%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); KASHMIR (79%); JAMMU & KASHMIR, INDIA (74%); INDIA (94%)\n\nLoad-Date: July 29, 2021\n\n\n
1056 \nSubject: RACISM & XENOPHOBIA (91%); NEGATIVE NEWS (90%); OLYMPICS (90%); RACE & ETHNICITY (90%); SPORTS AWARDS (90%); SOCIAL MEDIA (89%); DISCRIMINATION (78%); NEGATIVE PERSONAL NEWS (78%); VIRAL VIDEOS (78%); WEDDINGS & ENGAGEMENTS (77%); WEIGHTLIFTING (57%)\n\nIndustry: SOCIAL MEDIA (89%); VIRAL VIDEOS (78%)\n\nGeographic: NEW DELHI, INDIA (78%); NORTHEAST INDIA (94%); MANIPUR, INDIA (79%); INDIA (97%)\n\nLoad-Date: July 27, 2021\n\n\n
1057 \nSubject: PROTESTS & DEMONSTRATIONS (92%); AGRICULTURAL LAW (90%); LEGISLATIVE BODIES (90%); NEGATIVE MISC NEWS (90%); NEGATIVE NEWS (90%); POLITICS (89%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); HEADS OF STATE & GOVERNMENT (78%); NEGATIVE PERSONAL NEWS (78%); PRIME MINISTERS (78%); TERRORISM (78%); NEGATIVE TECHNOLOGY NEWS (73%); SPYWARE (67%); SPORTS AWARDS (65%)\n\nIndustry: AGRICULTURAL LAW (90%); SPYWARE (67%)\n\nPerson: JANOS ADER (94%); NARENDRA MODI (79%)\n\nLoad-Date: July 26, 2021\n\n\n
1058 \nSubject: MURDER (94%); ARRESTS (93%); NEGATIVE PERSONAL NEWS (93%); CRIME, LAW ENFORCEMENT & CORRECTIONS (92%); WRESTLING (92%); ATHLETES (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); STADIUMS & ARENAS (90%); SUMMER OLYMPICS (90%); LAW ENFORCEMENT (78%); NEGATIVE NEWS (78%); SPORTS AWARDS (78%); WOUNDS & INJURIES (75%); ADMISSIONS & CONFESSIONS (73%); KIDNAPPING & ABDUCTION (73%)\n\nGeographic: HARYANA, INDIA (79%); INDIA (59%)\n\nLoad-Date: July 23, 2021\n\n\n
1059 \nSubject: COVID CORONAVIRUS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); COVID-19 CORONAVIRUS (90%); INFECTIOUS DISEASE (90%); SPORTS & RECREATION (90%); TRENDS & EVENTS (89%); MEN'S SPORTS (78%); OLYMPICS (78%); ARCHERY (73%); ASSOCIATIONS & ORGANIZATIONS (73%)\n\nGeographic: TOKYO, JAPAN (88%); ASSAM, INDIA (79%); INDIA (93%)\n\nLoad-Date: July 23, 2021\n\n\n
1060 \nSubject: ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); PROFILES & BIOGRAPHIES (90%); INTERVIEWS (78%); SPORTS AWARDS (78%); FILM (77%); ARTISTS & PERFORMERS (72%)\n\nIndustry: ACTORS & ACTRESSES (90%); DRAMA FILMS (90%); MEDIA CONTENT (78%); MOVIE INDUSTRY (78%); FILM (77%); ARTISTS & PERFORMERS (72%); ENTERTAINMENT & ARTS (72%)\n\nPerson: PRIYANKA CHOPRA (79%)\n\nGeographic: ARUNACHAL PRADESH, INDIA (79%); ASSAM, INDIA (79%); MANIPUR, INDIA (79%); NAGALAND, INDIA (79%); MIZORAM, INDIA (59%); INDIA (94%); UNITED STATES (79%)\n\nLoad-Date: July 26, 2021\n\n\n
1061 \nSubject: ATHLETES (90%); MENTORS & ROLE MODELS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); EXERCISE & FITNESS (89%); CELEBRITIES (78%); OLYMPICS (78%); STADIUMS & ARENAS (78%); EMOTIONS (72%)\n\nIndustry: CELEBRITIES (78%)\n\nGeographic: TOKYO, JAPAN (88%); MANIPUR, INDIA (90%); CHHATTISGARH, INDIA (73%); INDIA (90%)\n\nLoad-Date: July 25, 2021\n\n\n
1062 \nSubject: WEIGHTLIFTING (89%); SPORTS & RECREATION EVENTS (87%); OLYMPICS (77%); SPORTS AWARDS (77%); BACK DISORDERS & INJURIES (74%); EMOTIONS (73%); COACHES & TRAINERS (72%); TOURNAMENTS (64%); WOUNDS & INJURIES (50%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (74%); TOKYO, JAPAN (73%); TASHKENT, UZBEKISTAN (68%); MANIPUR, INDIA (90%); INDIA (94%)\n\nLoad-Date: July 26, 2021\n\n\n
1063 \nSubject: FIELD HOCKEY (90%); SPORTS & RECREATION (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); ACTORS & ACTRESSES (89%); SPORTS & RECREATION EVENTS (89%); ATHLETES (78%); OLYMPICS (78%)\n\nIndustry: ACTORS & ACTRESSES (89%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (73%); ANDHRA PRADESH, INDIA (73%); PUNJAB, INDIA (73%); INDIA (93%); ARGENTINA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1064 \nSubject: WOMEN'S SPORTS (90%); FIELD HOCKEY (89%); WOMEN (89%); COACHES & TRAINERS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%); POOL & BILLIARDS (77%); ATHLETES (73%)\n\nIndustry: CAMERAS (72%)\n\nGeographic: NEW DELHI, INDIA (90%); TOKYO, JAPAN (58%); INDIA (96%); AUSTRALIA (92%); ASIA (73%); PAKISTAN (58%)\n\nLoad-Date: August 2, 2021\n\n\n
1065 \nSubject: INTERVIEWS (90%); SOCIAL MEDIA (90%); OLYMPICS (76%); SPORTS AWARDS (76%); SUBSTANCE ABUSE (50%)\n\nIndustry: SOCIAL MEDIA (90%); AIRPORT OPERATION (50%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (58%); CHENNAI, TAMIL NADU, INDIA (58%); MUMBAI, MAHARASHTRA, INDIA (58%); ASSAM, INDIA (79%); MANIPUR, INDIA (79%); NORTHEAST INDIA (79%); INDIA (94%); MALDIVES (79%)\n\nLoad-Date: July 30, 2021\n\n\n
1066 \nSubject: OLYMPICS (89%); SPORTS AWARDS (89%); WEIGHTLIFTING (88%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); STADIUMS & ARENAS (78%); WOMEN'S SPORTS (78%); TRANSPORTATION DEPARTMENTS (76%); ARCHERY (73%); BLUE COLLAR WORKERS (71%); WAGES & SALARIES (71%); ECONOMIC CRISIS (50%)\n\nIndustry: ELECTRONIC PUBLISHING (78%); TRANSPORTATION DEPARTMENTS (76%)\n\nGeographic: MANIPUR, INDIA (94%); INDIA (90%)\n\nLoad-Date: July 25, 2021\n\n\n
1067 \nSubject: MENTORS & ROLE MODELS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); WEIGHTLIFTING (90%); ATHLETES (89%); EXERCISE & FITNESS (89%); OLYMPICS (78%); STADIUMS & ARENAS (78%); BLUE COLLAR WORKERS (69%); COOKING & ENTERTAINING (68%)\n\nGeographic: TOKYO, JAPAN (73%); MANIPUR, INDIA (94%); CHHATTISGARH, INDIA (79%); INDIA (92%); ASIA (73%)\n\nLoad-Date: July 25, 2021\n\n\n
1068 \nSubject: WEIGHTLIFTING (91%); WOMEN'S SPORTS (90%); EXERCISE & FITNESS (89%); SPORTS & RECREATION EVENTS (89%); OLYMPICS (78%); BACK DISORDERS & INJURIES (66%); WOUNDS & INJURIES (66%)\n\nGeographic: TOKYO, JAPAN (87%); TASHKENT, UZBEKISTAN (50%); MANIPUR, INDIA (73%); INDIA (94%); UNITED STATES (71%)\n\nLoad-Date: July 24, 2021\n\n\n
1069 \nSubject: TENNIS (91%); SPORTS & RECREATION EVENTS (90%); TENNIS TOURNAMENTS (90%); ATHLETES (78%); WOMEN'S SPORTS (78%); CELEBRITIES (76%); SPORTS AWARDS (76%); TOURNAMENTS (73%); RANKINGS (70%); PRESS CONFERENCES (68%)\n\nCompany: NETFLIX INC (55%)\n\nTicker: NFLX (NASDAQ) (55%)\n\nIndustry: NAICS532282 VIDEO TAPE & DISC RENTAL (55%); SIC7841 VIDEO TAPE RENTAL (55%); CELEBRITIES (76%); STREAMING MEDIA (66%)\n\nPerson: NAOMI OSAKA (94%)\n\nGeographic: AUSTRALIA (66%)\n\nLoad-Date: July 27, 2021\n\n\n
1070 \nSubject: COACHES & TRAINERS (90%); SMOKING (90%); APPOINTMENTS (78%); ATHLETES (78%); SPORTS AWARDS (78%); SPORTS INSTRUCTION (78%); SPORTS MARKETING (77%); SUICIDE (60%); KNEE DISORDERS & INJURIES (50%); WOUNDS & INJURIES (50%)\n\nIndustry: SPORTS MARKETING (77%)\n\nGeographic: BIHAR, INDIA (58%); INDIA (88%)\n\nLoad-Date: August 2, 2021\n\n\n
1071 \nSubject: TENNIS (91%); ATHLETES (90%); MEN'S SPORTS (76%); PROFESSIONAL SPORTS (76%); SPORTS & RECREATION EVENTS (76%); STUDENT EXPENSES & FINANCING (74%); TOURNAMENTS (69%)\n\nOrganization: UNIVERSITY OF VIRGINIA (56%)\n\nPerson: NOVAK DJOKOVIC (79%); RAFAEL NADAL (75%); ROGER FEDERER (75%)\n\nGeographic: INDIA (93%); UNITED STATES (90%); EUROPE (77%)\n\nLoad-Date: July 28, 2021\n\n\n
1072 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); GOVERNMENT ADVISORS & MINISTERS (79%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); INDIA (79%)\n\nLoad-Date: August 3, 2021\n\n\n
1073 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (88%); SPORTS FANS (86%)\n\nIndustry: FIREWORKS (90%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (78%); INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
1074 \nSubject: OLYMPICS (95%); CITIES (91%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); CITY LIFE (89%); CONTRACTS & BIDS (89%); CITY GOVERNMENT (78%); MULTINATIONAL CORPORATIONS (78%); PARALYMPICS (78%); PROFESSIONAL SPORTS (78%); SPORTS & RECREATION FACILITIES & VENUES (78%); SPORTS AWARDS (78%); SPORTS GOVERNING BODIES (78%); TENDER NOTICES (78%); TALKS & MEETINGS (76%); 2010 VANCOUVER WINTER OLYMPICS (73%); SOCCER (71%); PROJECT MANAGEMENT (70%); FIFA WORLD CUP (69%); SOCCER TOURNAMENTS (69%)\n\nCompany: ERNST & YOUNG GLOBAL LTD (90%); PRICEWATERHOUSECOOPERS (58%)\n\nIndustry: NAICS541613 MARKETING CONSULTING SERVICES (90%); NAICS541611 ADMINISTRATIVE MANAGEMENT & GENERAL MANAGEMENT CONSULTING SERVICES (90%); NAICS541211 OFFICES OF CERTIFIED PUBLIC ACCOUNTANTS (90%); SIC8721 ACCOUNTING, AUDITING, & BOOKKEEPING SERVICES (58%); CONSULTING SERVICES (90%); ELECTRONIC PUBLISHING (78%)\n\nGeographic: BEIJING, CHINA (79%); AHMEDABAD, GUJARAT, INDIA (73%); NORTH CENTRAL CHINA (79%); INDIA (93%); BRAZIL (79%)\n\nLoad-Date: July 23, 2021\n\n\n
1075 \nSubject: OLYMPICS (92%); BADMINTON (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (79%); ATHLETES (78%)\n\nLoad-Date: August 6, 2021\n\n\n
1076 \nSubject: OLYMPICS (94%); 2020 TOKYO SUMMER OLYMPICS (91%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); HEADS OF STATE & GOVERNMENT (73%); PRIME MINISTERS (54%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (93%)\n\nLoad-Date: August 7, 2021\n\n\n
1077 \nSubject: MEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); PRIME MINISTERS (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (94%); BELGIUM (88%)\n\nLoad-Date: August 3, 2021\n\n\n
1078 \nSubject: MEN'S SPORTS (93%); OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); SPORTS & RECREATION EVENTS (78%); SPORTS AWARDS (78%); SPORTS & RECREATION (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (90%); INDIA (92%); UNITED KINGDOM (90%); AUSTRALIA (79%); GERMANY (79%); PAKISTAN (59%); NEW ZEALAND (54%)\n\nLoad-Date: August 1, 2021\n\n\n
1079 \nSubject: OLYMPICS (91%); SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); OLYMPIC COMMITTEES (88%)\n\nIndustry: MEDIA CONTENT (88%)\n\nGeographic: TOKYO, JAPAN (88%); NEW DELHI, INDIA (74%)\n\nLoad-Date: July 22, 2021\n\n\n
1080 \nSubject: OLYMPICS (92%); BOXING (90%); SPORTS & RECREATION EVENTS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%)\n\nGeographic: CHINA (88%)\n\nLoad-Date: August 1, 2021\n\n\n
1081 \nSubject: OLYMPICS (93%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (88%)\n\nGeographic: INDIA (88%)\n\nLoad-Date: July 24, 2021\n\n\n
1082 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); MEN'S SPORTS (78%); 2016 RIO SUMMER OLYMPICS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (73%); JAPAN (58%); HONG KONG (55%); NETHERLANDS (53%)\n\nLoad-Date: July 28, 2021\n\n\n
1083 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); FIELD HOCKEY (90%); MEN'S SPORTS (90%); SUMMER OLYMPICS (90%); COACHES & TRAINERS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (88%); INDIA (92%); GERMANY (90%)\n\nLoad-Date: August 5, 2021\n\n\n
1084 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); 2016 RIO SUMMER OLYMPICS (90%); ATHLETES (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); WRESTLING (90%)\n\nGeographic: INDIA (90%); BELARUS (73%)\n\nLoad-Date: August 5, 2021\n\n\n
1085 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); FIELD HOCKEY (79%); MEN'S SPORTS (78%); PARALYMPICS (78%); STUDENT DEMOGRAPHICS (78%); COLLEGES & UNIVERSITIES (73%); WHEELCHAIR & DISABILITY SPORTS (73%)\n\nIndustry: MEDIA CONTENT (78%); COLLEGES & UNIVERSITIES (73%)\n\nGeographic: TOKYO, JAPAN (73%); INDIA (93%)\n\nLoad-Date: July 23, 2021\n\n\n
1086 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TENNIS TOURNAMENTS (90%); TENNIS (78%); TOURNAMENTS (78%); SPORTS & RECREATION EVENTS (73%)\n\nIndustry: CELEBRITIES (90%); MEDIA CONTENT (78%)\n\nPerson: NAOMI OSAKA (92%)\n\nGeographic: OSAKA, JAPAN (90%); TOKYO, JAPAN (88%); NEW DELHI, INDIA (74%); JAPAN (73%); UNITED STATES (70%); CZECH REPUBLIC (57%)\n\nLoad-Date: July 27, 2021\n\n\n
1087 \nSubject: MEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); PROFESSIONAL SPORTS (78%); TOURNAMENTS (78%); EMOTIONS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (93%); UNITED KINGDOM (56%); BELGIUM (54%)\n\nLoad-Date: August 1, 2021\n\n\n
1088 \nSubject: SPORTS AWARDS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%)\n\nIndustry: MEDIA CONTENT (88%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (90%)\n\nLoad-Date: August 5, 2021\n\n\n
1089 \nSubject: WOMEN'S SPORTS (92%); FIELD HOCKEY (90%); OLYMPICS (90%); PRIME MINISTERS (90%); 2016 RIO SUMMER OLYMPICS (77%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (90%); INDIA (94%); UNITED KINGDOM (78%)\n\nLoad-Date: August 6, 2021\n\n\n
1090 \nSubject: CELEBRITIES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TENNIS TOURNAMENTS (90%); WOMEN'S SPORTS (90%); TENNIS (78%); TOURNAMENTS (77%); SPORTS & RECREATION EVENTS (72%)\n\nIndustry: CELEBRITIES (90%)\n\nPerson: NAOMI OSAKA (93%)\n\nGeographic: OSAKA, JAPAN (90%); TOKYO, JAPAN (88%); CZECH REPUBLIC (73%); JAPAN (73%); UNITED STATES (70%)\n\nLoad-Date: July 27, 2021\n\n\n
1091 \nSubject: MEN (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); ABUSE & NEGLECT (78%); NEGATIVE PERSONAL NEWS (78%)\n\nGeographic: ARGENTINA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1092 \nSubject: OLYMPICS (90%); SPORTS AWARDS (78%); SPORTS OFFICIATING (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); ASSAM, INDIA (58%)\n\nLoad-Date: August 4, 2021\n\n\n
1093 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); GOLF (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (72%)\n\nPerson: LYDIA KO (92%)\n\nGeographic: TOKYO, JAPAN (73%); MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (91%); JAPAN (73%)\n\nLoad-Date: August 8, 2021\n\n\n
1094 \nSubject: WEIGHTLIFTING (93%); 2020 TOKYO SUMMER OLYMPICS (92%); OLYMPICS (92%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); EXERCISE & FITNESS (78%); SPORTS & RECREATION EVENTS (78%); ATHLETES (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (59%); INDIA (91%)\n\nLoad-Date: July 24, 2021\n\n\n
1095 \nSubject: TABLE TENNIS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (90%)\n\nLoad-Date: July 24, 2021\n\n\n
1096 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%)\n\nGeographic: INDIA (92%); AUSTRALIA (90%); NEW ZEALAND (57%)\n\nLoad-Date: July 26, 2021\n\n\n
1097 \nSubject: MEN'S SPORTS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); ATHLETES (78%); STADIUMS & ARENAS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (92%); ARGENTINA (90%); SPAIN (90%); AUSTRALIA (79%); NEW ZEALAND (73%)\n\nLoad-Date: July 27, 2021\n\n\n
1098 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (91%); ATHLETES (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (90%)\n\nGeographic: TOKYO, JAPAN (88%); MUMBAI, MAHARASHTRA, INDIA (58%); MANIPUR, INDIA (58%); INDIA (92%)\n\nLoad-Date: July 25, 2021\n\n\n
1099 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (78%)\n\nIndustry: FINE JEWELRY (78%)\n\nGeographic: INDIA (89%)\n\nLoad-Date: July 26, 2021\n\n\n
1100 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TABLE TENNIS (90%); MEN'S SPORTS (78%)\n\nGeographic: UKRAINE (52%)\n\nLoad-Date: July 26, 2021\n\n\n
1101 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); MARTIAL ARTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); CORONAVIRUSES (53%); VIRUSES (53%)\n\nGeographic: TOKYO, JAPAN (74%); MUMBAI, MAHARASHTRA, INDIA (58%); JAPAN (89%); INDIA (88%); KOSOVO (72%)\n\nLoad-Date: July 25, 2021\n\n\n
1102 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); TOURNAMENTS (75%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); UNITED KINGDOM (90%); NETHERLANDS (78%); GERMANY (73%)\n\nLoad-Date: July 28, 2021\n\n\n
1103 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BOXING (78%); PRIME MINISTERS (72%)\n\nCompany: BEST INC (52%)\n\nTicker: BEST (NYSE) (52%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (52%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (52%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 4, 2021\n\n\n
1104 \nSubject: MEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); STADIUMS & ARENAS (78%); SUMMER OLYMPICS (77%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (92%); JAPAN (72%)\n\nLoad-Date: July 31, 2021\n\n\n
1105 \nSubject: MEN'S SPORTS (90%); OLYMPICS (90%); SHOOTING SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEAPONS & ARMS (90%); BADMINTON (78%); BOXING (78%); TABLE TENNIS (73%)\n\nCompany: RADIAL INC (63%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (63%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (63%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (63%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (63%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (63%); SIC7389 BUSINESS SERVICES (63%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (92%)\n\nLoad-Date: July 27, 2021\n\n\n
1106 \nSubject: FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%)\n\nGeographic: TOKYO, JAPAN (72%); MUMBAI, MAHARASHTRA, INDIA (58%); AUSTRALIA (92%); INDIA (92%); GERMANY (72%)\n\nLoad-Date: August 2, 2021\n\n\n
1107 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BOXING (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2012 LONDON SUMMER OLYMPICS (77%); SPORTS & RECREATION EVENTS (77%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); TAIPEI, TAIWAN (56%); LONDON, ENGLAND (55%); INDIA (94%); TAIWAN (56%); GERMANY (54%)\n\nLoad-Date: August 4, 2021\n\n\n
1108 \nSubject: OLYMPICS (91%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (71%); ASSOCIATIONS & ORGANIZATIONS (70%)\n\nCompany: MAHINDRA & MAHINDRA LTD (58%)\n\nTicker: MHID (LSE) (58%); M&M (NSE) (58%)\n\nIndustry: NAICS336111 AUTOMOBILE MANUFACTURING (58%); NAICS333111 FARM MACHINERY & EQUIPMENT MANUFACTURING (58%); SIC3711 MOTOR VEHICLES & PASSENGER CAR BODIES (58%); AIRLINES (67%)\n\nGeographic: HARYANA, INDIA (73%); MANIPUR, INDIA (73%); PUNJAB, INDIA (73%); INDIA (91%)\n\nLoad-Date: August 9, 2021\n\n\n
1109 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CRICKET (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (90%); INDIA (91%)\n\nLoad-Date: August 1, 2021\n\n\n
1110 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); TOURNAMENTS (78%)\n\nGeographic: TAIPEI, TAIWAN (73%); TOKYO, JAPAN (73%); JAPAN (73%); THAILAND (54%)\n\nLoad-Date: July 31, 2021\n\n\n
1111 \nSubject: WOMEN'S SPORTS (93%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (90%); STADIUMS & ARENAS (78%); 2016 RIO SUMMER OLYMPICS (77%)\n\nGeographic: RIO DE JANEIRO, BRAZIL (52%); ARGENTINA (93%); BRAZIL (73%)\n\nLoad-Date: August 4, 2021\n\n\n
1112 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (78%)\n\nIndustry: FINE JEWELRY (78%)\n\nGeographic: KOLKATA, WEST BENGAL, INDIA (59%); INDIA (89%)\n\nLoad-Date: July 27, 2021\n\n\n
1113 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); CELEBRITIES (90%); SUMMER OLYMPICS (90%); TABLE TENNIS (90%); WOMEN'S SPORTS (90%); TENNIS (89%); MEN'S SPORTS (78%)\n\nCompany: METROPOLITAN BANK HOLDING CORP (56%)\n\nTicker: MCB (NYSE) (56%)\n\nIndustry: NAICS522110 COMMERCIAL BANKING (56%); SIC6029 COMMERCIAL BANKS, NEC (56%); CELEBRITIES (90%)\n\nGeographic: AUSTRIA (90%); INDIA (58%)\n\nLoad-Date: July 26, 2021\n\n\n
1114 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (78%)\n\nIndustry: FINE JEWELRY (78%)\n\nGeographic: AHMEDABAD, GUJARAT, INDIA (59%); INDIA (89%)\n\nLoad-Date: July 26, 2021\n\n\n
1115 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); SUMMER OLYMPICS (90%); 2016 RIO SUMMER OLYMPICS (78%); WOMEN'S SPORTS (78%)\n\nGeographic: TOKYO, JAPAN (57%); INDIA (78%); JAPAN (57%); HONG KONG (54%)\n\nLoad-Date: July 29, 2021\n\n\n
1116 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); MEN (78%); STADIUMS & ARENAS (78%); ATHLETES (73%)\n\nGeographic: TOKYO, JAPAN (73%); MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (92%); AUSTRALIA (90%); NEW ZEALAND (88%); JAPAN (58%)\n\nLoad-Date: July 25, 2021\n\n\n
1117 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); BADMINTON (90%); MEN'S SPORTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2016 RIO SUMMER OLYMPICS (78%); SPORTS & RECREATION EVENTS (78%); TOURNAMENTS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (57%); TAIPEI, TAIWAN (55%); INDIA (93%); JAPAN (57%); THAILAND (56%)\n\nLoad-Date: July 30, 2021\n\n\n
1118 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); STADIUMS & ARENAS (78%)\n\nGeographic: TOKYO, JAPAN (73%); MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (92%); AUSTRALIA (91%); NEW ZEALAND (90%); JAPAN (73%)\n\nLoad-Date: July 24, 2021\n\n\n
1119 \nSubject: ABUSE & NEGLECT (90%); FIELD HOCKEY (90%); MEN (90%); MEN'S SPORTS (90%); NEGATIVE NEWS (90%); NEGATIVE PERSONAL NEWS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUBSTANCE ABUSE (90%); WOMEN'S SPORTS (90%); CRIME, LAW ENFORCEMENT & CORRECTIONS (74%); SOCIAL MEDIA (71%)\n\nIndustry: SOCIAL MEDIA (71%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); INDIA (94%); ARGENTINA (79%)\n\nLoad-Date: August 5, 2021\n\n\n
1120 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); TABLE TENNIS (90%)\n\nGeographic: TOKYO, JAPAN (88%)\n\nLoad-Date: July 28, 2021\n\n\n
1121 \nSubject: MEN'S SPORTS (90%); OLYMPICS (90%); TABLE TENNIS (90%); ATHLETES (78%); SUMMER OLYMPICS (78%)\n\nGeographic: INDIA (92%)\n\nLoad-Date: July 27, 2021\n\n\n
1122 \nSubject: OLYMPICS (91%); SPORTS & RECREATION (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BADMINTON (89%); CULTURE DEPARTMENTS (78%); MEN'S SPORTS (78%); TENNIS (78%); TENNIS TOURNAMENTS (78%); WOMEN'S SPORTS (78%); COACHES & TRAINERS (73%); EXERCISE & FITNESS (72%); GOLF (70%); COVID CORONAVIRUS (69%); COVID-19 CORONAVIRUS (69%); WEIGHTLIFTING (57%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (73%); KARNATAKA, INDIA (91%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
1123 \nSubject: BOXING (90%); MEN'S SPORTS (90%); SHOOTING SPORTS (90%); WOMEN'S SPORTS (90%); BADMINTON (89%); EQUESTRIAN SPORTS (89%); WEAPONS & ARMS (89%); ARCHERY (78%); SUMMER OLYMPICS (78%)\n\nCompany: RADIAL INC (66%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (66%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (66%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (66%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (66%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (66%); SIC7389 BUSINESS SERVICES (66%)\n\nGeographic: TOKYO, JAPAN (58%); JAPAN (58%)\n\nLoad-Date: July 30, 2021\n\n\n
1124 \nSubject: WINTER OLYMPICS (91%); FIELD HOCKEY (90%); OLYMPICS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%)\n\nPerson: SHAH RUKH KHAN (79%)\n\nGeographic: TOKYO, JAPAN (72%)\n\nLoad-Date: August 2, 2021\n\n\n
1125 \nSubject: ARCHERY (90%); FENCING (90%); MEN'S SPORTS (90%); SHOOTING SPORTS (90%); TABLE TENNIS (90%); WOMEN'S SPORTS (90%); TENNIS (89%); BADMINTON (78%); BOXING (78%); SUMMER OLYMPICS (78%); SWIMMING (70%)\n\nCompany: RADIAL INC (91%)\n\nIndustry: NAICS561499 ALL OTHER BUSINESS SUPPORT SERVICES (91%); NAICS561422 TELEMARKETING BUREAUS & OTHER CONTACT CENTERS (91%); NAICS541511 CUSTOM COMPUTER PROGRAMMING SERVICES (91%); NAICS518210 DATA PROCESSING, HOSTING & RELATED SERVICES (91%); NAICS454110 ELECTRONIC SHOPPING AND MAIL-ORDER HOUSES (91%); SIC7389 BUSINESS SERVICES (91%)\n\nGeographic: GERMANY (79%)\n\nLoad-Date: July 26, 2021\n\n\n
1126 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); APPOINTMENTS (88%); SPORTS & RECREATION EVENTS (78%); WRESTLING (78%)\n\nGeographic: HARYANA, INDIA (90%); INDIA (74%)\n\nLoad-Date: August 6, 2021\n\n\n
1127 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (77%)\n\nLoad-Date: August 6, 2021\n\n\n
1128 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); POOL & BILLIARDS (90%)\n\nGeographic: TOKYO, JAPAN (73%); ARGENTINA (91%); INDIA (91%); AUSTRALIA (78%); NEW ZEALAND (72%); JAPAN (58%); SOUTH AMERICA (58%)\n\nLoad-Date: July 29, 2021\n\n\n
1129 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SPORTS INJURIES (90%); SPORTS MEDICINE (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (90%); MEDICAL RESEARCH (88%); MEDICAL SCIENCE (72%); MEDICINE & HEALTH (72%); WEIGHTLIFTING (72%)\n\nIndustry: SPORTS MEDICINE (90%); MEDIA CONTENT (78%)\n\nGeographic: MANIPUR, INDIA (90%); INDIA (90%)\n\nLoad-Date: August 3, 2021\n\n\n
1130 \nSubject: ATHLETES (90%); OLYMPICS (90%); WRESTLING (90%); SUMMER OLYMPICS (78%); SPORTS AWARDS (77%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (89%); AZERBAIJAN (88%); KYRGYZSTAN (71%); KAZAKHSTAN (70%); IRAN, ISLAMIC REPUBLIC OF (56%)\n\nLoad-Date: August 6, 2021\n\n\n
1131 \nSubject: TOURNAMENTS (91%); WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); ATHLETES (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (72%); AUSTRALIA (90%); INDIA (90%); GERMANY (79%); ARGENTINA (77%)\n\nLoad-Date: August 2, 2021\n\n\n
1132 \nSubject: MEN'S SPORTS (93%); OLYMPICS (91%); SPORTS AWARDS (91%); FIELD HOCKEY (90%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (77%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MADHYA PRADESH, INDIA (74%); INDIA (95%); GERMANY (79%)\n\nLoad-Date: August 5, 2021\n\n\n
1133 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); STADIUMS & ARENAS (78%)\n\nGeographic: TOKYO, JAPAN (72%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); AUSTRALIA (91%); SPAIN (90%); NEW ZEALAND (78%); AUSTRALIA & NEW ZEALAND (57%)\n\nLoad-Date: July 27, 2021\n\n\n
1134 \nSubject: BADMINTON (90%); MEN'S SPORTS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SUMMER OLYMPICS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); TAIPEI, TAIWAN (57%); INDIA (90%)\n\nLoad-Date: July 31, 2021\n\n\n
1135 \nSubject: ARCHERY (91%); MEN'S SPORTS (90%); SUMMER OLYMPICS (77%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (95%); KOREA, REPUBLIC OF (88%)\n\nLoad-Date: July 26, 2021\n\n\n
1136 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); GOVERNMENT & PUBLIC ADMINISTRATION (90%); GOVERNMENT ADVISORS & MINISTERS (90%); REGIONAL & LOCAL GOVERNMENTS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (77%); SPORTS & RECREATION (76%)\n\nGeographic: BANGALORE, KARNATAKA, INDIA (59%); INDIA (79%)\n\nLoad-Date: August 9, 2021\n\n\n
1137 \nSubject: WOMEN'S SPORTS (93%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); GOLF (68%)\n\nGeographic: TOKYO, JAPAN (72%); MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (91%)\n\nLoad-Date: August 8, 2021\n\n\n
1138 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); WRESTLING (90%); GOVERNMENT ADVISORS & MINISTERS (79%); SPORTS & RECREATION EVENTS (78%); SPORTS & RECREATION (77%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); INDIA (92%)\n\nLoad-Date: August 8, 2021\n\n\n
1139 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION EVENTS (88%)\n\nGeographic: LONDON, ENGLAND (90%); TOKYO, JAPAN (73%); HARYANA, INDIA (90%); CHANDIGARH, INDIA (59%); UNITED KINGDOM (90%)\n\nLoad-Date: August 9, 2021\n\n\n
1140 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); BADMINTON (78%); GOVERNMENT ADVISORS & MINISTERS (78%); 2016 RIO SUMMER OLYMPICS (77%); SPORTS REGULATION & POLICY (77%); 2012 LONDON SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (90%); BEIJING, CHINA (79%); LONDON, ENGLAND (71%); ANDHRA PRADESH, INDIA (90%); NORTH CENTRAL CHINA (79%); INDIA (92%)\n\nLoad-Date: August 2, 2021\n\n\n
1141 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WEIGHTLIFTING (78%)\n\nGeographic: CHENNAI, TAMIL NADU, INDIA (59%); INDIA (94%)\n\nLoad-Date: July 25, 2021\n\n\n
1142 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); GOVERNMENT ADVISORS & MINISTERS (90%); GOVERNORS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); TRACK & FIELD (90%); SPORTS & RECREATION EVENTS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: JHARKHAND, INDIA (90%); INDIA (91%)\n\nLoad-Date: August 7, 2021\n\n\n
1143 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); WOMEN'S SPORTS (88%)\n\nGeographic: TOKYO, JAPAN (57%)\n\nLoad-Date: August 8, 2021\n\n\n
1144 \nSubject: FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); OLYMPICS (88%); 2020 TOKYO SUMMER OLYMPICS (72%)\n\nIndustry: MEDIA CONTENT (88%)\n\nGeographic: UTTARAKHAND, INDIA (89%); INDIA (91%)\n\nLoad-Date: August 7, 2021\n\n\n
1145 \nSubject: OLYMPICS (91%); WOMEN'S SPORTS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); MEN'S SPORTS (78%); SPORTS & RECREATION (78%); SPORTS AWARDS (78%); WOMEN (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); UNITED KINGDOM (91%); GERMANY (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1146 \nSubject: ATHLETES (90%); OLYMPICS (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); WRESTLING (90%); APPOINTMENTS (88%); 2020 TOKYO SUMMER OLYMPICS (78%); GOVERNMENT ADVISORS & MINISTERS (78%); SUMMER OLYMPICS (78%); GOVERNMENT & PUBLIC ADMINISTRATION (73%); REGIONAL & LOCAL GOVERNMENTS (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: TOKYO, JAPAN (57%); CHANDIGARH, INDIA (92%); HARYANA, INDIA (92%)\n\nLoad-Date: August 5, 2021\n\n\n
1147 \nSubject: WOMEN'S SPORTS (92%); OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); TOURNAMENTS (78%)\n\nIndustry: MEDIA CONTENT (78%); PUBLISHING (78%)\n\nGeographic: INDIA (91%); AUSTRALIA (79%)\n\nLoad-Date: August 3, 2021\n\n\n
1148 \nSubject: WOMEN'S SPORTS (96%); FIELD HOCKEY (90%); OLYMPICS (90%); WOMEN (90%); ATHLETES (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (72%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MADHYA PRADESH, INDIA (74%); INDIA (94%)\n\nLoad-Date: August 2, 2021\n\n\n
1149 \nSubject: MEN'S SPORTS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); SPORTS & RECREATION (78%); WOMEN'S SPORTS (78%); SUMMER OLYMPICS (77%); WOMEN (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nPerson: RAM NATH KOVIND (79%)\n\nGeographic: TOKYO, JAPAN (91%); INDIA (94%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
1150 \nSubject: PRIME MINISTERS (91%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); MEN'S SPORTS (78%); WOMEN'S SPORTS (78%); SPORTS AWARDS (77%); 2020 TOKYO SUMMER OLYMPICS (76%); SOCIAL MEDIA (71%); SUMMER OLYMPICS (71%)\n\nIndustry: SOCIAL MEDIA (71%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
1151 \nSubject: WEIGHTLIFTING (91%); OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (78%); BOXING (73%); EMOTIONS (72%)\n\nGeographic: BEIJING, CHINA (78%); LONDON, ENGLAND (52%); NORTH CENTRAL CHINA (78%)\n\nLoad-Date: July 25, 2021\n\n\n
1152 \nSubject: PHYSICAL THERAPY (93%); 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); SPORTS & RECREATION EVENTS (90%); SUMMER OLYMPICS (90%); WRESTLING (90%); SPORTS AWARDS (78%); WOMEN'S SPORTS (78%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: INDIA (93%)\n\nLoad-Date: July 23, 2021\n\n\n
1153 \nSubject: ARCHERY (90%); OLYMPICS (90%); SPORTS AWARDS (90%); SUMMER OLYMPICS (90%); SPORTS & RECREATION (78%); SPORTS & RECREATION EVENTS (78%); 2012 LONDON SUMMER OLYMPICS (73%); RANKINGS (71%)\n\nGeographic: BARCELONA, SPAIN (58%); LONDON, ENGLAND (56%); TAIPEI, TAIWAN (55%)\n\nLoad-Date: July 23, 2021\n\n\n
1154 \nSubject: OLYMPICS (92%); 2020 TOKYO SUMMER OLYMPICS (90%); SUMMER OLYMPICS (90%); SPORTS AWARDS (88%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); ANDHRA PRADESH, INDIA (74%); INDIA (93%)\n\nLoad-Date: August 6, 2021\n\n\n
1155 \nSubject: OLYMPICS (90%); SPORTS AWARDS (90%); 2016 RIO SUMMER OLYMPICS (88%); 2020 TOKYO SUMMER OLYMPICS (88%)\n\nIndustry: AIRPORTS (54%)\n\nGeographic: HYDERABAD, ANDHRA PRADESH, INDIA (59%); MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (56%); TELANGANA, INDIA (74%); INDIA (92%)\n\nLoad-Date: August 5, 2021\n\n\n
1156 \nSubject: BADMINTON (90%); SPORTS AWARDS (88%); SPORTS GOVERNING BODIES (88%)\n\nGeographic: ANDHRA PRADESH, INDIA (79%); INDIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
1157 \nSubject: OLYMPICS (90%); SPORTS AWARDS (88%)\n\nIndustry: MEDIA CONTENT (88%)\n\nLoad-Date: August 4, 2021\n\n\n
1158 \nSubject: BOXING (90%); OLYMPICS (90%); 2020 TOKYO SUMMER OLYMPICS (78%); SPORTS AWARDS (78%)\n\nGeographic: ASSAM, INDIA (58%); INDIA (89%)\n\nLoad-Date: August 9, 2021\n\n\n
1159 \nSubject: NEGATIVE PERSONAL NEWS (91%); ARRESTS (90%); CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); WOMEN'S SPORTS (90%); POLICE FORCES (74%)\n\nGeographic: UTTARAKHAND, INDIA (89%); ARGENTINA (79%); INDIA (73%)\n\nLoad-Date: August 6, 2021\n\n\n
1160 \nSubject: SPORTS AWARDS (90%); OLYMPICS (88%); SPORTS & RECREATION EVENTS (88%); WEAPONS & ARMS (88%); ARMED FORCES (73%)\n\nIndustry: ARMED FORCES (73%)\n\nLoad-Date: August 9, 2021\n\n\n
1161 \nSubject: SPORTS AWARDS (90%); OLYMPICS (88%); SPORTS & RECREATION EVENTS (88%); WEAPONS & ARMS (88%); ARMED FORCES (73%)\n\nIndustry: ARMED FORCES (73%)\n\nLoad-Date: August 9, 2021\n\n\n
1162 \nSubject: BADMINTON (90%); OLYMPICS (90%); WOMEN'S SPORTS (90%); SUMMER OLYMPICS (88%)\n\nIndustry: MEDIA CONTENT (88%)\n\nGeographic: NEW DELHI, INDIA (74%); TOKYO, JAPAN (57%); JAPAN (88%)\n\nLoad-Date: July 30, 2021\n\n\n
1163 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); OLYMPICS (88%)\n\nGeographic: NETHERLANDS (90%)\n\nLoad-Date: July 25, 2021\n\n\n
1164 \nSubject: ATHLETES (90%); FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); OLYMPICS (88%)\n\nGeographic: NETHERLANDS (90%)\n\nLoad-Date: July 25, 2021\n\n\n
1165 \nSubject: SIKHS & SIKHISM (91%); MEN'S SPORTS (74%); WOMEN'S SPORTS (74%); TALIBAN (72%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: PUNJAB, INDIA (74%); INDIA (93%); AFGHANISTAN (88%); PAKISTAN (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1166 \nSubject: APPOINTMENTS (90%); EXECUTIVE MOVES (90%); GOVERNMENT ADVISORS & MINISTERS (90%); OLYMPICS (90%); SPORTS AWARDS (90%); GOVERNMENT & PUBLIC ADMINISTRATION (88%); WEIGHTLIFTING (88%); REGIONAL & LOCAL GOVERNMENTS (69%)\n\nGeographic: MANIPUR, INDIA (92%); INDIA (79%)\n\nLoad-Date: July 26, 2021\n\n\n
1167 \nSubject: ARRESTS (92%); NEGATIVE PERSONAL NEWS (92%); CRIME, LAW ENFORCEMENT & CORRECTIONS (90%); FIELD HOCKEY (90%); WOMEN'S SPORTS (90%); POLICE FORCES (73%)\n\nGeographic: ARGENTINA (92%); INDIA (79%)\n\nLoad-Date: August 7, 2021\n\n\n
1168 \nSubject: MEN'S SPORTS (92%); PRIME MINISTERS (92%); ATHLETES (90%); COACHES & TRAINERS (90%); FIELD HOCKEY (90%); HEADS OF STATE & GOVERNMENT (90%); OLYMPICS (90%); SPORTS AWARDS (78%); 2020 TOKYO SUMMER OLYMPICS (77%); SUMMER OLYMPICS (72%)\n\nPerson: NARENDRA MODI (92%)\n\nGeographic: INDIA (92%); GERMANY (79%); BELGIUM (56%)\n\nLoad-Date: August 5, 2021\n\n\n
1169 \nSubject: MEN (90%); WOMEN'S SPORTS (90%); ABUSE & NEGLECT (78%); NEGATIVE PERSONAL NEWS (77%)\n\nGeographic: INDIA (94%); ARGENTINA (79%)\n\nLoad-Date: August 6, 2021\n\n\n
1170 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); FIELD HOCKEY (90%); OLYMPICS (90%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); NEGATIVE NEWS (77%); SICK LEAVE (71%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 9, 2021\n\n\n
1171 \nSubject: BOXING (90%); TRANSPORTATION DEPARTMENTS (90%); OLYMPICS (77%); SUMMER OLYMPICS (73%); WOMEN'S SPORTS (72%); MONSOONS (71%)\n\nIndustry: TRANSPORTATION DEPARTMENTS (90%)\n\nGeographic: ASSAM, INDIA (92%); INDIA (79%)\n\nLoad-Date: August 2, 2021\n\n\n
1172 \nSubject: 2020 TOKYO SUMMER OLYMPICS (90%); OLYMPICS (90%); MONSOONS (78%); SPORTS AWARDS (78%); SUMMER OLYMPICS (78%); BOXING (73%)\n\nGeographic: ASSAM, INDIA (91%)\n\nLoad-Date: August 1, 2021\n\n\n
1173 \nSubject: OLYMPICS (76%); SPORTS AWARDS (76%); WEIGHTLIFTING (71%)\n\nGeographic: MANIPUR, INDIA (73%); INDIA (91%)\n\nLoad-Date: July 27, 2021\n\n\n
1174 \nSubject: WRESTLING (91%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); OLYMPICS (78%); SUMMER OLYMPICS (73%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); INDIA (90%); HUNGARY (72%)\n\nLoad-Date: July 25, 2021\n\n\n
1175 \nSubject: HEADS OF STATE & GOVERNMENT (90%); PRIME MINISTERS (90%); WOMEN'S SPORTS (90%); OLYMPICS (77%)\n\nPerson: NARENDRA MODI (79%)\n\nGeographic: NEW DELHI, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 6, 2021\n\n\n
1176 \nSubject: GOLF (90%); OLYMPICS (90%); SPORTS AWARDS (90%); WOMEN'S SPORTS (90%); FIELD HOCKEY (79%); 2016 RIO SUMMER OLYMPICS (78%); 2020 TOKYO SUMMER OLYMPICS (78%)\n\nCompany: ADAMS GOLF INC (58%)\n\nIndustry: NAICS339920 SPORTING & ATHLETIC GOODS MANUFACTURING (58%); SIC3949 SPORTING & ATHLETIC GOODS, NEC (58%)\n\nPerson: LYDIA KO (73%)\n\nGeographic: INDIA (95%); NEW ZEALAND (69%); UNITED STATES (55%)\n\nLoad-Date: August 7, 2021\n\n\n
1177 \nSubject: SPORTS AWARDS (90%); FIELD HOCKEY (79%); GOVERNMENT & PUBLIC ADMINISTRATION (78%); GOVERNMENT ADVISORS & MINISTERS (78%); OLYMPICS (78%); REGIONAL & LOCAL GOVERNMENTS (78%); SPORTS & RECREATION FACILITIES & VENUES (73%); SUMMER OLYMPICS (72%)\n\nGeographic: HARYANA, INDIA (96%)\n\nLoad-Date: August 8, 2021\n\n\n
1178 \nSubject: ATHLETES (91%); WOMEN (91%); OLYMPICS (90%); WOMEN'S SPORTS (90%); BADMINTON (78%); SUMMER OLYMPICS (78%); WEIGHTLIFTING (78%); EXECUTIVES (77%); UNITED NATIONS (54%)\n\nCompany: GOOGLE LLC (52%)\n\nIndustry: NAICS519130 INTERNET PUBLISHING & BROADCASTING & WEB SEARCH PORTALS (52%)\n\nGeographic: INDIA (79%)\n\nLoad-Date: August 3, 2021\n\n\n
1179 \nSubject: ENVIRONMENTALISM (90%); SPORTS AWARDS (90%); WINTER OLYMPICS (88%); DISEASES & DISORDERS (87%); DIABETES (54%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); INDIA (90%)\n\nLoad-Date: August 6, 2021\n\n\n
1180 \nSubject: SPORTS AWARDS (91%); OLYMPICS (90%); PRIME MINISTERS (72%)\n\nIndustry: MEDIA CONTENT (88%)\n\nPerson: NARENDRA MODI (78%)\n\nGeographic: NEW DELHI, INDIA (89%)\n\nLoad-Date: August 7, 2021\n\n\n
1181 \nSubject: FIELD HOCKEY (90%); MEN'S SPORTS (90%); OLYMPICS (90%); POOL & BILLIARDS (90%); SPORTS & RECREATION EVENTS (90%); WINTER OLYMPICS (90%)\n\nIndustry: MEDIA CONTENT (78%)\n\nGeographic: NEW DELHI, INDIA (74%); ARGENTINA (91%); INDIA (91%); AUSTRALIA (78%); NEW ZEALAND (54%)\n\nLoad-Date: July 28, 2021\n\n\n
1182 \nSubject: OLYMPICS (91%); ATHLETES (90%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); MEN'S SPORTS (78%); SPORTS & RECREATION EVENTS (78%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); MADHYA PRADESH, INDIA (93%); INDIA (93%); GERMANY (92%)\n\nLoad-Date: August 5, 2021\n\n\n
1183 \nSubject: OLYMPICS (91%); 2020 TOKYO SUMMER OLYMPICS (90%); ATHLETES (90%); SPORTS AWARDS (90%); SPORTS FANS (90%); SUMMER OLYMPICS (90%); CALENDARS (86%); SPORTS & RECREATION EVENTS (78%)\n\nCompany: BEST INC (54%)\n\nTicker: BEST (NYSE) (54%)\n\nIndustry: NAICS453998 ALL OTHER MISCELLANEOUS STORE RETAILERS (EXCEPT TOBACCO STORES) (54%); SIC5999 MISCELLANEOUS RETAIL STORES, NEC (54%)\n\nLoad-Date: July 30, 2021\n\n\n
1184 \nSubject: CHILDREN, ADOLESCENTS & TEENS (90%); FIELD HOCKEY (90%); NEGATIVE PERSONAL NEWS (90%); WOMEN (90%); CHILD DEVELOPMENT (78%); SPORTS & RECREATION EVENTS (78%); WOMEN'S SPORTS (78%); EDUCATION DEPARTMENTS (71%); GOVERNMENT & PUBLIC ADMINISTRATION (71%); GOVERNMENT ADVISORS & MINISTERS (71%); REGIONAL & LOCAL GOVERNMENTS (71%); ARRESTS (68%)\n\nGeographic: UTTARAKHAND, INDIA (79%); INDIA (94%)\n\nLoad-Date: August 9, 2021\n\n\n
1185 \nSubject: WOMEN'S SPORTS (90%); FIELD HOCKEY (88%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
1186 \nSubject: WOMEN'S SPORTS (93%); FIELD HOCKEY (90%); SOCIAL MEDIA (72%)\n\nIndustry: MANUFACTURING (78%); SOCIAL MEDIA (72%); JEWELRY & SILVERWARE MFG (53%)\n\nGeographic: INDIA (90%)\n\nLoad-Date: August 8, 2021\n\n\n
1187 \nSubject: MEN'S SPORTS (92%); FIELD HOCKEY (90%); SPORTS AWARDS (90%); STADIUMS & ARENAS (90%); OLYMPICS (78%); EMOTIONS (77%); ATHLETES (73%)\n\nGeographic: GERMANY (90%)\n\nLoad-Date: August 5, 2021\n\n\n
1188 \nSubject: CRICKET (88%); OLYMPICS (88%); SPORTS AWARDS (87%)\n\nGeographic: NEW DELHI, INDIA (59%); MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (54%); INDIA (91%)\n\nLoad-Date: July 25, 2021\n\n\n
1189 \nSubject: EQUESTRIAN SPORTS (92%); ATHLETES (90%); 2020 TOKYO SUMMER OLYMPICS (78%); HORSES (78%); OLYMPICS (76%); SPORTS AWARDS (75%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (59%); JAKARTA, INDONESIA (55%); INDIA (94%); INDONESIA (55%)\n\nLoad-Date: August 2, 2021\n\n\n
1190 \nSubject: ATHLETES (90%); MENTORS & ROLE MODELS (90%); SPORTS & RECREATION EVENTS (90%); SPORTS AWARDS (90%); OLYMPICS (78%); EXERCISE & FITNESS (71%); WEIGHTLIFTING (71%)\n\nGeographic: TOKYO, JAPAN (73%); MANIPUR, INDIA (88%); INDIA (90%); ASIA (58%)\n\nLoad-Date: July 25, 2021\n\n\n
1191 \nSubject: OLYMPICS (78%); SPORTS AWARDS (78%); BACK DISORDERS & INJURIES (71%); WOUNDS & INJURIES (52%)\n\nGeographic: MUMBAI, MAHARASHTRA, INDIA (58%); TOKYO, JAPAN (56%); MANIPUR, INDIA (73%); INDIA (73%)\n\nLoad-Date: July 25, 2021\n\n\n
Creating tokens
newspaper_tokens <- tokens(newspaper_corpus)
print(newspaper_tokens)Tokens consisting of 1,191 documents and 2 docvars.
text1 :
[1] "Body" "Mumbai" "," "Aug" "." "9"
[7] "-" "From" "a" "solitary" "two-day" "fixture"
[ ... and 574 more ]
text2 :
[1] "Body" "India" "," "Aug" "." "2"
[7] "-" "Tokyo" "Olympics" "Day" "10" "Full"
[ ... and 252 more ]
text3 :
[1] "Body" "After" "the" "best-ever"
[5] "performance" "at" "the" "just-concluded"
[9] "Tokyo" "Olympics" "," "India"
[ ... and 899 more ]
text4 :
[1] "Body" "New" "Delhi" "," "July" "28"
[7] "-" "The" "Tokyo" "Olympics" "2020" "enters"
[ ... and 337 more ]
text5 :
[1] "Body" "India" "," "Aug" "." "8" "-" "After"
[9] "Neeraj" "Chopra" "became" "the"
[ ... and 412 more ]
text6 :
[1] "Body" "If" "you're" "wondering" "who" "are"
[7] "these" "ROC" "athletes" "winning" "so" "many"
[ ... and 455 more ]
[ reached max_ndoc ... 1,185 more documents ]
sprintf(as.character(newspaper_tokens[1])) [1] "Body" "Mumbai" ","
[4] "Aug" "." "9"
[7] "-" "From" "a"
[10] "solitary" "two-day" "fixture"
[13] "between" "Great" "Britain"
[16] "and" "France" "in"
[19] "the" "1900" "Olympics"
[22] "," "prospects" "of"
[25] "cricket's" "inclusion" "as"
[28] "an" "8-team" "medal"
[31] "sport" "for" "men"
[34] "and" "women" "in"
[37] "Los" "Angeles" "2028"
[40] "have" "brightened" "."
[43] "The" "International" "Cricket"
[46] "Council" "(" "ICC"
[49] ")" "'" "s"
[52] "proposal" "to" "introduce"
[55] "cricket" "as" "an"
[58] "Olympic" "sport" "in"
[61] "2028" "has" "been"
[64] "placed" "before" "the"
[67] "International" "Olympic" "Committee"
[70] "(" "IOC" ")"
[73] "." "Importantly" ","
[76] "the" "Board" "of"
[79] "Control" "for" "Cricket"
[82] "in" "India" "("
[85] "BCCI" ")" "'"
[88] "s" "reluctance" "to"
[91] "join" "the" "Olympic"
[94] "movement" "is" "now"
[97] "a" "thing" "of"
[100] "the" "past" "."
[103] "\"" "Once" "cricket"
[106] "is" "added" "in"
[109] "the" "Olympics" ","
[112] "India" "will" "be"
[115] "participating" "," "\""
[118] "BCCI" "secretary" "Jay"
[121] "Shah" "said" "."
[124] "\"" "The" "BCCI"
[127] "and" "the" "ICC"
[130] "are" "on" "the"
[133] "same" "page" "as"
[136] "far" "as" "participation"
[139] "in" "the" "Olympics"
[142] "is" "concerned" "."
[145] "\"" "The" "BCCI"
[148] "in" "its" "Apex"
[151] "Council" "meeting" "in"
[154] "April" "had" "given"
[157] "a" "conditional" "nod"
[160] "to" "send" "a"
[163] "team" "for" "the"
[166] "2028" "edition" "if"
[169] "its" "autonomy" "wasn't"
[172] "disturbed" "and" "there"
[175] "was" "no" "interference"
[178] "from" "the" "Indian"
[181] "Olympic" "Association" "("
[184] "IOA" ")" "."
[187] "The" "BCCI" ","
[190] "IOA" "and" "government"
[193] "though" "are" "working"
[196] "in" "sync" "."
[199] "The" "Indian" "cricket"
[202] "board" "pledged" "Rs"
[205] "." "10" "crore"
[208] "to" "assist" "the"
[211] "Tokyo" "bound" "Indian"
[214] "contingent's" "marketing" "budget"
[217] "." "They" "also"
[220] "announced" "a" "cash"
[223] "prize" "totalling" "Rs"
[226] "." "4" "crore"
[229] "for" "the" "seven"
[232] "medal" "winners" "on"
[235] "Saturday" "." "The"
[238] "ICC" "," "which"
[241] "has" "92" "Associate"
[244] "members" "but" "only"
[247] "12" "members" "play"
[250] "Test" "cricket" ","
[253] "has" "been" "slow"
[256] "on" "the" "Olympics"
[259] "issue" "." "Many"
[262] "of" "the" "top"
[265] "Test" "nations" "have"
[268] "in" "the" "past"
[271] "have" "had" "an"
[274] "insular" "view" "of"
[277] "safeguarding" "their" "playing"
[280] "window" "and" "TV"
[283] "rights" "revenue" "and"
[286] "resisting" "cricket's" "entry"
[289] "into" "Olympics" "."
[292] "Now" "," "with"
[295] "an" "agreement" "amongst"
[298] "most" "leading" "cricket"
[301] "boards" "," "it"
[304] "has" "been" "in"
[307] "constant" "talks" "with"
[310] "IOC" "and" "an"
[313] "Olympics" "committee" "formed"
[316] "for" "the" "purpose"
[319] "." "With" "a"
[322] "nudge" "from" "the"
[325] "government" "to" "increase"
[328] "India's" "medal" "prospects"
[331] "," "BCCI" "administration"
[334] "has" "also" "switched"
[337] "its" "stance" "."
[340] "\"" "The" "BCCI"
[343] "is" "more" "than"
[346] "happy" "to" "work"
[349] "together" "with" "the"
[352] "government" "and" "help"
[355] "increase" "India's" "medal"
[358] "chances" "," "\""
[361] "a" "BCCI" "official"
[364] "said" "." "Cricket"
[367] "has" "been" "added"
[370] "as" "a" "discipline"
[373] "in" "the" "2022"
[376] "Commonwealth" "Games" "("
[379] "Birmingham" "," "July-Aug"
[382] ")" "." "There's"
[385] "cricket" "in" "the"
[388] "2022" "Asian" "Games"
[391] "(" "Hangzhou" ","
[394] "September" ")" "too"
[397] "." "With" "the"
[400] "cricket" "calendar" "congested"
[403] "with" "ICC" "events"
[406] "," "bilateral" "cricket"
[409] "and" "franchise" "leagues"
[412] "," "finding" "a"
[415] "window" "for" "each"
[418] "of" "these" "games"
[421] "consistently" "may" "become"
[424] "a" "challenge" "."
[427] "That" "is" "why"
[430] "," "the" "Commonwealth"
[433] "Games" "will" "only"
[436] "have" "women's" "cricket"
[439] "." "The" "Olympics"
[442] "," "it" "is"
[445] "learnt" "," "will"
[448] "require" "the" "participation"
[451] "of" "men" "and"
[454] "women" "." "T20"
[457] "has" "emerged" "as"
[460] "the" "format" "of"
[463] "choice" "despite" "some"
[466] "Associate" "nations" "championing"
[469] "for" "introducing" "T10"
[472] "." "The" "English"
[475] "cricket" "board" "has"
[478] "explored" "the" "prospects"
[481] "of" "taking" "the"
[484] "Hundred-ball" "format" "to"
[487] "the" "Olympics" ","
[490] "riding" "on" "its"
[493] "newly" "launched" "league"
[496] "." "With" "neither"
[499] "format" "having" "international"
[502] "status" "," "ICC"
[505] "is" "expected" "to"
[508] "start" "with" "T20Is"
[511] "." "While" "introduction"
[514] "of" "a" "new"
[517] "sport" "at" "Olympics"
[520] "involves" "structured" "presentations"
[523] "and" "lobbying" ","
[526] "those" "in" "cricket"
[529] "are" "confident" "that"
[532] "India's" "rapidly" "growing"
[535] "consumer" "market" "and"
[538] "digital" "engagement" "base"
[541] "will" "marry" "IOC's"
[544] "search" "for" "new"
[547] "Olympic" "markets" "."
[550] "Published" "by" "HT"
[553] "Digital" "Content" "Services"
[556] "with" "permission" "from"
[559] "Hindustan" "Times" "."
[562] "For" "any" "query"
[565] "with" "respect" "to"
[568] "this" "article" "or"
[571] "any" "other" "content"
[574] "requirement" "," "please"
[577] "contact" "Editor" "at"
[580] "Classification" "Language" ":"
[583] "ENGLISH" "Publication-Type" ":"
[586] "Newswire"
Removing punctuation
newspaper_tokens <- tokens(newspaper_tokens ,
remove_punct = T)
print(newspaper_tokens)Tokens consisting of 1,191 documents and 2 docvars.
text1 :
[1] "Body" "Mumbai" "Aug" "9" "From" "a"
[7] "solitary" "two-day" "fixture" "between" "Great" "Britain"
[ ... and 501 more ]
text2 :
[1] "Body" "India" "Aug" "2" "Tokyo"
[6] "Olympics" "Day" "10" "Full" "Schedule"
[11] "Kamalpreet" "Kaur"
[ ... and 208 more ]
text3 :
[1] "Body" "After" "the" "best-ever"
[5] "performance" "at" "the" "just-concluded"
[9] "Tokyo" "Olympics" "India" "shall"
[ ... and 783 more ]
text4 :
[1] "Body" "New" "Delhi" "July" "28" "The"
[7] "Tokyo" "Olympics" "2020" "enters" "the" "fifth"
[ ... and 293 more ]
text5 :
[1] "Body" "India" "Aug" "8" "After" "Neeraj" "Chopra" "became"
[9] "the" "second" "Indian" "ever"
[ ... and 372 more ]
text6 :
[1] "Body" "If" "you're" "wondering" "who" "are"
[7] "these" "ROC" "athletes" "winning" "so" "many"
[ ... and 416 more ]
[ reached max_ndoc ... 1,185 more documents ]
Removing stopwords
withoutstopwords_news<- tokens_select(newspaper_tokens,
pattern = stopwords("en"),
select = "remove")
print(withoutstopwords_news)Tokens consisting of 1,191 documents and 2 docvars.
text1 :
[1] "Body" "Mumbai" "Aug" "9" "solitary" "two-day"
[7] "fixture" "Great" "Britain" "France" "1900" "Olympics"
[ ... and 292 more ]
text2 :
[1] "Body" "India" "Aug" "2" "Tokyo"
[6] "Olympics" "Day" "10" "Full" "Schedule"
[11] "Kamalpreet" "Kaur"
[ ... and 161 more ]
text3 :
[1] "Body" "best-ever" "performance" "just-concluded"
[5] "Tokyo" "Olympics" "India" "shall"
[9] "look" "breaking" "top" "10"
[ ... and 456 more ]
text4 :
[1] "Body" "New" "Delhi" "July" "28" "Tokyo"
[7] "Olympics" "2020" "enters" "fifth" "day" "begin"
[ ... and 212 more ]
text5 :
[1] "Body" "India" "Aug" "8" "Neeraj"
[6] "Chopra" "became" "second" "Indian" "ever"
[11] "win" "individual"
[ ... and 230 more ]
text6 :
[1] "Body" "wondering" "ROC" "athletes" "winning"
[6] "many" "medals" "Tokyo" "Olympics" "everything"
[11] "need" "know"
[ ... and 230 more ]
[ reached max_ndoc ... 1,185 more documents ]
summary(withoutstopwords_news) Length Class Mode
text1 304 -none- character
text2 173 -none- character
text3 468 -none- character
text4 224 -none- character
text5 242 -none- character
text6 242 -none- character
text7 255 -none- character
text8 297 -none- character
text9 183 -none- character
text10 327 -none- character
text11 202 -none- character
text12 179 -none- character
text13 179 -none- character
text14 161 -none- character
text15 147 -none- character
text16 190 -none- character
text17 241 -none- character
text18 207 -none- character
text19 369 -none- character
text20 248 -none- character
text21 286 -none- character
text22 213 -none- character
text23 276 -none- character
text24 135 -none- character
text25 386 -none- character
text26 363 -none- character
text27 219 -none- character
text28 237 -none- character
text29 116 -none- character
text30 227 -none- character
text31 264 -none- character
text32 336 -none- character
text33 320 -none- character
text34 223 -none- character
text35 200 -none- character
text36 303 -none- character
text37 172 -none- character
text38 321 -none- character
text39 189 -none- character
text40 275 -none- character
text41 273 -none- character
text42 287 -none- character
text43 209 -none- character
text44 210 -none- character
text45 196 -none- character
text46 188 -none- character
text47 316 -none- character
text48 306 -none- character
text49 124 -none- character
text50 165 -none- character
text51 160 -none- character
text52 275 -none- character
text53 129 -none- character
text54 227 -none- character
text55 426 -none- character
text56 229 -none- character
text57 220 -none- character
text58 168 -none- character
text59 525 -none- character
text60 158 -none- character
text61 224 -none- character
text62 223 -none- character
text63 380 -none- character
text64 169 -none- character
text65 296 -none- character
text66 412 -none- character
text67 298 -none- character
text68 298 -none- character
text69 237 -none- character
text70 135 -none- character
text71 151 -none- character
text72 352 -none- character
text73 162 -none- character
text74 151 -none- character
text75 287 -none- character
text76 173 -none- character
text77 448 -none- character
text78 298 -none- character
text79 316 -none- character
text80 317 -none- character
text81 140 -none- character
text82 137 -none- character
text83 201 -none- character
text84 281 -none- character
text85 386 -none- character
text86 355 -none- character
text87 322 -none- character
text88 298 -none- character
text89 186 -none- character
text90 240 -none- character
text91 268 -none- character
text92 149 -none- character
text93 216 -none- character
text94 287 -none- character
text95 254 -none- character
text96 216 -none- character
text97 181 -none- character
text98 145 -none- character
text99 152 -none- character
text100 128 -none- character
text101 199 -none- character
text102 243 -none- character
text103 259 -none- character
text104 177 -none- character
text105 257 -none- character
text106 497 -none- character
text107 313 -none- character
text108 130 -none- character
text109 341 -none- character
text110 200 -none- character
text111 172 -none- character
text112 195 -none- character
text113 371 -none- character
text114 202 -none- character
text115 164 -none- character
text116 298 -none- character
text117 173 -none- character
text118 264 -none- character
text119 274 -none- character
text120 148 -none- character
text121 193 -none- character
text122 116 -none- character
text123 212 -none- character
text124 163 -none- character
text125 305 -none- character
text126 434 -none- character
text127 297 -none- character
text128 270 -none- character
text129 413 -none- character
text130 272 -none- character
text131 199 -none- character
text132 287 -none- character
text133 256 -none- character
text134 283 -none- character
text135 511 -none- character
text136 381 -none- character
text137 193 -none- character
text138 144 -none- character
text139 292 -none- character
text140 271 -none- character
text141 128 -none- character
text142 258 -none- character
text143 291 -none- character
text144 159 -none- character
text145 196 -none- character
text146 270 -none- character
text147 180 -none- character
text148 175 -none- character
text149 206 -none- character
text150 233 -none- character
text151 561 -none- character
text152 578 -none- character
text153 240 -none- character
text154 186 -none- character
text155 173 -none- character
text156 362 -none- character
text157 206 -none- character
text158 160 -none- character
text159 170 -none- character
text160 231 -none- character
text161 254 -none- character
text162 827 -none- character
text163 243 -none- character
text164 155 -none- character
text165 128 -none- character
text166 152 -none- character
text167 162 -none- character
text168 264 -none- character
text169 191 -none- character
text170 167 -none- character
text171 431 -none- character
text172 180 -none- character
text173 304 -none- character
text174 219 -none- character
text175 152 -none- character
text176 221 -none- character
text177 202 -none- character
text178 350 -none- character
text179 179 -none- character
text180 223 -none- character
text181 257 -none- character
text182 594 -none- character
text183 312 -none- character
text184 162 -none- character
text185 156 -none- character
text186 165 -none- character
text187 251 -none- character
text188 266 -none- character
text189 346 -none- character
text190 276 -none- character
text191 404 -none- character
text192 216 -none- character
text193 169 -none- character
text194 472 -none- character
text195 176 -none- character
text196 278 -none- character
text197 151 -none- character
text198 622 -none- character
text199 187 -none- character
text200 667 -none- character
text201 170 -none- character
text202 204 -none- character
text203 486 -none- character
text204 329 -none- character
text205 228 -none- character
text206 324 -none- character
text207 209 -none- character
text208 279 -none- character
text209 267 -none- character
text210 190 -none- character
text211 234 -none- character
text212 151 -none- character
text213 295 -none- character
text214 133 -none- character
text215 204 -none- character
text216 172 -none- character
text217 419 -none- character
text218 410 -none- character
text219 264 -none- character
text220 164 -none- character
text221 513 -none- character
text222 223 -none- character
text223 167 -none- character
text224 271 -none- character
text225 384 -none- character
text226 329 -none- character
text227 256 -none- character
text228 193 -none- character
text229 869 -none- character
text230 456 -none- character
text231 267 -none- character
text232 191 -none- character
text233 190 -none- character
text234 257 -none- character
text235 349 -none- character
text236 191 -none- character
text237 467 -none- character
text238 191 -none- character
text239 204 -none- character
text240 364 -none- character
text241 181 -none- character
text242 252 -none- character
text243 493 -none- character
text244 209 -none- character
text245 136 -none- character
text246 195 -none- character
text247 581 -none- character
text248 212 -none- character
text249 221 -none- character
text250 340 -none- character
text251 164 -none- character
text252 253 -none- character
text253 154 -none- character
text254 148 -none- character
text255 406 -none- character
text256 333 -none- character
text257 176 -none- character
text258 420 -none- character
text259 342 -none- character
text260 384 -none- character
text261 186 -none- character
text262 183 -none- character
text263 182 -none- character
text264 324 -none- character
text265 287 -none- character
text266 154 -none- character
text267 318 -none- character
text268 222 -none- character
text269 391 -none- character
text270 195 -none- character
text271 273 -none- character
text272 363 -none- character
text273 330 -none- character
text274 210 -none- character
text275 270 -none- character
text276 133 -none- character
text277 288 -none- character
text278 466 -none- character
text279 160 -none- character
text280 172 -none- character
text281 436 -none- character
text282 122 -none- character
text283 300 -none- character
text284 157 -none- character
text285 263 -none- character
text286 263 -none- character
text287 278 -none- character
text288 249 -none- character
text289 210 -none- character
text290 276 -none- character
text291 170 -none- character
text292 163 -none- character
text293 942 -none- character
text294 203 -none- character
text295 166 -none- character
text296 159 -none- character
text297 149 -none- character
text298 372 -none- character
text299 162 -none- character
text300 329 -none- character
text301 243 -none- character
text302 291 -none- character
text303 191 -none- character
text304 162 -none- character
text305 159 -none- character
text306 310 -none- character
text307 190 -none- character
text308 619 -none- character
text309 188 -none- character
text310 685 -none- character
text311 159 -none- character
text312 227 -none- character
text313 611 -none- character
text314 162 -none- character
text315 319 -none- character
text316 215 -none- character
text317 162 -none- character
text318 175 -none- character
text319 404 -none- character
text320 232 -none- character
text321 135 -none- character
text322 320 -none- character
text323 225 -none- character
text324 214 -none- character
text325 350 -none- character
text326 350 -none- character
text327 201 -none- character
text328 213 -none- character
text329 171 -none- character
text330 147 -none- character
text331 139 -none- character
text332 262 -none- character
text333 296 -none- character
text334 172 -none- character
text335 752 -none- character
text336 172 -none- character
text337 299 -none- character
text338 198 -none- character
text339 177 -none- character
text340 191 -none- character
text341 524 -none- character
text342 308 -none- character
text343 432 -none- character
text344 217 -none- character
text345 211 -none- character
text346 288 -none- character
text347 227 -none- character
text348 152 -none- character
text349 379 -none- character
text350 229 -none- character
text351 326 -none- character
text352 223 -none- character
text353 172 -none- character
text354 355 -none- character
text355 211 -none- character
text356 504 -none- character
text357 371 -none- character
text358 504 -none- character
text359 503 -none- character
text360 402 -none- character
text361 504 -none- character
text362 660 -none- character
text363 237 -none- character
text364 142 -none- character
text365 293 -none- character
text366 317 -none- character
text367 477 -none- character
text368 361 -none- character
text369 241 -none- character
text370 371 -none- character
text371 342 -none- character
text372 249 -none- character
text373 193 -none- character
text374 158 -none- character
text375 169 -none- character
text376 155 -none- character
text377 407 -none- character
text378 184 -none- character
text379 402 -none- character
text380 300 -none- character
text381 210 -none- character
text382 176 -none- character
text383 170 -none- character
text384 152 -none- character
text385 222 -none- character
text386 248 -none- character
text387 302 -none- character
text388 275 -none- character
text389 127 -none- character
text390 390 -none- character
text391 249 -none- character
text392 161 -none- character
text393 353 -none- character
text394 253 -none- character
text395 289 -none- character
text396 380 -none- character
text397 149 -none- character
text398 382 -none- character
text399 441 -none- character
text400 222 -none- character
text401 302 -none- character
text402 226 -none- character
text403 330 -none- character
text404 272 -none- character
text405 464 -none- character
text406 443 -none- character
text407 271 -none- character
text408 160 -none- character
text409 642 -none- character
text410 457 -none- character
text411 473 -none- character
text412 152 -none- character
text413 505 -none- character
text414 314 -none- character
text415 217 -none- character
text416 261 -none- character
text417 203 -none- character
text418 146 -none- character
text419 441 -none- character
text420 185 -none- character
text421 228 -none- character
text422 219 -none- character
text423 220 -none- character
text424 239 -none- character
text425 204 -none- character
text426 253 -none- character
text427 168 -none- character
text428 134 -none- character
text429 238 -none- character
text430 287 -none- character
text431 207 -none- character
text432 287 -none- character
text433 344 -none- character
text434 179 -none- character
text435 135 -none- character
text436 220 -none- character
text437 407 -none- character
text438 194 -none- character
text439 503 -none- character
text440 384 -none- character
text441 232 -none- character
text442 168 -none- character
text443 665 -none- character
text444 665 -none- character
text445 665 -none- character
text446 184 -none- character
text447 164 -none- character
text448 209 -none- character
text449 190 -none- character
text450 364 -none- character
text451 199 -none- character
text452 237 -none- character
text453 366 -none- character
text454 235 -none- character
text455 157 -none- character
text456 176 -none- character
text457 359 -none- character
text458 275 -none- character
text459 491 -none- character
text460 182 -none- character
text461 124 -none- character
text462 294 -none- character
text463 237 -none- character
text464 298 -none- character
text465 195 -none- character
text466 230 -none- character
text467 489 -none- character
text468 286 -none- character
text469 223 -none- character
text470 175 -none- character
text471 157 -none- character
text472 328 -none- character
text473 243 -none- character
text474 334 -none- character
text475 338 -none- character
text476 157 -none- character
text477 126 -none- character
text478 461 -none- character
text479 129 -none- character
text480 270 -none- character
text481 202 -none- character
text482 308 -none- character
text483 246 -none- character
text484 314 -none- character
text485 169 -none- character
text486 246 -none- character
text487 244 -none- character
text488 201 -none- character
text489 233 -none- character
text490 164 -none- character
text491 315 -none- character
text492 434 -none- character
text493 245 -none- character
text494 325 -none- character
text495 224 -none- character
text496 376 -none- character
text497 323 -none- character
text498 392 -none- character
text499 186 -none- character
text500 125 -none- character
text501 200 -none- character
text502 156 -none- character
text503 183 -none- character
text504 317 -none- character
text505 274 -none- character
text506 581 -none- character
text507 407 -none- character
text508 387 -none- character
text509 191 -none- character
text510 251 -none- character
text511 394 -none- character
text512 200 -none- character
text513 443 -none- character
text514 128 -none- character
text515 308 -none- character
text516 302 -none- character
text517 182 -none- character
text518 208 -none- character
text519 211 -none- character
text520 250 -none- character
text521 351 -none- character
text522 223 -none- character
text523 418 -none- character
text524 250 -none- character
text525 250 -none- character
text526 299 -none- character
text527 205 -none- character
text528 238 -none- character
text529 300 -none- character
text530 181 -none- character
text531 205 -none- character
text532 137 -none- character
text533 407 -none- character
text534 552 -none- character
text535 236 -none- character
text536 198 -none- character
text537 207 -none- character
text538 217 -none- character
text539 484 -none- character
text540 231 -none- character
text541 245 -none- character
text542 246 -none- character
text543 234 -none- character
text544 137 -none- character
text545 254 -none- character
text546 222 -none- character
text547 199 -none- character
text548 533 -none- character
text549 146 -none- character
text550 253 -none- character
text551 266 -none- character
text552 207 -none- character
text553 277 -none- character
text554 131 -none- character
text555 565 -none- character
text556 581 -none- character
text557 248 -none- character
text558 577 -none- character
text559 186 -none- character
text560 149 -none- character
text561 250 -none- character
text562 214 -none- character
text563 427 -none- character
text564 185 -none- character
text565 169 -none- character
text566 395 -none- character
text567 395 -none- character
text568 251 -none- character
text569 244 -none- character
text570 179 -none- character
text571 184 -none- character
text572 400 -none- character
text573 177 -none- character
text574 329 -none- character
text575 534 -none- character
text576 291 -none- character
text577 287 -none- character
text578 420 -none- character
text579 387 -none- character
text580 320 -none- character
text581 256 -none- character
text582 161 -none- character
text583 161 -none- character
text584 190 -none- character
text585 175 -none- character
text586 257 -none- character
text587 163 -none- character
text588 312 -none- character
text589 473 -none- character
text590 249 -none- character
text591 245 -none- character
text592 280 -none- character
text593 272 -none- character
text594 151 -none- character
text595 205 -none- character
text596 159 -none- character
text597 443 -none- character
text598 186 -none- character
text599 194 -none- character
text600 171 -none- character
text601 376 -none- character
text602 330 -none- character
text603 317 -none- character
text604 235 -none- character
text605 164 -none- character
text606 656 -none- character
text607 508 -none- character
text608 280 -none- character
text609 235 -none- character
text610 394 -none- character
text611 224 -none- character
text612 235 -none- character
text613 281 -none- character
text614 508 -none- character
text615 930 -none- character
text616 395 -none- character
text617 324 -none- character
text618 184 -none- character
text619 164 -none- character
text620 607 -none- character
text621 519 -none- character
text622 350 -none- character
text623 153 -none- character
text624 440 -none- character
text625 392 -none- character
text626 454 -none- character
text627 161 -none- character
text628 475 -none- character
text629 456 -none- character
text630 372 -none- character
text631 163 -none- character
text632 713 -none- character
text633 357 -none- character
text634 149 -none- character
text635 290 -none- character
text636 280 -none- character
text637 170 -none- character
text638 155 -none- character
text639 167 -none- character
text640 165 -none- character
text641 261 -none- character
text642 310 -none- character
text643 349 -none- character
text644 209 -none- character
text645 215 -none- character
text646 154 -none- character
text647 410 -none- character
text648 428 -none- character
text649 200 -none- character
text650 199 -none- character
text651 378 -none- character
text652 203 -none- character
text653 535 -none- character
text654 307 -none- character
text655 186 -none- character
text656 215 -none- character
text657 377 -none- character
text658 192 -none- character
text659 194 -none- character
text660 305 -none- character
text661 417 -none- character
text662 201 -none- character
text663 632 -none- character
text664 378 -none- character
text665 417 -none- character
text666 346 -none- character
text667 417 -none- character
text668 396 -none- character
text669 216 -none- character
text670 195 -none- character
text671 220 -none- character
text672 220 -none- character
text673 154 -none- character
text674 259 -none- character
text675 241 -none- character
text676 217 -none- character
text677 228 -none- character
text678 197 -none- character
text679 590 -none- character
text680 252 -none- character
text681 341 -none- character
text682 257 -none- character
text683 239 -none- character
text684 344 -none- character
text685 221 -none- character
text686 269 -none- character
text687 243 -none- character
text688 221 -none- character
text689 215 -none- character
text690 221 -none- character
text691 452 -none- character
text692 394 -none- character
text693 240 -none- character
text694 231 -none- character
text695 250 -none- character
text696 228 -none- character
text697 259 -none- character
text698 238 -none- character
text699 205 -none- character
text700 237 -none- character
text701 411 -none- character
text702 287 -none- character
text703 388 -none- character
text704 261 -none- character
text705 194 -none- character
text706 439 -none- character
text707 235 -none- character
text708 250 -none- character
text709 424 -none- character
text710 233 -none- character
text711 307 -none- character
text712 983 -none- character
text713 286 -none- character
text714 315 -none- character
text715 292 -none- character
text716 252 -none- character
text717 253 -none- character
text718 438 -none- character
text719 304 -none- character
text720 227 -none- character
text721 263 -none- character
text722 341 -none- character
text723 302 -none- character
text724 630 -none- character
text725 596 -none- character
text726 448 -none- character
text727 587 -none- character
text728 271 -none- character
text729 290 -none- character
text730 467 -none- character
text731 320 -none- character
text732 149 -none- character
text733 304 -none- character
text734 254 -none- character
text735 490 -none- character
text736 310 -none- character
text737 256 -none- character
text738 329 -none- character
text739 280 -none- character
text740 280 -none- character
text741 292 -none- character
text742 302 -none- character
text743 332 -none- character
text744 627 -none- character
text745 405 -none- character
text746 277 -none- character
text747 117 -none- character
text748 266 -none- character
text749 301 -none- character
text750 127 -none- character
text751 271 -none- character
text752 329 -none- character
text753 316 -none- character
text754 362 -none- character
text755 477 -none- character
text756 267 -none- character
text757 383 -none- character
text758 241 -none- character
text759 361 -none- character
text760 294 -none- character
text761 174 -none- character
text762 568 -none- character
text763 594 -none- character
text764 190 -none- character
text765 126 -none- character
text766 309 -none- character
text767 564 -none- character
text768 329 -none- character
text769 647 -none- character
text770 949 -none- character
text771 643 -none- character
text772 392 -none- character
text773 448 -none- character
text774 461 -none- character
text775 642 -none- character
text776 787 -none- character
text777 559 -none- character
text778 500 -none- character
text779 531 -none- character
text780 510 -none- character
text781 651 -none- character
text782 694 -none- character
text783 817 -none- character
text784 819 -none- character
text785 593 -none- character
text786 613 -none- character
text787 606 -none- character
text788 550 -none- character
text789 606 -none- character
text790 400 -none- character
text791 458 -none- character
text792 437 -none- character
text793 396 -none- character
text794 691 -none- character
text795 710 -none- character
text796 405 -none- character
text797 452 -none- character
text798 677 -none- character
text799 705 -none- character
text800 651 -none- character
text801 161 -none- character
text802 360 -none- character
text803 157 -none- character
text804 470 -none- character
text805 421 -none- character
text806 407 -none- character
text807 172 -none- character
text808 148 -none- character
text809 195 -none- character
text810 119 -none- character
text811 221 -none- character
text812 141 -none- character
text813 178 -none- character
text814 328 -none- character
text815 443 -none- character
text816 147 -none- character
text817 260 -none- character
text818 195 -none- character
text819 197 -none- character
text820 149 -none- character
text821 196 -none- character
text822 203 -none- character
text823 194 -none- character
text824 174 -none- character
text825 150 -none- character
text826 150 -none- character
text827 186 -none- character
text828 532 -none- character
text829 190 -none- character
text830 157 -none- character
text831 204 -none- character
text832 269 -none- character
text833 269 -none- character
text834 158 -none- character
text835 278 -none- character
text836 193 -none- character
text837 164 -none- character
text838 132 -none- character
text839 176 -none- character
text840 243 -none- character
text841 506 -none- character
text842 284 -none- character
text843 211 -none- character
text844 490 -none- character
text845 197 -none- character
text846 1187 -none- character
text847 254 -none- character
text848 181 -none- character
text849 194 -none- character
text850 266 -none- character
text851 199 -none- character
text852 218 -none- character
text853 182 -none- character
text854 229 -none- character
text855 226 -none- character
text856 432 -none- character
text857 227 -none- character
text858 202 -none- character
text859 230 -none- character
text860 240 -none- character
text861 178 -none- character
text862 254 -none- character
text863 207 -none- character
text864 527 -none- character
text865 288 -none- character
text866 230 -none- character
text867 233 -none- character
text868 188 -none- character
text869 255 -none- character
text870 222 -none- character
text871 268 -none- character
text872 191 -none- character
text873 226 -none- character
text874 525 -none- character
text875 183 -none- character
text876 530 -none- character
text877 249 -none- character
text878 286 -none- character
text879 227 -none- character
text880 288 -none- character
text881 212 -none- character
text882 230 -none- character
text883 299 -none- character
text884 216 -none- character
text885 162 -none- character
text886 241 -none- character
text887 177 -none- character
text888 525 -none- character
text889 266 -none- character
text890 270 -none- character
text891 258 -none- character
text892 243 -none- character
text893 274 -none- character
text894 220 -none- character
text895 293 -none- character
text896 217 -none- character
text897 272 -none- character
text898 247 -none- character
text899 234 -none- character
text900 298 -none- character
text901 291 -none- character
text902 259 -none- character
text903 213 -none- character
text904 246 -none- character
text905 201 -none- character
text906 163 -none- character
text907 290 -none- character
text908 182 -none- character
text909 279 -none- character
text910 490 -none- character
text911 227 -none- character
text912 278 -none- character
text913 370 -none- character
text914 271 -none- character
text915 227 -none- character
text916 268 -none- character
text917 280 -none- character
text918 242 -none- character
text919 292 -none- character
text920 274 -none- character
text921 243 -none- character
text922 246 -none- character
text923 236 -none- character
text924 319 -none- character
text925 263 -none- character
text926 319 -none- character
text927 298 -none- character
text928 352 -none- character
text929 434 -none- character
text930 323 -none- character
text931 778 -none- character
text932 264 -none- character
text933 284 -none- character
text934 329 -none- character
text935 399 -none- character
text936 276 -none- character
text937 404 -none- character
text938 284 -none- character
text939 294 -none- character
text940 273 -none- character
text941 621 -none- character
text942 140 -none- character
text943 259 -none- character
text944 312 -none- character
text945 256 -none- character
text946 392 -none- character
text947 286 -none- character
text948 346 -none- character
text949 335 -none- character
text950 340 -none- character
text951 287 -none- character
text952 401 -none- character
text953 480 -none- character
text954 529 -none- character
text955 217 -none- character
text956 431 -none- character
text957 447 -none- character
text958 449 -none- character
text959 476 -none- character
text960 313 -none- character
text961 313 -none- character
text962 333 -none- character
text963 457 -none- character
text964 483 -none- character
text965 497 -none- character
text966 411 -none- character
text967 198 -none- character
text968 390 -none- character
text969 387 -none- character
text970 395 -none- character
text971 433 -none- character
text972 249 -none- character
text973 447 -none- character
text974 390 -none- character
text975 387 -none- character
text976 390 -none- character
text977 410 -none- character
text978 471 -none- character
text979 273 -none- character
text980 254 -none- character
text981 523 -none- character
text982 643 -none- character
text983 557 -none- character
text984 391 -none- character
text985 572 -none- character
text986 557 -none- character
text987 539 -none- character
text988 383 -none- character
text989 404 -none- character
text990 212 -none- character
text991 148 -none- character
text992 148 -none- character
text993 141 -none- character
text994 232 -none- character
text995 348 -none- character
text996 376 -none- character
text997 134 -none- character
text998 322 -none- character
text999 164 -none- character
text1000 267 -none- character
text1001 284 -none- character
text1002 344 -none- character
text1003 271 -none- character
text1004 211 -none- character
text1005 211 -none- character
text1006 399 -none- character
text1007 244 -none- character
text1008 245 -none- character
text1009 306 -none- character
text1010 240 -none- character
text1011 243 -none- character
text1012 248 -none- character
text1013 321 -none- character
text1014 213 -none- character
text1015 235 -none- character
text1016 235 -none- character
text1017 413 -none- character
text1018 248 -none- character
text1019 343 -none- character
text1020 162 -none- character
text1021 138 -none- character
text1022 302 -none- character
text1023 407 -none- character
text1024 149 -none- character
text1025 172 -none- character
text1026 181 -none- character
text1027 190 -none- character
text1028 145 -none- character
text1029 161 -none- character
text1030 163 -none- character
text1031 163 -none- character
text1032 239 -none- character
text1033 168 -none- character
text1034 330 -none- character
text1035 168 -none- character
text1036 168 -none- character
text1037 330 -none- character
text1038 198 -none- character
text1039 220 -none- character
text1040 234 -none- character
text1041 209 -none- character
text1042 211 -none- character
text1043 245 -none- character
text1044 215 -none- character
text1045 215 -none- character
text1046 116 -none- character
text1047 153 -none- character
text1048 205 -none- character
text1049 210 -none- character
text1050 257 -none- character
text1051 224 -none- character
text1052 305 -none- character
text1053 473 -none- character
text1054 282 -none- character
text1055 231 -none- character
text1056 223 -none- character
text1057 238 -none- character
text1058 208 -none- character
text1059 219 -none- character
text1060 223 -none- character
text1061 248 -none- character
text1062 245 -none- character
text1063 369 -none- character
text1064 365 -none- character
text1065 292 -none- character
text1066 286 -none- character
text1067 357 -none- character
text1068 329 -none- character
text1069 398 -none- character
text1070 562 -none- character
text1071 584 -none- character
text1072 92 -none- character
text1073 61 -none- character
text1074 232 -none- character
text1075 90 -none- character
text1076 105 -none- character
text1077 111 -none- character
text1078 119 -none- character
text1079 74 -none- character
text1080 98 -none- character
text1081 38 -none- character
text1082 132 -none- character
text1083 126 -none- character
text1084 87 -none- character
text1085 122 -none- character
text1086 91 -none- character
text1087 95 -none- character
text1088 53 -none- character
text1089 112 -none- character
text1090 106 -none- character
text1091 103 -none- character
text1092 104 -none- character
text1093 101 -none- character
text1094 109 -none- character
text1095 40 -none- character
text1096 86 -none- character
text1097 99 -none- character
text1098 101 -none- character
text1099 95 -none- character
text1100 101 -none- character
text1101 87 -none- character
text1102 106 -none- character
text1103 93 -none- character
text1104 93 -none- character
text1105 198 -none- character
text1106 93 -none- character
text1107 109 -none- character
text1108 142 -none- character
text1109 118 -none- character
text1110 125 -none- character
text1111 126 -none- character
text1112 95 -none- character
text1113 119 -none- character
text1114 95 -none- character
text1115 125 -none- character
text1116 81 -none- character
text1117 115 -none- character
text1118 101 -none- character
text1119 113 -none- character
text1120 114 -none- character
text1121 108 -none- character
text1122 120 -none- character
text1123 160 -none- character
text1124 73 -none- character
text1125 128 -none- character
text1126 125 -none- character
text1127 89 -none- character
text1128 120 -none- character
text1129 89 -none- character
text1130 108 -none- character
text1131 117 -none- character
text1132 84 -none- character
text1133 103 -none- character
text1134 58 -none- character
text1135 129 -none- character
text1136 121 -none- character
text1137 102 -none- character
text1138 127 -none- character
text1139 78 -none- character
text1140 124 -none- character
text1141 111 -none- character
text1142 112 -none- character
text1143 73 -none- character
text1144 74 -none- character
text1145 110 -none- character
text1146 105 -none- character
text1147 102 -none- character
text1148 82 -none- character
text1149 122 -none- character
text1150 131 -none- character
text1151 120 -none- character
text1152 105 -none- character
text1153 119 -none- character
text1154 68 -none- character
text1155 63 -none- character
text1156 73 -none- character
text1157 66 -none- character
text1158 66 -none- character
text1159 72 -none- character
text1160 78 -none- character
text1161 79 -none- character
text1162 66 -none- character
text1163 71 -none- character
text1164 71 -none- character
text1165 100 -none- character
text1166 86 -none- character
text1167 98 -none- character
text1168 123 -none- character
text1169 92 -none- character
text1170 105 -none- character
text1171 96 -none- character
text1172 104 -none- character
text1173 88 -none- character
text1174 97 -none- character
text1175 122 -none- character
text1176 125 -none- character
text1177 136 -none- character
text1178 118 -none- character
text1179 81 -none- character
text1180 76 -none- character
text1181 125 -none- character
text1182 127 -none- character
text1183 99 -none- character
text1184 111 -none- character
text1185 50 -none- character
text1186 99 -none- character
text1187 81 -none- character
text1188 39 -none- character
text1189 103 -none- character
text1190 115 -none- character
text1191 114 -none- character
as.character(withoutstopwords_news) [1] "Body" "Mumbai"
[3] "Aug" "9"
[5] "solitary" "two-day"
[7] "fixture" "Great"
[9] "Britain" "France"
[11] "1900" "Olympics"
[13] "prospects" "cricket's"
[15] "inclusion" "8-team"
[17] "medal" "sport"
[19] "men" "women"
[21] "Los" "Angeles"
[23] "2028" "brightened"
[25] "International" "Cricket"
[27] "Council" "ICC"
[29] "s" "proposal"
[31] "introduce" "cricket"
[33] "Olympic" "sport"
[35] "2028" "placed"
[37] "International" "Olympic"
[39] "Committee" "IOC"
[41] "Importantly" "Board"
[43] "Control" "Cricket"
[45] "India" "BCCI"
[47] "s" "reluctance"
[49] "join" "Olympic"
[51] "movement" "now"
[53] "thing" "past"
[55] "cricket" "added"
[57] "Olympics" "India"
[59] "participating" "BCCI"
[61] "secretary" "Jay"
[63] "Shah" "said"
[65] "BCCI" "ICC"
[67] "page" "far"
[69] "participation" "Olympics"
[71] "concerned" "BCCI"
[73] "Apex" "Council"
[75] "meeting" "April"
[77] "given" "conditional"
[79] "nod" "send"
[81] "team" "2028"
[83] "edition" "autonomy"
[85] "disturbed" "interference"
[87] "Indian" "Olympic"
[89] "Association" "IOA"
[91] "BCCI" "IOA"
[93] "government" "though"
[95] "working" "sync"
[97] "Indian" "cricket"
[99] "board" "pledged"
[101] "Rs" "10"
[103] "crore" "assist"
[105] "Tokyo" "bound"
[107] "Indian" "contingent's"
[109] "marketing" "budget"
[111] "also" "announced"
[113] "cash" "prize"
[115] "totalling" "Rs"
[117] "4" "crore"
[119] "seven" "medal"
[121] "winners" "Saturday"
[123] "ICC" "92"
[125] "Associate" "members"
[127] "12" "members"
[129] "play" "Test"
[131] "cricket" "slow"
[133] "Olympics" "issue"
[135] "Many" "top"
[137] "Test" "nations"
[139] "past" "insular"
[141] "view" "safeguarding"
[143] "playing" "window"
[145] "TV" "rights"
[147] "revenue" "resisting"
[149] "cricket's" "entry"
[151] "Olympics" "Now"
[153] "agreement" "amongst"
[155] "leading" "cricket"
[157] "boards" "constant"
[159] "talks" "IOC"
[161] "Olympics" "committee"
[163] "formed" "purpose"
[165] "nudge" "government"
[167] "increase" "India's"
[169] "medal" "prospects"
[171] "BCCI" "administration"
[173] "also" "switched"
[175] "stance" "BCCI"
[177] "happy" "work"
[179] "together" "government"
[181] "help" "increase"
[183] "India's" "medal"
[185] "chances" "BCCI"
[187] "official" "said"
[189] "Cricket" "added"
[191] "discipline" "2022"
[193] "Commonwealth" "Games"
[195] "Birmingham" "July-Aug"
[197] "cricket" "2022"
[199] "Asian" "Games"
[201] "Hangzhou" "September"
[203] "cricket" "calendar"
[205] "congested" "ICC"
[207] "events" "bilateral"
[209] "cricket" "franchise"
[211] "leagues" "finding"
[213] "window" "games"
[215] "consistently" "may"
[217] "become" "challenge"
[219] "Commonwealth" "Games"
[221] "women's" "cricket"
[223] "Olympics" "learnt"
[225] "require" "participation"
[227] "men" "women"
[229] "T20" "emerged"
[231] "format" "choice"
[233] "despite" "Associate"
[235] "nations" "championing"
[237] "introducing" "T10"
[239] "English" "cricket"
[241] "board" "explored"
[243] "prospects" "taking"
[245] "Hundred-ball" "format"
[247] "Olympics" "riding"
[249] "newly" "launched"
[251] "league" "neither"
[253] "format" "international"
[255] "status" "ICC"
[257] "expected" "start"
[259] "T20Is" "introduction"
[261] "new" "sport"
[263] "Olympics" "involves"
[265] "structured" "presentations"
[267] "lobbying" "cricket"
[269] "confident" "India's"
[271] "rapidly" "growing"
[273] "consumer" "market"
[275] "digital" "engagement"
[277] "base" "marry"
[279] "IOC's" "search"
[281] "new" "Olympic"
[283] "markets" "Published"
[285] "HT" "Digital"
[287] "Content" "Services"
[289] "permission" "Hindustan"
[291] "Times" "query"
[293] "respect" "article"
[295] "content" "requirement"
[297] "please" "contact"
[299] "Editor" "Classification"
[301] "Language" "ENGLISH"
[303] "Publication-Type" "Newswire"
[305] "Body" "India"
[307] "Aug" "2"
[309] "Tokyo" "Olympics"
[311] "Day" "10"
[313] "Full" "Schedule"
[315] "Kamalpreet" "Kaur"
[317] "stunned" "nation"
[319] "64m" "throw"
[321] "qualification" "stage"
[323] "Women's" "Discus"
[325] "Throw" "aiming"
[327] "medal" "final"
[329] "event" "Monday"
[331] "Meanwhile" "shooters"
[333] "Aishwary" "Pratap"
[335] "Singh" "Tomar"
[337] "Sanjeev" "Rajput"
[339] "action" "Day"
[341] "10" "well"
[343] "along" "sprinter"
[345] "Dutee" "Chand"
[347] "Tokyo" "2020"
[349] "Full" "Coverage"
[351] "India's" "schedule"
[353] "Day" "10"
[355] "Tokyo" "Olympics"
[357] "timings" "IST"
[359] "07" "24"
[361] "IST" "Athletics"
[363] "Women's" "200m"
[365] "Round" "1"
[367] "Heat" "1"
[369] "Dutee" "Chand"
[371] "08" "00"
[373] "IST" "Shooting"
[375] "50m" "Rifle"
[377] "3" "Positions"
[379] "Men's" "Qualification"
[381] "Aishwary" "Pratap"
[383] "Singh" "Tomar"
[385] "Sanjeev" "Rajput"
[387] "08" "30"
[389] "IST" "Women's"
[391] "Hockey" "Quarterfinal"
[393] "India" "vs"
[395] "Australia" "01"
[397] "20" "PM"
[399] "IST" "Shooting"
[401] "50m" "Rifle"
[403] "3" "Positions"
[405] "Men's" "Qualification"
[407] "Subject" "Qualification"
[409] "01" "30"
[411] "PM" "IST"
[413] "Equestrian" "Eventing"
[415] "Individual" "Jumping"
[417] "Qualifier" "Fouaad"
[419] "Mirza" "03"
[421] "55" "PM"
[423] "IST" "Athletics"
[425] "Women's" "200m"
[427] "Semifinal" "1"
[429] "Dutee" "Chand"
[431] "Subject" "Qualification"
[433] "04" "30"
[435] "PM" "IST"
[437] "Athletics" "Women's"
[439] "Discus" "Throw"
[441] "Final" "Kamalpreet"
[443] "Kaur" "05"
[445] "15" "PM"
[447] "IST" "Equestrian"
[449] "Eventing" "Individual"
[451] "Jumping" "Final"
[453] "Fouaad" "Mirza"
[455] "Subject" "Qualification"
[457] "Published" "HT"
[459] "Digital" "Content"
[461] "Services" "permission"
[463] "Hindustan" "Times"
[465] "query" "respect"
[467] "article" "content"
[469] "requirement" "please"
[471] "contact" "Editor"
[473] "Classification" "Language"
[475] "ENGLISH" "Publication-Type"
[477] "Newswire" "Body"
[479] "best-ever" "performance"
[481] "just-concluded" "Tokyo"
[483] "Olympics" "India"
[485] "shall" "look"
[487] "breaking" "top"
[489] "10" "earliest"
[491] "possible" "Rajya"
[493] "Sabha" "Chairman"
[495] "M" "Venkaiah"
[497] "Naidu" "said"
[499] "Monday" "House"
[501] "lauded" "medal"
[503] "winners" "gritty"
[505] "losers" "close"
[507] "finishes" "unusually"
[509] "long" "speech"
[511] "Mr" "Naidu"
[513] "termed" "Indian"
[515] "contingent's" "performance"
[517] "Tokyo" "Olympics"
[519] "first" "moment"
[521] "national" "awakening"
[523] "sports" "Tokyo"
[525] "Games" "turned"
[527] "best" "Olympic"
[529] "moment" "nation"
[531] "last" "121"
[533] "years" "Olympic"
[535] "journey" "said"
[537] "took" "long"
[539] "time" "script"
[541] "can" "moment"
[543] "erasing" "memories"
[545] "desperation" "despondency"
[547] "dejection" "disbelief"
[549] "compounded" "poor"
[551] "medal" "performance"
[553] "every" "four"
[555] "years" "Mr"
[557] "Naidu" "added"
[559] "India" "finished"
[561] "47" "Tokyo"
[563] "medal" "tally"
[565] "far" "improved"
[567] "67" "last"
[569] "Games" "Rio"
[571] "Four" "gold"
[573] "medals" "placed"
[575] "us" "around"
[577] "20" "another"
[579] "four" "among"
[581] "top" "10"
[583] "medals" "tally"
[585] "said" "much"
[587] "higher" "medals"
[589] "table" "given"
[591] "feasibility" "revealed"
[593] "Tokyo" "performances"
[595] "mission" "shall"
[597] "top" "10"
[599] "earliest" "possible"
[601] "Members" "thumped"
[603] "desks" "reference"
[605] "read" "Mr"
[607] "Naidu" "said"
[609] "Tokyo" "Olympics"
[611] "just" "give"
[613] "highest-ever" "tally"
[615] "seven" "medals"
[617] "also" "demonstrated"
[619] "grit" "terms"
[621] "quite" "close"
[623] "finishes" "large"
[625] "number" "athletes"
[627] "entering" "medal-winning"
[629] "rounds" "competition"
[631] "Tokyo" "Olympics"
[633] "heralded" "resurgence"
[635] "renaissance" "national"
[637] "awakening" "sports"
[639] "country" "restoring"
[641] "depleting" "confidence"
[643] "self-esteem" "said"
[645] "120" "members"
[647] "Indian" "contingent"
[649] "Tokyo" "55"
[651] "contested" "quarter-finals"
[653] "marking" "highest-ever"
[655] "penetration" "medal"
[657] "rounds" "competition"
[659] "first" "time"
[661] "five" "Indian"
[663] "athletes" "fought"
[665] "gold" "40"
[667] "made" "semi-finals"
[669] "quite" "significant"
[671] "indicates" "scope"
[673] "substantially" "improving"
[675] "medal" "harvest"
[677] "near" "future"
[679] "sportspersons" "set"
[681] "eyes" "Paris"
[683] "Olympics" "2024"
[685] "newfound" "confidence"
[687] "said" "Mr"
[689] "Naidu" "remarked"
[691] "Neeraj" "Chopra"
[693] "done" "nation"
[695] "proud" "gold-fetching"
[697] "javelin" "throw"
[699] "bringing" "curtains"
[701] "decades" "despair"
[703] "heralded" "new"
[705] "era" "confidence"
[707] "hope" "feat"
[709] "helps" "healing"
[711] "festering" "wound"
[713] "recurrent" "despair"
[715] "waning" "hope"
[717] "every" "lost"
[719] "opportunity" "said"
[721] "went" "praise"
[723] "medal" "winners"
[725] "Ravi" "Kumar"
[727] "Dahiya" "Mirabai"
[729] "Chanu" "Lovelin"
[731] "Borgohain" "P"
[733] "V" "Sindhu"
[735] "Bajrang" "Punia"
[737] "men's" "hockey"
[739] "team" "entered"
[741] "semi-finals" "49"
[743] "long" "years"
[745] "fought" "valiantly"
[747] "win" "medal"
[749] "41" "years"
[751] "women" "bravehearts"
[753] "made" "Olympics"
[755] "debut" "1980"
[757] "made" "semi-final"
[759] "41" "years"
[761] "third" "appearance"
[763] "stellar" "performances"
[765] "harbingers" "rejuvenation"
[767] "interest" "sports"
[769] "general" "hockey"
[771] "particular" "country"
[773] "said" "august"
[775] "House" "happy"
[777] "take" "note"
[779] "spectacular" "emergence"
[781] "women" "athletes"
[783] "international" "sports"
[785] "arena" "coming"
[787] "fore" "medal"
[789] "winners" "2016"
[791] "Rio" "games"
[793] "medal" "winners"
[795] "women" "Tokyo"
[797] "three" "seven"
[799] "medal" "winners"
[801] "women" "golden"
[803] "record" "men's"
[805] "hockey" "team"
[807] "till" "1980"
[809] "rare" "good"
[811] "performances" "individual"
[813] "athletes" "notwithstanding"
[815] "India" "come"
[817] "lose" "self-esteem"
[819] "confidence" "morale"
[821] "hope" "domain"
[823] "sports" "poor"
[825] "performances" "Olympics"
[827] "arena" "years"
[829] "Mr" "Naidu"
[831] "said" "nation"
[833] "can" "hold"
[835] "head" "high"
[837] "domain" "lack"
[839] "confidence" "low"
[841] "self-esteem" "said"
[843] "Olympic" "medals"
[845] "add" "global"
[847] "perception" "emerging"
[849] "economies" "level"
[851] "sports" "important"
[853] "element" "soft"
[855] "power" "addition"
[857] "excepting" "rare"
[859] "noteworthy" "performances"
[861] "nation" "come"
[863] "used" "early"
[865] "exits" "competitions"
[867] "various" "events"
[869] "Olympics" "meek"
[871] "surrenders" "made"
[873] "people" "drop"
[875] "heads" "frustration"
[877] "agony" "added"
[879] "24" "Olympic"
[881] "appearances" "till"
[883] "Rio" "Olympics"
[885] "2016" "India"
[887] "win" "even"
[889] "single" "medal"
[891] "six" "appearances"
[893] "fetched" "single"
[895] "medal" "13"
[897] "appearances" "two"
[899] "medals" "three"
[901] "Olympics" "three"
[903] "medals" "Beijing"
[905] "Games" "2008"
[907] "highest" "six"
[909] "medals" "London"
[911] "Games" "2012"
[913] "first" "individual"
[915] "gold" "medal"
[917] "secured" "Beijing"
[919] "Games" "2008"
[921] "first" "female"
[923] "medal" "winner"
[925] "Olympics" "came"
[927] "Sydney" "Games"
[929] "2000" "even"
[931] "single" "medal"
[933] "track" "field"
[935] "events" "120"
[937] "years" "Mr"
[939] "Naidu" "pointed"
[941] "Classification" "Language"
[943] "ENGLISH" "Publication-Type"
[945] "Newspaper" "Body"
[947] "New" "Delhi"
[949] "July" "28"
[951] "Tokyo" "Olympics"
[953] "2020" "enters"
[955] "fifth" "day"
[957] "begin" "Indian"
[959] "women's" "Hockey"
[961] "team" "locking"
[963] "horns" "defending"
[965] "Olympic" "Gold"
[967] "Medallists" "Great"
[969] "Britain" "third"
[971] "Pool" "encounter"
[973] "eyes" "ace"
[975] "Indian" "shuttler"
[977] "PV" "Sindhu"
[979] "gears" "second"
[981] "game" "tournament"
[983] "Archers" "Tarundeep"
[985] "Rai" "Pravin"
[987] "Jadhav" "Deepika"
[989] "Kumari" "also"
[991] "action" "individual"
[993] "1" "32"
[995] "eliminations" "stage"
[997] "Indian" "rowers"
[999] "Arjun" "Lal"
[1001] "Jat" "Arvind"
[1003] "Singh" "feature"
[1005] "repechage" "semi-final"
[1007] "B" "lightweight"
[1009] "Men's" "Double"
[1011] "Sculls" "Wednesday"
[1013] "Sailors" "KC"
[1015] "Ganapathy" "Varun"
[1017] "Thakkar" "participate"
[1019] "49er" "event"
[1021] "afternoon" "shuttler"
[1023] "Sai" "Praneeth"
[1025] "play" "singles"
[1027] "group" "play"
[1029] "stage" "game"
[1031] "Olympics" "debutant"
[1033] "boxer" "Pooja"
[1035] "Rani" "look"
[1037] "bring" "A-game"
[1039] "Wednesday" "India's"
[1041] "schedule" "Day"
[1043] "5" "Tokyo"
[1045] "Olympics" "Hockey"
[1047] "India" "vs"
[1049] "Great" "Britain"
[1051] "Women's" "Pool"
[1053] "6" "30"
[1055] "IST" "Badminton"
[1057] "PV" "Sindhu"
[1059] "Women's" "Singles"
[1061] "Group" "Play"
[1063] "Stage" "7"
[1065] "30" "IST"
[1067] "B" "Sai"
[1069] "Praneeth" "Men's"
[1071] "Singles" "Group"
[1073] "Play" "Stage"
[1075] "2" "30"
[1077] "PM" "IST"
[1079] "Archery" "Tarundeep"
[1081] "Rain" "Men's"
[1083] "Individual" "1"
[1085] "32" "Eliminations"
[1087] "7" "31"
[1089] "IST" "Pravin"
[1091] "Jadhav" "Men's"
[1093] "Individual" "1"
[1095] "32" "Eliminations"
[1097] "12" "30"
[1099] "PM" "IST"
[1101] "Deepika" "Kumari"
[1103] "Women's" "Individual"
[1105] "1" "32"
[1107] "Eliminations" "2"
[1109] "14" "PM"
[1111] "IST" "Rowing"
[1113] "Arjun" "Lal"
[1115] "Jat" "Arvind"
[1117] "Singh" "Men's"
[1119] "Double" "Sculls"
[1121] "Semifinal" "B"
[1123] "2" "8"
[1125] "00" "IST"
[1127] "Sailing" "KC"
[1129] "Ganapathy" "VarunThakur"
[1131] "49er" "Men's"
[1133] "Race" "2"
[1135] "3" "4"
[1137] "8" "35"
[1139] "IST" "Boxing"
[1141] "Pooja" "Rani"
[1143] "Prelims" "Round"
[1145] "16" "Women's"
[1147] "75" "Kg"
[1149] "Published" "HT"
[1151] "Digital" "Content"
[1153] "Services" "permission"
[1155] "Hindustan" "Times"
[1157] "query" "respect"
[1159] "article" "content"
[1161] "requirement" "please"
[1163] "contact" "Editor"
[1165] "Classification" "Language"
[1167] "ENGLISH" "Publication-Type"
[1169] "Newswire" "Body"
[1171] "India" "Aug"
[1173] "8" "Neeraj"
[1175] "Chopra" "became"
[1177] "second" "Indian"
[1179] "ever" "win"
[1181] "individual" "gold"
[1183] "medal" "Tokyo"
[1185] "Olympics" "video"
[1187] "Prime" "Minister"
[1189] "Narendra" "Modi"
[1191] "suggesting" "Indian"
[1193] "Army" "personnel"
[1195] "must" "trained"
[1197] "events" "widely"
[1199] "shared" "social"
[1201] "media" "PM"
[1203] "Modi's" "video"
[1205] "gone" "viral"
[1207] "23-year-old" "Neeraj"
[1209] "Chopra" "subedar"
[1211] "army" "won"
[1213] "first" "gold"
[1215] "medal" "track"
[1217] "field" "Olympics"
[1219] "Saturday" "threw"
[1221] "distance" "87.58m"
[1223] "javelin" "throw"
[1225] "event" "win"
[1227] "gold" "medal"
[1229] "video" "PM"
[1231] "Modi" "chief"
[1233] "minister" "Gujarat"
[1235] "heard" "lamenting"
[1237] "fact" "despite"
[1239] "India's" "vast"
[1241] "population" "country"
[1243] "struggled" "win"
[1245] "medals" "Olympics"
[1247] "Prime" "Minister"
[1249] "addressing" "students"
[1251] "Fergusson" "College"
[1253] "Pune" "pitched"
[1255] "newly" "recruited"
[1257] "army" "personnel"
[1259] "interested" "sports"
[1261] "can" "trained"
[1263] "Olympics" "Can"
[1265] "nation" "1.2"
[1267] "billion" "people"
[1269] "win" "gold"
[1271] "Olympics" "People"
[1273] "often" "heard"
[1275] "lamenting" "asking"
[1277] "question" "every"
[1279] "four" "years"
[1281] "Games" "played"
[1283] "understand" "issues"
[1285] "taken" "initiative"
[1287] "link" "sports"
[1289] "education" "system"
[1291] "given" "enough"
[1293] "opportunities" "youth"
[1295] "PM" "Modi"
[1297] "asked" "audience"
[1299] "people" "army"
[1301] "given" "duty"
[1303] "newly" "recruited"
[1305] "ones" "interested"
[1307] "sports" "trained"
[1309] "well" "can"
[1311] "bring" "5-10"
[1313] "medals" "easily"
[1315] "added" "video"
[1317] "can" "also"
[1319] "found" "PM"
[1321] "Modi's" "official"
[1323] "YouTube" "channel"
[1325] "Social" "media"
[1327] "users" "also"
[1329] "referred" "video"
[1331] "citing" "Indian"
[1333] "Army's" "Mission"
[1335] "Olympics" "Wing"
[1337] "behind" "success"
[1339] "Indian" "contingent"
[1341] "Tokyo" "2020"
[1343] "Olympics" "Chopra"
[1345] "enrolled" "4"
[1347] "Rajputana" "Rifles"
[1349] "direct" "entry"
[1351] "naib" "subedar"
[1353] "army" "said"
[1355] "Neeraj" "Chopra"
[1357] "selected" "training"
[1359] "Pune's" "Mission"
[1361] "Olympics" "Wing"
[1363] "Army" "Sports"
[1365] "Institute" "soon"
[1367] "joined" "army"
[1369] "Mission" "Olympics"
[1371] "Wing" "initiative"
[1373] "Indian" "Army"
[1375] "identify" "train"
[1377] "elite" "sportsmen"
[1379] "11" "selected"
[1381] "disciplines" "five"
[1383] "Mission" "Olympics"
[1385] "Nodes" "excel"
[1387] "various" "national"
[1389] "international" "competitions"
[1391] "Published" "HT"
[1393] "Digital" "Content"
[1395] "Services" "permission"
[1397] "Hindustan" "Times"
[1399] "query" "respect"
[1401] "article" "content"
[1403] "requirement" "please"
[1405] "contact" "Editor"
[1407] "Classification" "Language"
[1409] "ENGLISH" "Publication-Type"
[1411] "Newswire" "Body"
[1413] "wondering" "ROC"
[1415] "athletes" "winning"
[1417] "many" "medals"
[1419] "Tokyo" "Olympics"
[1421] "everything" "need"
[1423] "know" "ROC"
[1425] "athletes" "currently"
[1427] "joint-third" "Olympics"
[1429] "leader" "board"
[1431] "tally" "16"
[1433] "medals" "ROC"
[1435] "country" "way"
[1437] "Olympics" "ensure"
[1439] "innocent" "athletes"
[1441] "suffer" "doping"
[1443] "bans" "countries"
[1445] "335" "athletes"
[1447] "contesting" "ROC"
[1449] "banner" "can"
[1451] "neither" "wear"
[1453] "country's" "flag"
[1455] "national" "anthem"
[1457] "play" "step"
[1459] "podium" "ROC"
[1461] "acronym" "Russian"
[1463] "Olympic" "Committee"
[1465] "Russia" "banned"
[1467] "competing" "premium"
[1469] "sporting" "event"
[1471] "Russia" "banned"
[1473] "2019" "World"
[1475] "Anti-Doping" "Agency"
[1477] "imposed" "four-year"
[1479] "ban" "Russia"
[1481] "competing" "major"
[1483] "global" "sporting"
[1485] "events" "investigation"
[1487] "WADA" "found"
[1489] "country-wide" "doping"
[1491] "operation" "involved"
[1493] "thousand" "athletes"
[1495] "benefited" "state-sponsored"
[1497] "doping" "programs"
[1499] "2011" "2015"
[1501] "Apart" "Tokyo"
[1503] "Olympics" "ban"
[1505] "barred" "Russia"
[1507] "competing" "2022"
[1509] "Winter" "Olympics"
[1511] "FIFA" "Men's"
[1513] "World" "Cup"
[1515] "2022" "Women's"
[1517] "World" "Cup"
[1519] "2023" "well"
[1521] "2024" "version"
[1523] "Summer" "Olympics"
[1525] "doping" "scandal"
[1527] "also" "subject"
[1529] "Academy" "Award-winning"
[1531] "2017" "Netflix"
[1533] "documentary" "called"
[1535] "Icarus" "Russia"
[1537] "appealed" "ban"
[1539] "reduced" "Court"
[1541] "Arbitration" "Sport"
[1543] "CAS" "two"
[1545] "years" "Russian"
[1547] "athletes" "allowed"
[1549] "Athletes" "Russia"
[1551] "found" "involved"
[1553] "doping" "investigations"
[1555] "WADA" "allowed"
[1557] "compete" "can"
[1559] "neutrals" "Russian"
[1561] "flag" "per"
[1563] "guidelines" "athletes"
[1565] "competing" "ROC"
[1567] "banner" "can"
[1569] "wear" "uniforms"
[1571] "Russian" "colours"
[1573] "name" "flag"
[1575] "anthem" "Russia"
[1577] "permitted" "Outside"
[1579] "Olympics" "Russian"
[1581] "race" "car"
[1583] "driver" "Nikita"
[1585] "Mazepin" "good"
[1587] "example" "Mazepin"
[1589] "competes" "Formula"
[1591] "1" "Haas"
[1593] "F1" "team"
[1595] "Russian" "Automobile"
[1597] "Federation" "flag"
[1599] "Similar" "Olympic"
[1601] "bans" "first"
[1603] "kind" "ban"
[1605] "Afghanistan" "banned"
[1607] "competing" "Sydney"
[1609] "Olympics" "2000"
[1611] "Taliban" "rule"
[1613] "ban" "due"
[1615] "regime's" "discrimination"
[1617] "women" "Even"
[1619] "Tokyo" "Olympics"
[1621] "Russian" "athletes"
[1623] "banned" "competing"
[1625] "2016" "Rio"
[1627] "Olympics" "doping"
[1629] "Kuwait" "also"
[1631] "faced" "similar"
[1633] "ban" "2016"
[1635] "due" "law"
[1637] "country" "abide"
[1639] "Olympic" "Movement's"
[1641] "principles" "Kuwaiti"
[1643] "Olympians" "took"
[1645] "part" "name"
[1647] "Athletes" "Kuwait"
[1649] "Classification" "Language"
[1651] "ENGLISH" "Publication-Type"
[1653] "Newspaper" "Body"
[1655] "New" "Delhi"
[1657] "July" "29"
[1659] "Day" "5"
[1661] "Tokyo" "Olympics"
[1663] "Wednesday" "hot"
[1665] "cold" "affair"
[1667] "Shuttler" "PV"
[1669] "Sindhu" "advanced"
[1671] "Round" "16"
[1673] "another" "comprehensive"
[1675] "win" "women's"
[1677] "hockey" "team"
[1679] "suffered" "third"
[1681] "straight" "defeat"
[1683] "B" "Sai"
[1685] "Praneeth" "eliminated"
[1687] "whereas" "archer"
[1689] "Deepika" "Kumari"
[1691] "sailed" "pre-quarters"
[1693] "women" "individual"
[1695] "event" "Taking"
[1697] "part" "first"
[1699] "Olympics" "boxer"
[1701] "Pooja" "Rani"
[1703] "moved" "quarterfinals"
[1705] "one" "win"
[1707] "away" "guaranteed"
[1709] "bronze" "joining"
[1711] "Lovlina" "Borgohain"
[1713] "won" "round"
[1715] "16" "match"
[1717] "day" "ago"
[1719] "Day" "6"
[1721] "promises" "engaging"
[1723] "shooters" "boxers"
[1725] "archers" "shuttlers"
[1727] "men's" "hockey"
[1729] "team" "set"
[1731] "action" "India's"
[1733] "schedule" "Day"
[1735] "5" "Tokyo"
[1737] "Olympics" "GOLF"
[1739] "Anirban" "Lahiri"
[1741] "Udayan" "Mane"
[1743] "Men's" "Round"
[1745] "1" "4"
[1747] "00" "IST"
[1749] "ROWING" "Arjun"
[1751] "Lal" "Jat"
[1753] "Arvind" "Singh"
[1755] "Men's" "Lightweight"
[1757] "Double" "Sculls"
[1759] "Final" "B"
[1761] "5" "20"
[1763] "IST" "SHOOTING"
[1765] "Manu" "Bhaker"
[1767] "Rahi" "Sarnobat"
[1769] "25m" "Pistol"
[1771] "Women's" "Qualification"
[1773] "Precision" "5"
[1775] "30" "IST"
[1777] "HOCKEY" "Men's"
[1779] "Match" "India"
[1781] "vs" "Argentina"
[1783] "6" "00"
[1785] "IST" "BADMINTON"
[1787] "PV" "Sindhu"
[1789] "vs" "Mia"
[1791] "Blichfeldt" "Women's"
[1793] "Singles" "Round"
[1795] "16" "6"
[1797] "15" "IST"
[1799] "ARCHERY" "Atanu"
[1801] "Das" "vs"
[1803] "Yu-Cheng" "Deng"
[1805] "Men's" "Individual"
[1807] "1" "32"
[1809] "Eliminations" "7"
[1811] "31" "IST"
[1813] "SAILING" "Vishnu"
[1815] "Saravanan" "Laser"
[1817] "Men" "Race"
[1819] "7" "8"
[1821] "8" "35"
[1823] "IST" "Ganapathy"
[1825] "Kelapanda" "Varun"
[1827] "Thakkar" "Men"
[1829] "Race" "5"
[1831] "6" "8"
[1833] "35" "IST"
[1835] "Nethra" "Kumanan"
[1837] "Laser" "Radial"
[1839] "Women" "Race"
[1841] "7" "8"
[1843] "8" "45"
[1845] "IST" "BOXING"
[1847] "Satish" "Kumar"
[1849] "vs" "Ricardo"
[1851] "Brown" "Men's"
[1853] "Super" "Heavyweight"
[1855] "+" "91kg"
[1857] "Round" "16"
[1859] "8" "48"
[1861] "IST" "Mary"
[1863] "Kom" "vs"
[1865] "Ingrit" "Valencia"
[1867] "Women's" "Flyweight"
[1869] "48-51kg" "Round"
[1871] "16" "3"
[1873] "36" "PM"
[1875] "IST" "SWIMMING"
[1877] "Sajan" "Prakash"
[1879] "Men's" "100m"
[1881] "Butterfly" "Heat"
[1883] "2" "4"
[1885] "16" "PM"
[1887] "IST" "Published"
[1889] "HT" "Digital"
[1891] "Content" "Services"
[1893] "permission" "Hindustan"
[1895] "Times" "query"
[1897] "respect" "article"
[1899] "content" "requirement"
[1901] "please" "contact"
[1903] "Editor" "Classification"
[1905] "Language" "ENGLISH"
[1907] "Publication-Type" "Newswire"
[1909] "Body" "World"
[1911] "1" "Nelly"
[1913] "Korda" "Aditi"
[1915] "well" "medals"
[1917] "sewn" "already"
[1919] "given" "uncertain"
[1921] "weather" "India"
[1923] "golfer" "Aditi"
[1925] "Ashok" "sight"
[1927] "Olympics" "medal"
[1929] "carded" "three-under"
[1931] "68" "total"
[1933] "12-under" "201"
[1935] "three" "shots"
[1937] "behind" "world"
[1939] "1" "Nelly"
[1941] "Korda" "shot"
[1943] "two-under" "69"
[1945] "total" "12-under"
[1947] "198" "Nelly"
[1949] "daughter" "former"
[1951] "tennis" "star"
[1953] "Petr" "Korda"
[1955] "Aditi" "well"
[1957] "medals" "sewn"
[1959] "already" "given"
[1961] "uncertain" "weather"
[1963] "threat" "tropical"
[1965] "storm" "brewing"
[1967] "Japan" "organisers"
[1969] "brought" "tee"
[1971] "times" "forward"
[1973] "Saturday" "morning"
[1975] "hope" "completing"
[1977] "final" "round"
[1979] "Aditi" "tees"
[1981] "4.48am" "IST"
[1983] "round" "completed"
[1985] "tournament" "revert"
[1987] "54-hole" "results"
[1989] "means" "23-year-old"
[1991] "Bangalore" "give"
[1993] "India" "third"
[1995] "silver" "medal"
[1997] "Games" "Aditi"
[1999] "thinking" "podium"
[2001] "finish" "think"
[2003] "one" "day"
[2005] "golf" "lot"
[2007] "happens" "final"
[2009] "day" "Although"
[2011] "just" "one"
[2013] "round" "feels"
[2015] "long" "mentally"
[2017] "definitely" "staying"
[2019] "patient" "hoping"
[2021] "good" "weather"
[2023] "hope" "play"
[2025] "good" "quoted"
[2027] "saying" "International"
[2029] "Golf" "Federation"
[2031] "Aditi's" "mother"
[2033] "Maheswari" "caddying"
[2035] "Saitama" "golf"
[2037] "played" "Aditi"
[2039] "aware" "exploits"
[2041] "till" "Friday"
[2043] "generated" "lot"
[2045] "interest" "India"
[2047] "think" "nobody"
[2049] "really" "follows"
[2051] "golf" "much"
[2053] "Whenever" "Olympics"
[2055] "come" "around"
[2057] "interest" "always"
[2059] "lot" "sports"
[2061] "actually" "really"
[2063] "good" "like"
[2065] "hockey" "used"
[2067] "win" "gold"
[2069] "medals" "time"
[2071] "think" "golf"
[2073] "included" "second"
[2075] "time" "people"
[2077] "lot" "educated"
[2079] "trying" "follow"
[2081] "lot" "said"
[2083] "sure" "pressure"
[2085] "thinking" "much"
[2087] "think" "matter"
[2089] "week" "people"
[2091] "heard" "golf"
[2093] "continue" "tune"
[2095] "top" "three"
[2097] "think" "good"
[2099] "Unlike" "previous"
[2101] "two" "rounds"
[2103] "Aditi's" "putting"
[2105] "perfect" "Friday"
[2107] "three" "birdies"
[2109] "fourth" "sixth"
[2111] "seventh" "holes"
[2113] "two" "bogeys"
[2115] "ninth" "11th"
[2117] "pegged" "back"
[2119] "recovered" "well"
[2121] "two" "birdies"
[2123] "15th" "17th"
[2125] "Aditi" "physically"
[2127] "strong" "focus"
[2129] "always" "short"
[2131] "game" "Inside"
[2133] "100" "yards"
[2135] "real" "champ"
[2137] "childhood" "coach"
[2139] "Tarun" "Sardesai"
[2141] "told" "Telegraph"
[2143] "Bangalore" "Aditi"
[2145] "till" "14"
[2147] "Karnataka" "Golf"
[2149] "Association" "even"
[2151] "nascent" "age"
[2153] "Aditi" "showed"
[2155] "amazing" "talent"
[2157] "Sardesai" "added"
[2159] "top" "form"
[2161] "now" "hope"
[2163] "brings" "medal"
[2165] "seen" "Rio"
[2167] "Olympic" "Games"
[2169] "18" "looked"
[2171] "calm" "focused"
[2173] "Olympian" "SSP"
[2175] "Chowrasia" "said"
[2177] "St" "Andrews"
[2179] "Scotland" "participating"
[2181] "Hero" "Open"
[2183] "Aditi" "regular"
[2185] "face" "Ladies"
[2187] "Professional" "Golf"
[2189] "Association" "Tour"
[2191] "Ladies" "European"
[2193] "Tour" "said"
[2195] "yet" "recover"
[2197] "fully" "contracting"
[2199] "coronavirus" "May"
[2201] "Classification" "Language"
[2203] "ENGLISH" "Publication-Type"
[2205] "Newspaper" "Body"
[2207] "New" "Delhi"
[2209] "Aug" "1"
[2211] "Day" "8"
[2213] "Tokyo" "Olympics"
[2215] "great" "particular"
[2217] "India" "top"
[2219] "guns" "failed"
[2221] "make" "mark"
[2223] "Boxers" "Pooja"
[2225] "Rani" "Amit"
[2227] "Panghal" "faced"
[2229] "eliminations" "Atanu"
[2231] "Das" "bowled"
[2233] "Games" "well"
[2235] "India" "shuttler"
[2237] "PV" "Sindhu's"
[2239] "hopes" "repeating"
[2241] "silver-medal" "finish"
[2243] "five" "years"
[2245] "ago" "Rio"
[2247] "let" "alone"
[2249] "better" "dashed"
[2251] "lost" "straight"
[2253] "games" "World"
[2255] "1" "Tai"
[2257] "Tzu-Ying" "comparison"
[2259] "first" "eight"
[2261] "days" "Day"
[2263] "9" "slightly"
[2265] "less" "engaging"
[2267] "India" "limited"
[2269] "events" "lined"
[2271] "Sunday" "two"
[2273] "hold" "lot"
[2275] "significance" "Sindhu"
[2277] "still" "chance"
[2279] "ensuring" "podium"
[2281] "finish" "final"
[2283] "game" "Tokyo"
[2285] "Games" "history"
[2287] "awaits" "Indian"
[2289] "men's" "hockey"
[2291] "team" "India's"
[2293] "schedule" "Day"
[2295] "9" "Tokyo"
[2297] "Olympics" "timings"
[2299] "IST" "GOLF"
[2301] "Udayan" "Mane"
[2303] "Men's" "Individual"
[2305] "Stroke" "Play"
[2307] "Round" "4"
[2309] "4" "11"
[2311] "Anirban" "Lahiri"
[2313] "Men's" "Individual"
[2315] "Stroke" "Play"
[2317] "Round" "4"
[2319] "5" "55"
[2321] "EQUESTRIAN" "Fouaad"
[2323] "Mirza" "Eventing"
[2325] "Cross" "Country"
[2327] "Team" "Individual"
[2329] "4" "15"
[2331] "BOXING" "Satish"
[2333] "Kumar" "vs"
[2335] "Bakhodir" "Jalolov"
[2337] "Men's" "Super-Heavyweight"
[2339] "+" "91kg"
[2341] "Quarterfinal" "9"
[2343] "36" "BADMINTON"
[2345] "PV" "Sindhu"
[2347] "vs" "Bing"
[2349] "Jiao" "Women's"
[2351] "Singles" "Bronze"
[2353] "Medal" "match"
[2355] "5" "00"
[2357] "PM" "HOCKEY"
[2359] "India" "vs"
[2361] "Great" "Britain"
[2363] "Men's" "Quarter-final"
[2365] "5" "30"
[2367] "PM" "Published"
[2369] "HT" "Digital"
[2371] "Content" "Services"
[2373] "permission" "Hindustan"
[2375] "Times" "query"
[2377] "respect" "article"
[2379] "content" "requirement"
[2381] "please" "contact"
[2383] "Editor" "Classification"
[2385] "Language" "ENGLISH"
[2387] "Publication-Type" "Newswire"
[2389] "Body" "India"
[2391] "Aug" "5"
[2393] "India's" "41-year-long"
[2395] "wait" "Olympic"
[2397] "medal" "hockey"
[2399] "came" "end"
[2401] "Thursday" "men's"
[2403] "hockey" "team"
[2405] "beat" "Germany"
[2407] "5-4" "take"
[2409] "bronze" "medal"
[2411] "Tokyo" "Olympics"
[2413] "India's" "first"
[2415] "podium" "finish"
[2417] "Olympics" "hockey"
[2419] "gold-medal-winning" "run"
[2421] "1980" "Moscow"
[2423] "Olympics" "India's"
[2425] "third" "bronze"
[2427] "12th" "hockey"
[2429] "medal" "overall"
[2431] "Games" "list"
[2433] "podium" "finishes"
[2435] "hockey" "India"
[2437] "achieved" "far"
[2439] "quadrennial" "showpiece"
[2441] "country" "successful"
[2443] "team" "Olympics"
[2445] "1928" "Amsterdam"
[2447] "Olympics" "GOLD"
[2449] "India" "won"
[2451] "first" "medal"
[2453] "Olympic" "hockey"
[2455] "beating" "Netherlands"
[2457] "3-0" "finals"
[2459] "1928" "Amsterdam"
[2461] "Olympics" "also"
[2463] "India's" "first"
[2465] "gold" "medal"
[2467] "ever" "Olympics"
[2469] "1932" "Los"
[2471] "Angeles" "GOLD"
[2473] "India" "defended"
[2475] "title" "four"
[2477] "years" "later"
[2479] "Los" "Angeles"
[2481] "bagged" "consecutive"
[2483] "gold" "medals"
[2485] "Olympics" "Los"
[2487] "Angeles" "Olympics"
[2489] "1932" "India"
[2491] "defeated" "USA"
[2493] "24-1" "continuous"
[2495] "biggest" "margin"
[2497] "victory" "history"
[2499] "Olympics" "hockey"
[2501] "1936" "Berlin"
[2503] "GOLD" "Dhyan"
[2505] "Chand-led" "Indian"
[2507] "side" "completed"
[2509] "hat-trick" "golds"
[2511] "Olympics" "beating"
[2513] "Germany" "8-1"
[2515] "biggest" "margin"
[2517] "Olympics" "hockey"
[2519] "finals" "front"
[2521] "home" "crowd"
[2523] "Berlin" "1936"
[2525] "1948" "London"
[2527] "GOLD" "India"
[2529] "continued" "domination"
[2531] "Games" "despite"
[2533] "1940" "1944"
[2535] "getting" "cancelled"
[2537] "due" "second"
[2539] "World" "War"
[2541] "India's" "first"
[2543] "medal" "Olympics"
[2545] "independence" "made"
[2547] "sweeter" "fact"
[2549] "beaten" "Great"
[2551] "Britain" "4-0"
[2553] "finals" "1952"
[2555] "Helsinki" "GOLD"
[2557] "Balbir" "Singh"
[2559] "Sr" "scored"
[2561] "five" "goals"
[2563] "Olympics" "final"
[2565] "Netherlands" "India"
[2567] "won" "fifth"
[2569] "straight" "gold"
[2571] "medal" "mega"
[2573] "event" "1956"
[2575] "Melbourne" "GOLD"
[2577] "marked" "beginning"
[2579] "arch-rivals" "India"
[2581] "beat" "neighbours"
[2583] "Pakistan" "1-0"
[2585] "finals" "Melbourne"
[2587] "1960" "Rome"
[2589] "SILVER" "0-1"
[2591] "loss" "Pakistan"
[2593] "ended" "India's"
[2595] "six" "straight"
[2597] "Olympic" "gold-winning"
[2599] "run" "Rome"
[2601] "Olympics" "1960"
[2603] "Indian" "men's"
[2605] "hockey" "team"
[2607] "satisfied" "silver"
[2609] "1964" "Tokyo"
[2611] "GOLD" "India"
[2613] "came" "back"
[2615] "strongly" "next"
[2617] "Olympics" "held"
[2619] "Tokyo" "beat"
[2621] "Pakistan" "finals"
[2623] "bag" "seventh"
[2625] "gold" "Olympics"
[2627] "1968" "Mexico"
[2629] "City" "BRONZE"
[2631] "first" "time"
[2633] "Indian" "team"
[2635] "failed" "make"
[2637] "finals" "Olympic"
[2639] "beaten" "Australia"
[2641] "semi-final" "settled"
[2643] "bronze" "beating"
[2645] "West" "Germany"
[2647] "1972" "Munich"
[2649] "BRONZE" "India"
[2651] "failed" "make"
[2653] "finals" "Olympics"
[2655] "beaten" "Pakistan"
[2657] "semifinals" "India"
[2659] "beat" "Netherlands"
[2661] "claim" "second"
[2663] "bronze" "1980"
[2665] "Moscow" "GOLD"
[2667] "Olympic" "Games"
[2669] "played" "format"
[2671] "semi-finals" "India"
[2673] "beat" "Spain"
[2675] "finals" "claim"
[2677] "8th" "gold"
[2679] "medal" "Olympics"
[2681] "2021" "Tokyo"
[2683] "BRONZE" "India"
[2685] "beat" "Germany"
[2687] "5-4" "bag"
[2689] "12th" "medal"
[2691] "Olympics" "bronze"
[2693] "41" "years"
[2695] "Published" "HT"
[2697] "Digital" "Content"
[2699] "Services" "permission"
[2701] "Hindustan" "Times"
[2703] "query" "respect"
[2705] "article" "content"
[2707] "requirement" "please"
[2709] "contact" "Editor"
[2711] "Classification" "Language"
[2713] "ENGLISH" "Publication-Type"
[2715] "Newswire" "Body"
[2717] "India" "Aug"
[2719] "7" "Board"
[2721] "Control" "Cricket"
[2723] "India" "BCCI"
[2725] "Saturday" "decided"
[2727] "celebrate" "India's"
[2729] "successful" "ever"
[2731] "campaign" "Olympics"
[2733] "announcing" "cash"
[2735] "rewards" "medal"
[2737] "winners" "Tokyo"
[2739] "Games" "tweet"
[2741] "BCCI" "secretary"
[2743] "Jay" "Shah"
[2745] "also" "announced"
[2747] "Neeraj" "Chopra"
[2749] "India's" "first-ever"
[2751] "gold" "medal"
[2753] "winner" "athletics"
[2755] "won" "gold"
[2757] "men's" "javelin"
[2759] "throw" "event"
[2761] "get" "Rs"
[2763] "1" "crore"
[2765] "board" "Rs"
[2767] "50" "lakh"
[2769] "given" "silver"
[2771] "medallists" "weightlifter"
[2773] "Mirabai" "Chanu"
[2775] "wrestler" "Ravi"
[2777] "Kumar" "Dahiya"
[2779] "athletes" "made"
[2781] "country" "proud"
[2783] "finishing" "podium"
[2785] "@Tokyo2020" "@BCCI"
[2787] "acknowledges" "stellar"
[2789] "efforts" "delighted"
[2791] "announce" "cash"
[2793] "prizes" "medallists"
[2795] "Jay" "Shah"
[2797] "tweeted" "Mirabai"
[2799] "Chanu" "won"
[2801] "India's" "first"
[2803] "weightlifting" "medal"
[2805] "Games" "Ravi"
[2807] "Dahiya" "became"
[2809] "second" "wrestler"
[2811] "country" "win"
[2813] "silver" "Sushil"
[2815] "Kumar" "2012"
[2817] "bronze" "medallists"
[2819] "wrestler" "Bajrang"
[2821] "Punia" "boxer"
[2823] "Lovlina" "Borgohain"
[2825] "shuttler" "P"
[2827] "V" "Sindhu"
[2829] "get" "Rs"
[2831] "25" "lakh"
[2833] "Sindhu" "became"
[2835] "first" "Indian"
[2837] "woman" "second"
[2839] "athlete" "overall"
[2841] "win" "two"
[2843] "Olympic" "medals"
[2845] "won" "silver"
[2847] "five" "years"
[2849] "ago" "Rio"
[2851] "Olympics" "men's"
[2853] "hockey" "team"
[2855] "won" "first"
[2857] "Olympic" "medal"
[2859] "41" "years"
[2861] "get" "Rs"
[2863] "1.25" "crore"
[2865] "India" "beat"
[2867] "Germany" "5-4"
[2869] "win" "third"
[2871] "bronze" "medal"
[2873] "take" "overall"
[2875] "medal" "tally"
[2877] "Olympics" "12"
[2879] "India" "finished"
[2881] "Tokyo" "2020"
[2883] "seven" "medals"
[2885] "making" "successful"
[2887] "campaign" "Games"
[2889] "India" "bettered"
[2891] "tally" "six"
[2893] "medals" "London"
[2895] "Olympics" "2012"
[2897] "Published" "HT"
[2899] "Digital" "Content"
[2901] "Services" "permission"
[2903] "Hindustan" "Times"
[2905] "query" "respect"
[2907] "article" "content"
[2909] "requirement" "please"
[2911] "contact" "Editor"
[2913] "Classification" "Language"
[2915] "ENGLISH" "Publication-Type"
[2917] "Newswire" "Body"
[2919] "Lovlina" "Borgohain"
[2921] "created" "history"
[2923] "winning" "bronze"
[2925] "medal" "debut"
[2927] "Olympic" "Games"
[2929] "23-year-old" "Assam"
[2931] "lost" "69kg"
[2933] "women's" "boxing"
[2935] "semifinal" "bout"
[2937] "world" "champion"
[2939] "Busenaz" "Surmeneli"
[2941] "Turkey" "Tokyo"
[2943] "Olympics" "August"
[2945] "4" "Bollywood"
[2947] "celebrities" "took"
[2949] "social" "media"
[2951] "congratulate" "Lovlina"
[2953] "BOLLYWOOD" "CONGRATULATES"
[2955] "LOVLINA" "BORGOHAIN"
[2957] "OLYMPICS" "WIN"
[2959] "Vijender" "Singh"
[2961] "MC" "Mary"
[2963] "Kom" "Celebrities"
[2965] "lauded" "historic"
[2967] "win" "social"
[2969] "media" "Kareena"
[2971] "Kapoor" "took"
[2973] "Instagram" "congratulate"
[2975] "Lovlina" "Ali"
[2977] "Bhatt" "also"
[2979] "congratulated" "boxer"
[2981] "bringing" "home"
[2983] "bronze" "Sharing"
[2985] "photo" "Lovlina"
[2987] "Abhishek" "Bachchan"
[2989] "wrote" "Congratulations"
[2991] "@LovlinaBorgohai" "bringing"
[2993] "home" "bronze"
[2995] "debut" "Olympics"
[2997] "proud" "#TokyoOlympics"
[2999] "@WeAreTeamIndia" "sic"
[3001] "Varun" "Dhawan"
[3003] "lauded" "Lovlina"
[3005] "wrote" "packed"
[3007] "quite" "punch"
[3009] "Many" "congratulations"
[3011] "Lovlina" "Borgohain"
[3013] "winning" "bronze"
[3015] "sic" "Mira"
[3017] "Rajput" "hailed"
[3019] "Lovlina" "wrote"
[3021] "time" "teach"
[3023] "boys" "fight"
[3025] "like" "girls"
[3027] "Check" "celebrities"
[3029] "congratulated" "Lovlina"
[3031] "Borgohain" "historic"
[3033] "bronze" "medal"
[3035] "win" "Tokyo"
[3037] "Olympics" "Super"
[3039] "achievement" "whole"
[3041] "country" "proud"
[3043] "bringing" "bronze"
[3045] "Randeep" "Hooda"
[3047] "@RandeepHooda" "Lovlina"
[3049] "Borgohain" "third"
[3051] "Indian" "win"
[3053] "medal" "Tokyo"
[3055] "Games" "weightlifter"
[3057] "Mirabai" "Chanu"
[3059] "badminton" "player"
[3061] "PV" "Sindhu"
[3063] "Lovlina" "won"
[3065] "two" "bronze"
[3067] "medals" "World"
[3069] "championships" "Asian"
[3071] "Championships" "earlier"
[3073] "ALSO" "READ"
[3075] "|" "ALSO"
[3077] "READ" "|"
[3079] "Graphic" "Kareena"
[3081] "Kapoor" "Alia"
[3083] "Bhatt" "celebs"
[3085] "laud" "Lovlina"
[3087] "Borgohain" "bronze"
[3089] "win" "Olympics"
[3091] "Classification" "Language"
[3093] "ENGLISH" "Publication-Type"
[3095] "Web" "Publication"
[3097] "Body" "ongoing"
[3099] "budget" "session"
[3101] "Assam" "Assembly"
[3103] "adjourned" "thirty"
[3105] "minutes" "Wednesday"
[3107] "semi-final" "match"
[3109] "boxer" "Lovlina"
[3111] "Borgohain" "Tokyo"
[3113] "Olympics" "Special"
[3115] "arrangements" "made"
[3117] "inside" "Assam"
[3119] "Assembly" "premises"
[3121] "watch" "semi-final"
[3123] "match" "Assamese"
[3125] "pugilist" "Tokyo"
[3127] "Olympics" "comprehensive"
[3129] "0-5" "loss"
[3131] "reigning" "world"
[3133] "champion" "Busenaz"
[3135] "Surmeneli" "July"
[3137] "30" "Lovlina"
[3139] "Borgohain" "won"
[3141] "quarter-finals" "match"
[3143] "welterweight" "category"
[3145] "women's" "boxing"
[3147] "Tokyo" "Olympics"
[3149] "beating" "Chen"
[3151] "Nien-Chin" "Chinese"
[3153] "Taipei" "final"
[3155] "score" "4-1"
[3157] "third" "Indian"
[3159] "boxer" "Mary"
[3161] "Kom" "Vijender"
[3163] "Singh" "win"
[3165] "boxing" "medal"
[3167] "India" "Olympics"
[3169] "ALSO" "READ"
[3171] "Assam" "Chief"
[3173] "Minister" "Dr"
[3175] "Himanta" "Biswa"
[3177] "Sarma" "congratulated"
[3179] "Lovlina" "Borgohain"
[3181] "outstanding" "performance"
[3183] "Tokyo" "Olympics"
[3185] "said" "name"
[3187] "etched" "golden"
[3189] "letters" "history"
[3191] "Assam" "Taking"
[3193] "Twitter" "said"
[3195] "Congratulations" "Assam's"
[3197] "daughter" "@LovlinaBorgohai"
[3199] "bringing" "home"
[3201] "bronze" "medal"
[3203] "#Olympics" "boxing"
[3205] "name" "etched"
[3207] "golden" "letters"
[3209] "history" "Assam"
[3211] "entire" "nation"
[3213] "proud" "phenomenal"
[3215] "achievement" "Congratulations"
[3217] "Assam's" "daughter"
[3219] "bringing" "home"
[3221] "bronze" "medal"
[3223] "boxing" "name"
[3225] "etched" "golden"
[3227] "letters" "history"
[3229] "Assam" "entire"
[3231] "nation" "proud"
[3233] "phenomenal" "achievement"
[3235] "Himanta" "Biswa"
[3237] "Sarma" "@himantabiswa"
[3239] "Assam" "minister"
[3241] "Ashok" "Singhal"
[3243] "said" "great"
[3245] "moment" "Assam"
[3247] "entire" "country"
[3249] "played" "well"
[3251] "debutant" "bright"
[3253] "future" "said"
[3255] "Ashok" "Singhal"
[3257] "ALSO" "READ"
[3259] "Graphic" "Assam"
[3261] "Assembly" "adjourned"
[3263] "30" "minutes"
[3265] "Lovlina's" "semi-final"
[3267] "match" "Tokyo"
[3269] "Olympics" "Classification"
[3271] "Language" "ENGLISH"
[3273] "Publication-Type" "Web"
[3275] "Publication" "Body"
[3277] "India" "Aug"
[3279] "8" "Tokyo"
[3281] "Olympics" "2020"
[3283] "closing" "ceremony"
[3285] "Live" "Streaming"
[3287] "India" "registered"
[3289] "best-ever" "campaign"
[3291] "Tokyo" "Games"
[3293] "seven" "medals"
[3295] "total" "Neeraj"
[3297] "Chopra" "emerged"
[3299] "star" "athlete"
[3301] "India" "winning"
[3303] "gold" "medal"
[3305] "men's" "javelin"
[3307] "throw" "Saturday"
[3309] "Now" "Sunday"
[3311] "Tokyo" "Olympics"
[3313] "come" "close"
[3315] "larger" "focus"
[3317] "closing" "ceremony"
[3319] "Wrestler" "Bajrang"
[3321] "Punia" "won"
[3323] "bronze" "medal"
[3325] "men's" "freestyle"
[3327] "65kg" "wrestling"
[3329] "event" "flag-bearer"
[3331] "India" "closing"
[3333] "ceremony" "need"
[3335] "know" "Tokyo"
[3337] "2020" "Olympics"
[3339] "closing" "ceremony"
[3341] "closing" "ceremony"
[3343] "Tokyo" "Olympics"
[3345] "take" "place"
[3347] "closing" "ceremony"
[3349] "Tokyo" "Olympics"
[3351] "take" "place"
[3353] "National" "Stadium"
[3355] "Tokyo" "time"
[3357] "closing" "ceremony"
[3359] "Tokyo" "Olympics"
[3361] "begin" "closing"
[3363] "ceremony" "Tokyo"
[3365] "Olympics" "begin"
[3367] "4" "30"
[3369] "pm" "Indian"
[3371] "Standard" "Time"
[3373] "Sunday" "August"
[3375] "8th" "watch"
[3377] "live" "coverage"
[3379] "closing" "ceremony"
[3381] "Tokyo" "Olympics"
[3383] "closing" "ceremony"
[3385] "Tokyo" "Olympics"
[3387] "aired" "live"
[3389] "Sony" "Sports"
[3391] "Network" "watch"
[3393] "closing" "ceremony"
[3395] "Tokyo" "Olympics"
[3397] "online" "mobile"
[3399] "closing" "ceremony"
[3401] "Tokyo" "Olympics"
[3403] "available" "SonyLiv"
[3405] "can" "also"
[3407] "catch" "live"
[3409] "commentary" "latest"
[3411] "updates" "closing"
[3413] "ceremony" "Tokyo"
[3415] "Olympics" "Published"
[3417] "HT" "Digital"
[3419] "Content" "Services"
[3421] "permission" "Hindustan"
[3423] "Times" "query"
[3425] "respect" "article"
[3427] "content" "requirement"
[3429] "please" "contact"
[3431] "Editor" "Classification"
[3433] "Language" "ENGLISH"
[3435] "Publication-Type" "Newswire"
[3437] "Body" "Mirabai"
[3439] "Chanu" "won"
[3441] "silver" "medal"
[3443] "ongoing" "Tokyo"
[3445] "Olympics" "games"
[3447] "expressed" "joy"
[3449] "Prime" "Minister"
[3451] "Narendra" "Modi"
[3453] "invited" "Olympics"
[3455] "contingent" "residence"
[3457] "personal" "meeting"
[3459] "interaction" "matter"
[3461] "great" "joy"
[3463] "honoured" "PM"
[3465] "invited" "us"
[3467] "big" "day"
[3469] "get" "chance"
[3471] "meet" "PM"
[3473] "dinner" "residence"
[3475] "big" "day"
[3477] "Chanu" "said"
[3479] "15th" "August"
[3481] "India" "celebrates"
[3483] "Independence" "Day"
[3485] "Prime" "Minister"
[3487] "Narendra" "Modi"
[3489] "invite" "entire"
[3491] "Olympics" "contingent"
[3493] "Red" "Fort"
[3495] "special" "guests"
[3497] "Aside" "programme"
[3499] "also" "inviting"
[3501] "residence" "personal"
[3503] "meeting" "interaction"
[3505] "time" "highest"
[3507] "number" "players"
[3509] "India" "qualified"
[3511] "Olympics" "Remember"
[3513] "done" "battling"
[3515] "biggest" "disaster"
[3517] "100" "years"
[3519] "many" "games"
[3521] "qualified" "first"
[3523] "time" "qualified"
[3525] "also" "giving"
[3527] "tough" "competition"
[3529] "zeal" "passion"
[3531] "spirit" "Indian"
[3533] "players" "highest"
[3535] "level" "Modi"
[3537] "said" "virtual"
[3539] "address" "earlier"
[3541] "today" "India"
[3543] "represented" "228-strong"
[3545] "contingent" "including"
[3547] "120" "athletes"
[3549] "ongoing" "Tokyo"
[3551] "Olympics" "last"
[3553] "days" "delayed"
[3555] "Games" "began"
[3557] "Prime" "Minister"
[3559] "followed" "events"
[3561] "alongside" "much"
[3563] "nation" "Early"
[3565] "Tuesday" "morning"
[3567] "example" "taken"
[3569] "Twitter" "cheering"
[3571] "Indian" "men's"
[3573] "hockey" "team"
[3575] "took" "Belgium"
[3577] "semifinal" "match"
[3579] "Classification" "Language"
[3581] "ENGLISH" "Publication-Type"
[3583] "Newspaper" "Body"
[3585] "CHANDIGARH" "ROHTAK"
[3587] "Aug" "7"
[3589] "Haryana" "CM"
[3591] "Manohar" "Lal"
[3593] "Khattar" "announced"
[3595] "Rs" "50"
[3597] "lakh" "cash"
[3599] "award" "every"
[3601] "sportsperson" "state"
[3603] "getting" "fourth"
[3605] "position" "Olympics"
[3607] "Till" "now"
[3609] "provision" "state's"
[3611] "sports" "policy"
[3613] "players" "CM"
[3615] "said" "provision"
[3617] "give" "incentive"
[3619] "money" "players"
[3621] "unable" "win"
[3623] "medals" "games"
[3625] "per" "provision"
[3627] "player" "participating"
[3629] "Olympics" "given"
[3631] "incentive" "amount"
[3633] "Rs" "15"
[3635] "lakh" "said"
[3637] "amount" "Rs"
[3639] "5" "lakh"
[3641] "already" "given"
[3643] "players" "prior"
[3645] "Olympics" "now"
[3647] "rest" "amount"
[3649] "Rs" "10"
[3651] "lakh" "given"
[3653] "players" "return"
[3655] "Khattar" "said"
[3657] "per" "sports"
[3659] "policy" "Rs"
[3661] "6" "crore"
[3663] "given" "player"
[3665] "wins" "gold"
[3667] "medal" "Olympics"
[3669] "Rs" "4"
[3671] "crore" "winning"
[3673] "silver" "Rs"
[3675] "2.5" "crore"
[3677] "bronze" "Now"
[3679] "onwards" "cash"
[3681] "reward" "Rs"
[3683] "50" "lakh"
[3685] "given" "player"
[3687] "state" "finishing"
[3689] "fourth" "Olympics"
[3691] "Khattar" "said"
[3693] "said" "nine"
[3695] "players" "women's"
[3697] "hockey" "team"
[3699] "hail" "Haryana"
[3701] "given" "cash"
[3703] "reward" "Rs"
[3705] "50" "lakh"
[3707] "Khattar" "welcomes"
[3709] "move" "rename"
[3711] "Khel" "Ratna"
[3713] "Award" "Haryana"
[3715] "CM" "welcomed"
[3717] "central" "government's"
[3719] "move" "rename"
[3721] "Rajiv" "Gandhi"
[3723] "Khel" "Ratna"
[3725] "Award" "hockey"
[3727] "legend" "Major"
[3729] "Dhyanchand" "Khattar"
[3731] "said" "Union"
[3733] "government" "taken"
[3735] "good" "decision"
[3737] "renaming" "Rajiv"
[3739] "Gandhi" "Khel"
[3741] "Ratna" "Award"
[3743] "hockey" "legend"
[3745] "Sports" "awards"
[3747] "named" "players"
[3749] "Congress" "criticise"
[3751] "move" "added"
[3753] "Published" "HT"
[3755] "Digital" "Content"
[3757] "Services" "permission"
[3759] "Hindustan" "Times"
[3761] "query" "respect"
[3763] "article" "content"
[3765] "requirement" "please"
[3767] "contact" "Editor"
[3769] "Classification" "Language"
[3771] "ENGLISH" "Publication-Type"
[3773] "Newswire" "Body"
[3775] "New" "Delhi"
[3777] "July" "31"
[3779] "India's" "quest"
[3781] "another" "medal"
[3783] "continue" "Day"
[3785] "8" "Tokyo"
[3787] "Olympics" "ace"
[3789] "shuttler" "reigning"
[3791] "world" "champion"
[3793] "PV" "Sindhu"
[3795] "takes" "Tai"
[3797] "Tzu-Ying" "women's"
[3799] "singles" "semi-final"
[3801] "Saturday" "Boxer"
[3803] "Amit" "Panghal"
[3805] "open" "account"
[3807] "men's" "flyweight"
[3809] "category" "whereas"
[3811] "Pooja" "Rani"
[3813] "one" "win"
[3815] "away" "assuring"
[3817] "second" "medal"
[3819] "boxing" "India"
[3821] "Tokyo" "2020"
[3823] "Games" "Shooters"
[3825] "Tejaswini" "Sawant"
[3827] "Anjum" "Moudgil"
[3829] "feature" "50m"
[3831] "Rifle" "3"
[3833] "Positions" "India"
[3835] "women's" "hockey"
[3837] "team" "return"
[3839] "field" "hoping"
[3841] "strengthen" "chances"
[3843] "entering" "quarterfinals"
[3845] "India's" "schedule"
[3847] "Day" "8"
[3849] "Tokyo" "Olympics"
[3851] "timings" "IST"
[3853] "GOLF" "Anirban"
[3855] "Lahiri" "Men's"
[3857] "Individual" "Stroke"
[3859] "Play" "Round"
[3861] "2" "4"
[3863] "15" "Anirban"
[3865] "Lahiri" "Udayan"
[3867] "Mane" "Men's"
[3869] "Individual" "Stroke"
[3871] "Play" "Round"
[3873] "3" "6"
[3875] "00" "ATHLETICS"
[3877] "Seema" "Punia"
[3879] "Women's" "Discus"
[3881] "Throw" "Qualification"
[3883] "Group" "6"
[3885] "00" "Kamalpreet"
[3887] "Kaur" "Women's"
[3889] "Discus" "Throw"
[3891] "Qualification" "Group"
[3893] "B" "7"
[3895] "25" "Sreeshankar"
[3897] "Men's" "Long"
[3899] "Jump" "Qualification"
[3901] "Group" "B"
[3903] "3" "40"
[3905] "PM" "ARCHERY"
[3907] "Atanu" "Das"
[3909] "Men's" "Individual"
[3911] "1" "8"
[3913] "Eliminations" "7"
[3915] "18" "BOXING"
[3917] "Amit" "Panghal"
[3919] "vs" "Yuberjen"
[3921] "Herney" "Martinez"
[3923] "Rivas" "Men's"
[3925] "Flyweight" "48-52kg"
[3927] "7" "30"
[3929] "Pooja" "Rani"
[3931] "vs" "Qian"
[3933] "Li" "Women's"
[3935] "Middleweight" "Quarterfinal"
[3937] "3" "36"
[3939] "PM" "SHOOTING"
[3941] "Tejaswini" "Sawant"
[3943] "Anjum" "Moudgil"
[3945] "50m" "Rifle"
[3947] "3" "Positions"
[3949] "Women's" "Qualification"
[3951] "8" "30"
[3953] "50m" "Rifle"
[3955] "3" "Positions"
[3957] "Women's" "Final"
[3959] "Subject" "qualification"
[3961] "12" "30"
[3963] "PM" "SAILING"
[3965] "Ganapathy" "Kelapanda"
[3967] "Varun" "Thakkar"
[3969] "Race" "10"
[3971] "8" "35"
[3973] "HOCKEY" "India"
[3975] "vs" "South"
[3977] "Africa" "Women's"
[3979] "Pool" "8"
[3981] "45" "BADMINTON"
[3983] "PV" "Sindhu"
[3985] "vs" "Tai"
[3987] "Tzu-Ying" "Women's"
[3989] "Singles" "Semi-final"
[3991] "3" "20"
[3993] "PM" "Published"
[3995] "HT" "Digital"
[3997] "Content" "Services"
[3999] "permission" "Hindustan"
[4001] "Times" "query"
[4003] "respect" "article"
[4005] "content" "requirement"
[4007] "please" "contact"
[4009] "Editor" "Classification"
[4011] "Language" "ENGLISH"
[4013] "Publication-Type" "Newswire"
[4015] "Body" "India"
[4017] "Aug" "4"
[4019] "India" "vs"
[4021] "Argentina" "Women's"
[4023] "Hockey" "Semifinal"
[4025] "Match" "Live"
[4027] "Streaming" "Tokyo"
[4029] "Olympics" "Winning"
[4031] "Australians" "set"
[4033] "momentum" "India"
[4035] "women's" "hockey"
[4037] "team" "reach"
[4039] "final" "Tokyo"
[4041] "Olympics" "in-form"
[4043] "Argentina" "team"
[4045] "eager" "make"
[4047] "final" "well"
[4049] "tough" "challenge"
[4051] "store" "India"
[4053] "need" "know"
[4055] "India" "vs"
[4057] "Argentina" "women's"
[4059] "hockey" "semifinal"
[4061] "match" "live"
[4063] "streaming" "Tokyo"
[4065] "Olympics" "2020"
[4067] "India" "vs"
[4069] "Argentina" "women's"
[4071] "hockey" "semifinal"
[4073] "match" "Tokyo"
[4075] "Olympics" "2020"
[4077] "take" "place"
[4079] "India" "vs"
[4081] "Argentina" "women's"
[4083] "hockey" "semifinal"
[4085] "match" "Tokyo"
[4087] "Olympics" "2020"
[4089] "take" "place"
[4091] "Oi" "Hockey"
[4093] "Stadium" "North"
[4095] "Pitch" "Tokyo"
[4097] "Japan" "time"
[4099] "India" "vs"
[4101] "Argentina" "women's"
[4103] "hockey" "semifinal"
[4105] "match" "Tokyo"
[4107] "Olympics" "2020"
[4109] "begin" "India"
[4111] "vs" "Argentina"
[4113] "women's" "hockey"
[4115] "semifinal" "match"
[4117] "Tokyo" "Olympics"
[4119] "2020" "begin"
[4121] "03" "30"
[4123] "PM" "IST"
[4125] "Wednesday" "August"
[4127] "4th" "watch"
[4129] "live" "coverage"
[4131] "India" "vs"
[4133] "Argentina" "women's"
[4135] "hockey" "semifinal"
[4137] "match" "Tokyo"
[4139] "Olympics" "2020"
[4141] "India" "vs"
[4143] "Argentina" "women's"
[4145] "hockey" "semifinal"
[4147] "match" "Tokyo"
[4149] "Olympics" "2020"
[4151] "aired" "live"
[4153] "Sony" "Sports"
[4155] "Network" "watch"
[4157] "India" "vs"
[4159] "Argentina" "women's"
[4161] "hockey" "semifinal"
[4163] "match" "Tokyo"
[4165] "Olympics" "2020"
[4167] "online" "mobile"
[4169] "online" "streaming"
[4171] "India" "vs"
[4173] "Argentina" "women's"
[4175] "hockey" "semifinal"
[4177] "match" "Tokyo"
[4179] "Olympics" "2020"
[4181] "available" "SonyLiv"
[4183] "can" "also"
[4185] "catch" "live"
[4187] "commentary" "scorecard"
[4189] "latest" "updates"
[4191] "India" "vs"
[4193] "Argentina" "women's"
[4195] "hockey" "semifinal"
[4197] "match" "Tokyo"
[4199] "Olympics" "2020"
[4201] "Published" "HT"
[4203] "Digital" "Content"
[4205] "Services" "permission"
[4207] "Hindustan" "Times"
[4209] "query" "respect"
[4211] "article" "content"
[4213] "requirement" "please"
[4215] "contact" "Editor"
[4217] "Classification" "Language"
[4219] "ENGLISH" "Publication-Type"
[4221] "Newswire" "Body"
[4223] "August" "1"
[4225] "Indian" "men's"
[4227] "hockey" "team"
[4229] "defeated" "Great"
[4231] "Britain" "secure"
[4233] "place" "last"
[4235] "four" "Tokyo"
[4237] "Olympics" "2020"
[4239] "performance" "Manpreet"
[4241] "Singh" "men"
[4243] "taken" "social"
[4245] "media" "storm"
[4247] "Several" "congratulated"
[4249] "Indian" "hockey"
[4251] "team" "claimed"
[4253] "Chakde" "India"
[4255] "Finally" "41"
[4257] "years" "team"
[4259] "India" "reaches"
[4261] "semis" "Olympics"
[4263] "One" "greatest"
[4265] "moments" "indeed"
[4267] "#Tokyo2020" "#india"
[4269] "#Olympics" "Embed"
[4271] "plugins" "video.php"
[4273] "height" "="
[4275] "314" "href"
[4277] "=" "https"
[4279] "3A" "2F"
[4281] "2Fwww" "facebook.com"
[4283] "2FMondalhimadri14" "2Fvideos"
[4285] "2F224036536273782" "2F"
[4287] "show_" "text"
[4289] "=" "false"
[4291] "width" "="
[4293] "560" "t"
[4295] "=" "0"
[4297] "width" "="
[4299] "560" "height"
[4301] "=" "314"
[4303] "style" "="
[4305] "border:none" "overflow"
[4307] "hidden" "scrolling"
[4309] "=" "frameborder"
[4311] "=" "0"
[4313] "allowfullscreen" "="
[4315] "true" "allow"
[4317] "=" "autoplay"
[4319] "clipboard-write" "encrypted-media"
[4321] "picture-in-picture" "web-share"
[4323] "allowFullScreen" "="
[4325] "true" ">"
[4327] "iframe" ">"
[4329] "India" "Today"
[4331] "Anti" "Fake"
[4333] "News" "War"
[4335] "Room" "AFWA"
[4337] "found" "claim"
[4339] "misleading" "1980"
[4341] "Moscow" "Olympics"
[4343] "India" "won"
[4345] "gold" "medal"
[4347] "play" "quarter"
[4349] "final" "semifinal"
[4351] "tournament" "qualified"
[4353] "finals" "directly"
[4355] "group" "stage"
[4357] "1972" "Munich"
[4359] "Olympics" "India"
[4361] "lost" "semifinal"
[4363] "Pakistan" "Posts"
[4365] "similar" "claims"
[4367] "saved" "India's"
[4369] "golden" "run"
[4371] "Several" "claim"
[4373] "Indian" "hockey"
[4375] "team" "compete"
[4377] "Olympic" "semifinal"
[4379] "49" "years"
[4381] "means" "claiming"
[4383] "India" "played"
[4385] "semifinal" "1980"
[4387] "Moscow" "Olympics"
[4389] "others" "claiming"
[4391] "India" "entered"
[4393] "Olympics" "semifinal"
[4395] "last" "time"
[4397] "1972" "Munich"
[4399] "games" "first"
[4401] "conducted" "keyword"
[4403] "search" "find"
[4405] "reports" "Indian"
[4407] "men's" "hockey"
[4409] "team" "1980"
[4411] "Moscow" "Olympics"
[4413] "July" "17"
[4415] "2012" "published"
[4417] "article" "gives"
[4419] "insight" "Indian"
[4421] "team's" "performance"
[4423] "Olympics" "article"
[4425] "says" "protesting"
[4427] "several" "nations"
[4429] "decided" "boycott"
[4431] "games" "men's"
[4433] "hockey" "tournament"
[4435] "got" "reduced"
[4437] "just" "six"
[4439] "teams" "India"
[4441] "played" "six"
[4443] "matches" "tournament"
[4445] "five" "group"
[4447] "stage" "final"
[4449] "Just" "Tokyo"
[4451] "Olympics" "Hockey"
[4453] "India" "published"
[4455] "series" "articles"
[4457] "website" "series"
[4459] "carried" "interviews"
[4461] "former" "Indian"
[4463] "players" "shared"
[4465] "experiences" "different"
[4467] "Olympics" "MM"
[4469] "Somaya" "member"
[4471] "1980" "Olympics"
[4473] "squad" "quoted"
[4475] "saying" "end"
[4477] "play" "final"
[4479] "Pool" "match"
[4481] "Soviet" "Union"
[4483] "win" "qualify"
[4485] "Final" "1972"
[4487] "1980" "Olympics"
[4489] "India" "went"
[4491] "play" "1976"
[4493] "Olympics" "Montreal"
[4495] "hockey" "tournament"
[4497] "confirm" "claim"
[4499] "got" "touch"
[4501] "MM" "Somaya"
[4503] "tournament" "1980"
[4505] "format" "different"
[4507] "reached" "final"
[4509] "directly" "Round"
[4511] "Robin" "league"
[4513] "However" "last"
[4515] "time" "India"
[4517] "won" "Olympic"
[4519] "medal" "hockey"
[4521] "said" "Confirming"
[4523] "development" "Hockey"
[4525] "India" "president"
[4527] "Gyanendro" "Ningombam"
[4529] "told" "AFWA"
[4531] "Yes" "confusion"
[4533] "needs" "clarified"
[4535] "1980" "quarter"
[4537] "final" "semifinal"
[4539] "first" "two"
[4541] "teams" "league"
[4543] "table" "directly"
[4545] "played" "final"
[4547] "India" "played"
[4549] "semifinal" "1972"
[4551] "technically" "say"
[4553] "India" "play"
[4555] "Olympic" "semifinal"
[4557] "49" "years"
[4559] "Therefore" "can"
[4561] "conclude" "Indian"
[4563] "men's" "hockey"
[4565] "team" "reached"
[4567] "Olympics" "semifinal"
[4569] "Tokyo" "49"
[4571] "years" "Graphic"
[4573] "Fact" "Check"
[4575] "people" "think"
[4577] "India" "reached"
[4579] "Olympics" "men's"
[4581] "hockey" "semis"
[4583] "41" "years"
[4585] "Classification" "Language"
[4587] "ENGLISH" "Publication-Type"
[4589] "Web" "Publication"
[4591] "Body" "magnificent"
[4593] "throw" "87.58"
[4595] "metres" "Tokyo"
[4597] "Olympics" "2020"
[4599] "Neeraj" "Chopra"
[4601] "made" "history"
[4603] "becoming" "first"
[4605] "Indian" "win"
[4607] "Gold" "medal"
[4609] "Javelin" "throw"
[4611] "Olympic" "Games"
[4613] "Putting" "end"
[4615] "country's" "121-year"
[4617] "wait" "athletics"
[4619] "medal" "Neeraj"
[4621] "Chopra" "won"
[4623] "India's" "first"
[4625] "Olympic" "medal"
[4627] "track" "field"
[4629] "events" "joins"
[4631] "Abhinav" "Bindra"
[4633] "won" "Gold"
[4635] "2008" "Olympics"
[4637] "Subedar" "Neeraj"
[4639] "Chopra" "23-year-old"
[4641] "soldier" "Panipat"
[4643] "Haryana" "born"
[4645] "December" "24"
[4647] "1997" "farming"
[4649] "family" "small"
[4651] "village" "Khandar"
[4653] "father" "Satish"
[4655] "Kumar" "farmer"
[4657] "mother" "Saroj"
[4659] "Devi" "housewife"
[4661] "raised" "alongside"
[4663] "two" "sisters"
[4665] "Neeraj" "took"
[4667] "javelin" "throw"
[4669] "lose" "weight"
[4671] "obese" "quickly"
[4673] "became" "enamoured"
[4675] "sport" "rest"
[4677] "history" "15"
[4679] "May" "2016"
[4681] "Sub" "Neeraj"
[4683] "enlisted" "4"
[4685] "Rajputana" "Rifles"
[4687] "Direct" "Entry"
[4689] "Naib" "Subedar"
[4691] "joining" "Indian"
[4693] "Army" "selected"
[4695] "training" "Mission"
[4697] "Olympics" "Wing"
[4699] "Army" "Sports"
[4701] "Institute" "Pune"
[4703] "Indian" "Army's"
[4705] "Mission" "Olympics"
[4707] "Wing" "endeavour"
[4709] "identify" "train"
[4711] "excellent" "athletes"
[4713] "eleven" "specific"
[4715] "disciplines" "five"
[4717] "Mission" "Olympics"
[4719] "Nodes" "Mission"
[4721] "Olympics" "Wing"
[4723] "strives" "assist"
[4725] "selected" "athletes"
[4727] "excel" "various"
[4729] "national" "international"
[4731] "competitions" "Mission"
[4733] "Olympics" "Wing"
[4735] "provided" "nation"
[4737] "two" "Olympic"
[4739] "silver" "medals"
[4741] "shooting" "committed"
[4743] "providing" "many"
[4745] "Sub" "Neeraj"
[4747] "Chopra's" "medal"
[4749] "recognises" "Mission"
[4751] "Olympics" "Wing's"
[4753] "hard" "work"
[4755] "dedication" "Neeraj"
[4757] "Chopra" "rose"
[4759] "fame" "setting"
[4761] "new" "Junior"
[4763] "World" "Record"
[4765] "86.48m" "throw"
[4767] "World" "Athletics"
[4769] "U20" "Championships"
[4771] "Poland" "won"
[4773] "Asian" "Championship"
[4775] "2017" "Bhubaneswar"
[4777] "throw" "85.23"
[4779] "metres" "Neeraj"
[4781] "began" "training"
[4783] "Germany's" "legendary"
[4785] "Uwe" "Hohn"
[4787] "proceeded" "win"
[4789] "gold" "Commonwealth"
[4791] "Games" "2018"
[4793] "throw" "86.47m"
[4795] "well" "personal"
[4797] "best" "87.43m"
[4799] "Diamond" "League's"
[4801] "Doha" "leg"
[4803] "won" "Asian"
[4805] "Games" "throw"
[4807] "88.06m" "also"
[4809] "received" "Arjuna"
[4811] "Award" "2018"
[4813] "VSM" "2020"
[4815] "athletic" "endeavours"
[4817] "Read" "|"
[4819] "Read" "|"
[4821] "Graphic" "Subedar"
[4823] "Gold" "medalist"
[4825] "Neeraj" "Chopra's"
[4827] "journey" "Indian"
[4829] "Army's" "Mission"
[4831] "Olympics" "Wing"
[4833] "Classification" "Language"
[4835] "ENGLISH" "Publication-Type"
[4837] "Web" "Publication"
[4839] "Body" "India"
[4841] "July" "30"
[4843] "India" "fancy"
[4845] "chances" "medal"
[4847] "finish" "gear"
[4849] "Day" "7"
[4851] "Tokyo" "Olympics"
[4853] "eyes" "archer"
[4855] "Deepika" "Kumari"
[4857] "shuttler" "PV"
[4859] "Sindhu" "boxer"
[4861] "Lovlina" "Borgohain"
[4863] "take" "step"
[4865] "closer" "ensuring"
[4867] "medals" "India"
[4869] "also" "finally"
[4871] "time" "Indian"
[4873] "athletics" "make"
[4875] "presence" "felt"
[4877] "Olympic" "Games"
[4879] "Sprinter" "Dutee"
[4881] "Chand" "action"
[4883] "likes" "Avinash"
[4885] "Sable" "MP"
[4887] "Jabir" "Hockey"
[4889] "returns" "men's"
[4891] "women's" "team"
[4893] "face" "quality"
[4895] "opponents" "India's"
[4897] "schedule" "Day"
[4899] "7" "Tokyo"
[4901] "Olympics" "Archery"
[4903] "Deepika" "Kumari"
[4905] "vs" "Ksenia"
[4907] "Perova" "Russian"
[4909] "Olympic" "Committee"
[4911] "Women's" "Individual"
[4913] "Pre-quarterfinals" "Match"
[4915] "6" "00am"
[4917] "IST" "Athletics"
[4919] "Avinash" "Sable"
[4921] "Men's" "3000m"
[4923] "Steeplechase" "Round"
[4925] "1" "Heat"
[4927] "2" "6"
[4929] "17am" "IST"
[4931] "M" "P"
[4933] "Jabir" "Men's"
[4935] "400m" "Hurdles"
[4937] "Round" "1"
[4939] "Heat" "5"
[4941] "8" "27am"
[4943] "IST" "Dutee"
[4945] "Chand" "Women's"
[4947] "100m" "Round"
[4949] "1" "Heats"
[4951] "8" "45am"
[4953] "IST" "Start"
[4955] "Mixed" "4x400m"
[4957] "Relay" "Race"
[4959] "Round" "1"
[4961] "Heat" "2"
[4963] "4" "42pm"
[4965] "IST" "Badminton"
[4967] "P" "V"
[4969] "Sindhu" "vs"
[4971] "Akane" "Yamaguchi"
[4973] "Japan" "Women's"
[4975] "Singles" "Quarterfinal"
[4977] "Match" "1"
[4979] "15pm" "IST"
[4981] "Boxing" "Simranjit"
[4983] "Kaur" "vs"
[4985] "Sudaporn" "Seesondee"
[4987] "Thailand" "Women's"
[4989] "60kg" "Round"
[4991] "16" "Bout"
[4993] "8" "18am"
[4995] "IST" "Lovlina"
[4997] "Borgohain" "vs"
[4999] "Nien-Chin" "Chen"
[5001] "Chinese" "Taipei"
[5003] "Women's" "69kg"
[5005] "Quarterfinal" "Bout"
[5007] "8" "48am"
[5009] "IST" "Equestrian"
[5011] "Fouaad" "Mirza"
[5013] "Eventing" "Dressage"
[5015] "Day" "1"
[5017] "Session" "2"
[5019] "Starts" "2pm"
[5021] "IST" "Golf"
[5023] "Anirban" "Lahiri"
[5025] "Udayan" "Mane"
[5027] "Men's" "Individual"
[5029] "Stroke" "Play"
[5031] "Round" "2"
[5033] "04" "00am"
[5035] "IST" "Hockey"
[5037] "India" "vs"
[5039] "Ireland" "Women's"
[5041] "Pool" "Match"
[5043] "8" "15am"
[5045] "IST" "India"
[5047] "vs" "Japan"
[5049] "Men's" "Pool"
[5051] "match" "3"
[5053] "00pm" "IST"
[5055] "Sailing" "KC"
[5057] "Ganapathy" "Varun"
[5059] "Thakkar" "Men's"
[5061] "Skiff" "49er"
[5063] "Race" "7"
[5065] "8" "9"
[5067] "8" "35am"
[5069] "IST" "Nethra"
[5071] "Kumanan" "Women's"
[5073] "Laser" "Radial"
[5075] "Race" "9"
[5077] "10" "8"
[5079] "35am" "IST"
[5081] "Vishnu" "Saravanan"
[5083] "Men's" "Laser"
[5085] "Race" "9"
[5087] "10" "11"
[5089] "05am" "IST"
[5091] "Shooting" "Manu"
[5093] "Bhaker" "Rahi"
[5095] "Sarnobat" "Women's"
[5097] "25m" "Pistol"
[5099] "Qualification" "Rapid"
[5101] "5" "30am"
[5103] "IST" "Published"
[5105] "HT" "Digital"
[5107] "Content" "Services"
[5109] "permission" "Hindustan"
[5111] "Times" "query"
[5113] "respect" "article"
[5115] "content" "requirement"
[5117] "please" "contact"
[5119] "Editor" "Classification"
[5121] "Language" "ENGLISH"
[5123] "Publication-Type" "Newswire"
[5125] "Body" "India"
[5127] "Aug" "4"
[5129] "India's" "Lovlina"
[5131] "Borgohain" "Wednesday"
[5133] "went" "semi-final"
[5135] "women's" "welterweight"
[5137] "64-69kg" "category"
[5139] "Turkey's" "Busenaz"
[5141] "Surmeneli" "settle"
[5143] "bronze" "medal"
[5145] "India's" "third"
[5147] "medal" "ongoing"
[5149] "Tokyo" "Olympics"
[5151] "Looking" "script"
[5153] "history" "becoming"
[5155] "first-ever" "boxer"
[5157] "country" "enter"
[5159] "Olympic" "final"
[5161] "pugilist" "Assam"
[5163] "match" "front"
[5165] "reigning" "world"
[5167] "champion" "division"
[5169] "lost" "three"
[5171] "rounds" "unanimous"
[5173] "decision" "five"
[5175] "judges" "going"
[5177] "favour" "Turkish"
[5179] "boxer" "Tokyo"
[5181] "Olympics" "Day"
[5183] "12" "Live"
[5185] "Updates" "Borgohain"
[5187] "might" "gone"
[5189] "become" "third"
[5191] "Indian" "boxer"
[5193] "win" "medal"
[5195] "Olympics" "Six-time"
[5197] "world" "champion"
[5199] "Mary" "Kom"
[5201] "clinched" "bronze"
[5203] "2012" "London"
[5205] "Olympics" "Vijender"
[5207] "Singh" "bagged"
[5209] "bronze" "Beijing"
[5211] "2008" "Competing"
[5213] "Welter" "64-69kg"
[5215] "event" "bronze"
[5217] "medalist" "2017"
[5219] "2021" "Asian"
[5221] "Championships" "defeated"
[5223] "Nadine" "Apetz"
[5225] "3-2" "round"
[5227] "16" "bout"
[5229] "Three" "days"
[5231] "later" "quarterfinal"
[5233] "outpunched" "Chinese"
[5235] "Taipei's" "Chen"
[5237] "Nien-Chin" "4-1"
[5239] "storm" "semifinals"
[5241] "ensure" "India"
[5243] "another" "medal"
[5245] "Tokyo" "2020"
[5247] "Lovlina" "first-ever"
[5249] "woman" "Assam"
[5251] "take" "part"
[5253] "Olympics" "battled"
[5255] "wretched" "Covid-19"
[5257] "October" "2020"
[5259] "just" "hours"
[5261] "board" "flight"
[5263] "Italy" "along"
[5265] "Indian" "contingent"
[5267] "training-cum-competition" "trip"
[5269] "forced" "isolation"
[5271] "despite" "facing"
[5273] "hardships" "boxer"
[5275] "bring" "home"
[5277] "Olympic" "medal"
[5279] "Interestingly" "23-year-old"
[5281] "won" "bronze"
[5283] "medal" "2018"
[5285] "2019" "World"
[5287] "Championships" "originally"
[5289] "started" "career"
[5291] "Muay" "Thai"
[5293] "practitioner" "met"
[5295] "first" "coach"
[5297] "Padum" "Boro"
[5299] "life" "took"
[5301] "definite" "turn"
[5303] "Boro" "worked"
[5305] "Sports" "Authority"
[5307] "India's" "Shillong"
[5309] "Dimapur" "centers"
[5311] "introduced" "boxing"
[5313] "since" "looking"
[5315] "back" "Lovlina"
[5317] "Published" "HT"
[5319] "Digital" "Content"
[5321] "Services" "permission"
[5323] "Hindustan" "Times"
[5325] "query" "respect"
[5327] "article" "content"
[5329] "requirement" "please"
[5331] "contact" "Editor"
[5333] "Classification" "Language"
[5335] "ENGLISH" "Publication-Type"
[5337] "Newswire" "Body"
[5339] "India" "Aug"
[5341] "5" "India"
[5343] "men's" "hockey"
[5345] "team" "defeated"
[5347] "Germany" "win"
[5349] "bronze" "medal"
[5351] "Tokyo" "Olympics"
[5353] "Thursday" "India's"
[5355] "first" "Olympic"
[5357] "medal" "hockey"
[5359] "since" "won"
[5361] "gold" "medal"
[5363] "1980" "Olympics"
[5365] "Moscow" "India's"
[5367] "fourth-medal" "fifth"
[5369] "confirmed" "Tokyo"
[5371] "far" "weightlifter"
[5373] "Mirabai" "Chanu"
[5375] "won" "silver"
[5377] "48kg" "category"
[5379] "boxer" "Lovlina"
[5381] "Borgohain" "won"
[5383] "bronze" "medal"
[5385] "women's" "welterweight"
[5387] "category" "shuttler"
[5389] "PV" "Sindhu"
[5391] "won" "bronze"
[5393] "medal" "women's"
[5395] "singles" "competition"
[5397] "Tokyo" "Olympics"
[5399] "Live" "Updates"
[5401] "Day" "13"
[5403] "India" "saw"
[5405] "Germany" "take"
[5407] "early" "lead"
[5409] "Timur" "Oruz"
[5411] "scoring" "within"
[5413] "two" "minutes"
[5415] "match" "Germany"
[5417] "troubled" "Indian"
[5419] "defense" "first"
[5421] "quarter" "find"
[5423] "way" "extend"
[5425] "lead" "2nd"
[5427] "quarter" "India"
[5429] "saw" "Simranjeet"
[5431] "Singh" "scoring"
[5433] "well-executed" "tomahawk"
[5435] "shot" "defensive"
[5437] "errors" "lead"
[5439] "Germany" "scoring"
[5441] "two" "goals"
[5443] "within" "two"
[5445] "minutes" "Just"
[5447] "looked" "India"
[5449] "might" "trouble"
[5451] "two" "penalty"
[5453] "corners" "India"
[5455] "yielded" "results"
[5457] "Hardik" "Singh"
[5459] "scored" "rebound"
[5461] "first" "one"
[5463] "Harmanpreet" "Singh"
[5465] "scored" "another"
[5467] "superb" "dragflick"
[5469] "onto" "back"
[5471] "nets" "level"
[5473] "scores" "3-3"
[5475] "halftime" "third"
[5477] "quarter" "tide"
[5479] "completely" "shifted"
[5481] "India's" "favour"
[5483] "Rupinder" "Pal"
[5485] "Singh" "converted"
[5487] "penalty" "stroke"
[5489] "Hardik" "Singh"
[5491] "tripped" "inside"
[5493] "scoring" "circle"
[5495] "Minutes" "later"
[5497] "Simranjeet" "Singh"
[5499] "scored" "open"
[5501] "play" "Gurjant"
[5503] "Singh" "dribbled"
[5505] "past" "German"
[5507] "defence" "right"
[5509] "pushed" "ball"
[5511] "front" "goal"
[5513] "Simranjeet" "made"
[5515] "mistake" "struck"
[5517] "cleanly" "extend"
[5519] "India's" "lead"
[5521] "Lukas" "Windfeder"
[5523] "pulled" "one"
[5525] "back" "final"
[5527] "quarter" "enough"
[5529] "Germany" "push"
[5531] "shootouts" "Germany"
[5533] "received" "penalty"
[5535] "corner" "dying"
[5537] "seconds" "match"
[5539] "Indai" "goalkeeper"
[5541] "PR" "Sreejesh"
[5543] "made" "fantastic"
[5545] "save" "Manpreet"
[5547] "Singh" "co"
[5549] "scripted" "history"
[5551] "Tokyo" "good"
[5553] "journey" "India"
[5555] "men's" "hockey"
[5557] "team" "Tokyo"
[5559] "Olympics" "defeating"
[5561] "New" "Zealand"
[5563] "3-2" "opening"
[5565] "group" "game"
[5567] "picking" "wins"
[5569] "Germany" "2-0"
[5571] "Spain" "3-1"
[5573] "Argentina" "3-1"
[5575] "Japan" "5-3"
[5577] "group" "matches"
[5579] "Barring" "7-1"
[5581] "defeat" "Australia"
[5583] "5-2" "loss"
[5585] "semifinal" "World"
[5587] "Champions" "Belgium"
[5589] "India" "won"
[5591] "games" "Tokyo"
[5593] "Published" "HT"
[5595] "Digital" "Content"
[5597] "Services" "permission"
[5599] "Hindustan" "Times"
[5601] "query" "respect"
[5603] "article" "content"
[5605] "requirement" "please"
[5607] "contact" "Editor"
[5609] "Classification" "Language"
[5611] "ENGLISH" "Publication-Type"
[5613] "Newswire" "Body"
[5615] "Dairy" "brand"
[5617] "Amul" "congratulated"
[5619] "golden" "boy"
[5621] "Neeraj" "Chopra"
[5623] "animated" "doodle"
[5625] "won" "gold"
[5627] "medal" "Tokyo"
[5629] "Olympics" "2020"
[5631] "23-year-old" "Haryana's"
[5633] "Panipat" "won"
[5635] "Men's" "Javelin"
[5637] "Gold" "medal"
[5639] "doodle" "shared"
[5641] "Amul" "features"
[5643] "animated" "sketch"
[5645] "Neeraj" "Chopra"
[5647] "holding" "javelin"
[5649] "one" "hand"
[5651] "gold" "medal"
[5653] "can" "seen"
[5655] "showing" "medal"
[5657] "Amul" "girl"
[5659] "saluting" "#Amul"
[5661] "Topical" "India"
[5663] "wins" "first-ever"
[5665] "track" "field"
[5667] "gold" "medal"
[5669] "sic" "Amul"
[5671] "shared" "animated"
[5673] "doodle" "caption"
[5675] "Neeraj" "thrown"
[5677] "reads" "text"
[5679] "graphic" "post"
[5681] "went" "crazy"
[5683] "viral" "thousands"
[5685] "likes" "Netizens"
[5687] "took" "comments"
[5689] "section" "laud"
[5691] "Neeraj" "Chopra"
[5693] "congratulate" "Neeraj"
[5695] "Chopra" "became"
[5697] "second" "Indian"
[5699] "Abhinav" "Bindra"
[5701] "win" "individual"
[5703] "Olympic" "Gold"
[5705] "medal" "Neeraj"
[5707] "ended" "India's"
[5709] "121-year" "wait"
[5711] "athletics" "medal"
[5713] "gold" "javelin"
[5715] "final" "23-year-old"
[5717] "athlete" "dedicated"
[5719] "gold" "medal"
[5721] "Milkha" "Singh"
[5723] "ALSO" "READ"
[5725] "|" "ALSO"
[5727] "READ" "|"
[5729] "ALSO" "READ"
[5731] "|" "Graphic"
[5733] "Amul" "congratulates"
[5735] "Neeraj" "Chopra"
[5737] "animated" "doodle"
[5739] "athlete's" "gold"
[5741] "win" "Olympics"
[5743] "Classification" "Language"
[5745] "ENGLISH" "Publication-Type"
[5747] "Web" "Publication"
[5749] "Body" "Punjab"
[5751] "Haryana" "just"
[5753] "4.4" "population"
[5755] "together" "sent"
[5757] "50" "athletes"
[5759] "Tokyo" "Olympics"
[5761] "2020" "accounting"
[5763] "40" "Indian"
[5765] "contingent" "Tokyo"
[5767] "Olympics" "2020"
[5769] "remembered" "history"
[5771] "long" "time"
[5773] "many" "reasons"
[5775] "foremost" "first"
[5777] "games" "played"
[5779] "COVID-19" "pandemic"
[5781] "wait" "just"
[5783] "Tokyo" "2020"
[5785] "gave" "India"
[5787] "many" "reasons"
[5789] "smile" "heads"
[5791] "held" "high"
[5793] "pride" "India"
[5795] "yet" "National"
[5797] "Anthem" "moment"
[5799] "several" "occasions"
[5801] "got" "podium"
[5803] "tricolour" "fluttered"
[5805] "pride" "Yes"
[5807] "got" "share"
[5809] "medals" "thanks"
[5811] "the127" "athleteshailing"
[5813] "different" "states"
[5815] "representing" "country"
[5817] "135" "crore"
[5819] "Indians" "pride"
[5821] "athletes" "representing"
[5823] "India" "18"
[5825] "different" "games"
[5827] "played" "Olympics"
[5829] "including" "Archery"
[5831] "Athletics" "Boxing"
[5833] "Badminton" "Equestrian"
[5835] "Fencing" "Golf"
[5837] "Gymnastics" "Hockey"
[5839] "Judo" "Rowing"
[5841] "Shooting" "Sailing"
[5843] "Swimming" "Table"
[5845] "Tennis" "Tennis"
[5847] "Weightlifting" "Wrestling"
[5849] "something" "particularly"
[5851] "striking" "it.Athletes"
[5853] "Haryana" "Punjab"
[5855] "leading" "front"
[5857] "Punjab" "Haryanawith"
[5859] "just" "4.4"
[5861] "India's" "huge"
[5863] "population" "together"
[5865] "sent" "50"
[5867] "athletes" "Tokyo"
[5869] "Olympics" "2020"
[5871] "Games" "accounting"
[5873] "40" "Indian"
[5875] "contingent" "Haryana"
[5877] "31" "athletes"
[5879] "contingent" "nearly"
[5881] "25" "total"
[5883] "Punjab" "19"
[5885] "Tamil" "Nadu"
[5887] "sent" "11"
[5889] "athletes" "Tokyo"
[5891] "8.7" "contingent"
[5893] "followed" "Kerala"
[5895] "Uttar" "Pradesh"
[5897] "8" "athletes"
[5899] "interesting" "part"
[5901] "largest" "state"
[5903] "India" "nearly"
[5905] "17" "India's"
[5907] "total" "population"
[5909] "iscontributing" "just"
[5911] "6.3" "country's"
[5913] "contingent" "atTokyo"
[5915] "2020" "compared"
[5917] "Kerala" "just2.6"
[5919] "country's" "population"
[5921] "alsocontributing" "6.3"
[5923] "country's" "contingent"
[5925] "atTokyo" "2020"
[5927] "equalling" "largest"
[5929] "state" "Uttar"
[5931] "Pradesh.Five" "athletes"
[5933] "Manipur" "also"
[5935] "representing" "India"
[5937] "forget" "wasChanu"
[5939] "Saikhom" "Mirabai"
[5941] "Manipur" "won"
[5943] "first" "silver"
[5945] "medal" "India"
[5947] "set" "momentum"
[5949] "Tokyo" "2020"
[5951] "Haryana" "Wrestling"
[5953] "Association" "also"
[5955] "affiliated" "Olympic"
[5957] "association" "Haryana"
[5959] "Wrestling" "Federation"
[5961] "India" "Haryana"
[5963] "just" "home"
[5965] "number" "individual"
[5967] "Olympic" "medal"
[5969] "winners" "also"
[5971] "sent" "number"
[5973] "participants" "31"
[5975] "athletes" "Tokyo"
[5977] "Olympics" "2020"
[5979] "Tokyo" "Olympics"
[5981] "2020" "began"
[5983] "data" "revealed"
[5985] "till" "last"
[5987] "Olympics" "Indian"
[5989] "individuals" "won"
[5991] "17" "medals"
[5993] "world's" "biggest"
[5995] "game" "played"
[5997] "every" "four"
[5999] "years" "Among"
[6001] "17" "medal"
[6003] "winners" "11"
[6005] "states" "Haryana"
[6007] "accounts" "four"
[6009] "Vijender" "Singh"
[6011] "Saina" "Nehwal"
[6013] "Yogeshwar" "Dutt"
[6015] "Sakshi" "Malik"
[6017] "won" "2008"
[6019] "Olympics" "Haryana"
[6021] "followed" "West"
[6023] "Bengal" "three"
[6025] "Olympic" "medals"
[6027] "Delhi" "two"
[6029] "Olympic" "medals"
[6031] "participants" "least"
[6033] "eight" "states"
[6035] "won" "one"
[6037] "medal" "six"
[6039] "players" "four"
[6041] "hockey" "two"
[6043] "wrestling" "Sonepat"
[6045] "districts" "contributed"
[6047] "number" "Olympians"
[6049] "followed" "Kurukshetra"
[6051] "Jhajjar" "two"
[6053] "panchayats" "Nahri"
[6055] "Nahra" "Sonepat"
[6057] "district" "Haryana"
[6059] "famed" "producing"
[6061] "wrestlers" "almost"
[6063] "every" "village"
[6065] "Sonepat" "village"
[6067] "home" "two"
[6069] "Arjuna" "awardee"
[6071] "wrestlers" "Satveer"
[6073] "Singh" "Mahavir"
[6075] "Singh" "two"
[6077] "Olympians" "Mahavir"
[6079] "Singh" "1980"
[6081] "Moscow" "Amit"
[6083] "Kumar" "Dahiya"
[6085] "2012" "London"
[6087] "18" "Amit"
[6089] "Kumar" "Dahiya"
[6091] "held" "record"
[6093] "youngest" "Indian"
[6095] "wrestler" "competed"
[6097] "2012" "London"
[6099] "Olympics" "year"
[6101] "Tokyo" "freestyle"
[6103] "wrestler" "Ravi"
[6105] "Dahiya" "57kg"
[6107] "Nahri" "village"
[6109] "Haryana" "took"
[6111] "mat" "Tokyo"
[6113] "Olympics" "now"
[6115] "going" "play"
[6117] "finals" "Haryana"
[6119] "nine" "players"
[6121] "part" "women's"
[6123] "hockey" "team"
[6125] "Also" "seven"
[6127] "wrestlers" "contingent"
[6129] "state" "Classification"
[6131] "Language" "ENGLISH"
[6133] "Publication-Type" "Newspaper"
[6135] "Body" "New"
[6137] "Delhi" "Aug"
[6139] "9" "Indian"
[6141] "athletes" "won"
[6143] "laurels" "nation"
[6145] "Tokyo" "Olympics"
[6147] "honoured" "grand"
[6149] "ceremony" "Delhi"
[6151] "Sport" "Minister"
[6153] "Anurag" "Thakur"
[6155] "others" "welcomed"
[6157] "successful" "athletes"
[6159] "felicitated" "Seven"
[6161] "medalists" "namely"
[6163] "Neeraj" "Chopra"
[6165] "Ravi" "Kumar"
[6167] "Dahiya" "Bajrang"
[6169] "Punia" "Lovlina"
[6171] "Borgohain" "men's"
[6173] "national" "hockey"
[6175] "team" "felicitated"
[6177] "ceremony" "Mirabai"
[6179] "Chanu" "PV"
[6181] "Sindhu" "attend"
[6183] "event" "arrived"
[6185] "earlier" "currently"
[6187] "home" "bases"
[6189] "man" "hour"
[6191] "Neeraj" "Chopra"
[6193] "won" "first"
[6195] "gold" "India"
[6197] "athletics" "come"
[6199] "middle-class" "families"
[6201] "support" "families"
[6203] "essential" "Chopra"
[6205] "said" "felicitated"
[6207] "Thakur" "Chopra"
[6209] "won" "solo"
[6211] "gold" "India"
[6213] "Tokyo" "Olympics"
[6215] "weightlifter" "Mirabai"
[6217] "Chanu" "wrestler"
[6219] "Ravi" "Kumar"
[6221] "Dahiya" "bagged"
[6223] "silver" "medals"
[6225] "bronze" "medals"
[6227] "apart" "men's"
[6229] "hockey" "team"
[6231] "claimed" "boxer"
[6233] "Lovlina" "Borgohain"
[6235] "shuttler" "P"
[6237] "V" "Sindhu"
[6239] "wrestler" "Bajrang"
[6241] "Punia" "feels"
[6243] "great" "like"
[6245] "thank" "government"
[6247] "SAI" "IOA"
[6249] "helping" "us"
[6251] "quarantine" "time"
[6253] "gave" "us"
[6255] "support" "said"
[6257] "men's" "hockey"
[6259] "captain" "Manpreet"
[6261] "Singh" "happy"
[6263] "back" "home"
[6265] "knew" "India"
[6267] "happy" "coming"
[6269] "back" "get"
[6271] "love" "first"
[6273] "hand" "feels"
[6275] "really" "nice"
[6277] "try" "best"
[6279] "medals" "Borgohain"
[6281] "said" "tried"
[6283] "give" "best"
[6285] "said" "Punia"
[6287] "fought" "semifinals"
[6289] "without" "protective"
[6291] "gear" "injured"
[6293] "knee" "Among"
[6295] "present" "occasion"
[6297] "felicitate" "medal"
[6299] "winners" "also"
[6301] "included" "Union"
[6303] "Minister" "Law"
[6305] "Justice" "Kiren"
[6307] "Rijiju" "Secretary"
[6309] "Sports" "Ravi"
[6311] "Mittal" "Director-General"
[6313] "Sports" "Authority"
[6315] "India" "Sandip"
[6317] "Pradhan" "Tokyo"
[6319] "2020" "Olympic"
[6321] "Games" "many"
[6323] "firsts" "India"
[6325] "success" "Team"
[6327] "India" "Olympics"
[6329] "reflection" "New"
[6331] "India" "desires"
[6333] "aspires" "dominate"
[6335] "world.even" "sports"
[6337] "Thakur" "said"
[6339] "Olympic" "Games"
[6341] "showed" "us"
[6343] "self-discipline" "dedication"
[6345] "can" "champions"
[6347] "Team" "India"
[6349] "excelled" "inspired"
[6351] "Indians" "cheered"
[6353] "celebrated" "around"
[6355] "Truly" "sports"
[6357] "great" "unifier"
[6359] "athletes" "come"
[6361] "villages" "cities"
[6363] "north" "south"
[6365] "east" "west"
[6367] "journey" "incredible"
[6369] "story" "resilience"
[6371] "sporting" "excellence"
[6373] "added" "Tokyo"
[6375] "Olympics" "marked"
[6377] "many" "firsts"
[6379] "India" "starting"
[6381] "biggest" "ever"
[6383] "contingent" "128"
[6385] "athletes" "seven"
[6387] "Olympic" "medals"
[6389] "one" "gold"
[6391] "two" "silver"
[6393] "four" "bronze"
[6395] "highest" "India"
[6397] "ever" "won"
[6399] "version" "Gamesw"
[6401] "Apart" "first"
[6403] "Olympic" "gold"
[6405] "medal" "athletics"
[6407] "event" "two"
[6409] "successive" "medals"
[6411] "consecutive" "Games"
[6413] "Sindhu" "medal"
[6415] "Indian" "men's"
[6417] "team" "hockey"
[6419] "gap" "41"
[6421] "years" "Also"
[6423] "women's" "hockey"
[6425] "team" "achieved"
[6427] "best" "ever"
[6429] "fourth" "place"
[6431] "finish" "Games"
[6433] "golfer" "Aditi"
[6435] "Ashok" "finished"
[6437] "fourth" "women's"
[6439] "golf" "continue"
[6441] "support" "sports"
[6443] "persons" "endeavour"
[6445] "make" "India"
[6447] "sporting" "powerhouse"
[6449] "Thakur" "said"
[6451] "Thakur's" "predecessor"
[6453] "Rijiju" "praised"
[6455] "performances" "athletes"
[6457] "reiterated" "India"
[6459] "force" "reckon"
[6461] "2028" "Olympics"
[6463] "just" "beginning"
[6465] "India's" "resurgence"
[6467] "sport" "visible"
[6469] "now" "confident"
[6471] "2028" "Olympics"
[6473] "India" "force"
[6475] "reckon" "Rijiju"
[6477] "mentioned" "Published"
[6479] "HT" "Digital"
[6481] "Content" "Services"
[6483] "permission" "MINT"
[6485] "query" "respect"
[6487] "article" "content"
[6489] "requirement" "please"
[6491] "contact" "Editor"
[6493] "Classification" "Language"
[6495] "ENGLISH" "Publication-Type"
[6497] "Newspaper" "Body"
[6499] "India" "Aug"
[6501] "2" "India"
[6503] "vs" "Belgium"
[6505] "Hockey" "Match"
[6507] "Live" "Streaming"
[6509] "Tokyo" "Olympics"
[6511] "Live" "Streaming"
[6513] "stage" "set"
[6515] "enthralling" "encounter"
[6517] "India" "men's"
[6519] "hockey" "team"
[6521] "face" "2018"
[6523] "World" "Champions"
[6525] "Belgium" "semifinal"
[6527] "Tuesday" "India"
[6529] "picked" "solid"
[6531] "win" "Great"
[6533] "Britian" "book"
[6535] "semis" "spot"
[6537] "four" "decades"
[6539] "eager" "cause"
[6541] "upset" "go"
[6543] "past" "World"
[6545] "Champions" "Tokyo"
[6547] "Olympics" "Day"
[6549] "10" "LIVE"
[6551] "need" "know"
[6553] "India" "vs"
[6555] "Belgium" "Hockey"
[6557] "Men's" "Semifinal"
[6559] "Match" "Tokyo"
[6561] "Olympics" "2020"
[6563] "India" "vs"
[6565] "Belgium" "Hockey"
[6567] "Men's" "Semifinal"
[6569] "Match" "Tokyo"
[6571] "Olympics" "2020"
[6573] "take" "place"
[6575] "India" "vs"
[6577] "Belgium" "Hockey"
[6579] "Men's" "Semifinal"
[6581] "Match" "Tokyo"
[6583] "Olympics" "2020"
[6585] "take" "place"
[6587] "Oi" "Hockey"
[6589] "Stadium" "North"
[6591] "Pitch" "Tokyo"
[6593] "Japan" "time"
[6595] "India" "vs"
[6597] "Belgium" "Hockey"
[6599] "Men's" "Semifinal"
[6601] "Match" "Tokyo"
[6603] "Olympics" "2020"
[6605] "begin" "India"
[6607] "vs" "Belgium"
[6609] "Hockey" "Men's"
[6611] "Semifinal" "Match"
[6613] "Tokyo" "Olympics"
[6615] "2020" "begin"
[6617] "07" "00"
[6619] "IST" "Tuesday"
[6621] "August" "3rd"
[6623] "watch" "live"
[6625] "coverage" "India"
[6627] "vs" "Belgium"
[6629] "Hockey" "Men's"
[6631] "Semifinal" "Match"
[6633] "Tokyo" "Olympics"
[6635] "2020" "India"
[6637] "vs" "Belgium"
[6639] "Hockey" "Men's"
[6641] "Semifinal" "Match"
[6643] "Tokyo" "Olympics"
[6645] "2020" "aired"
[6647] "live" "Sony"
[6649] "Sports" "Network"
[6651] "watch" "India"
[6653] "vs" "Belgium"
[6655] "Hockey" "Men's"
[6657] "Semifinal" "Match"
[6659] "Tokyo" "Olympics"
[6661] "2020" "online"
[6663] "mobile" "online"
[6665] "streaming" "India"
[6667] "vs" "Belgium"
[6669] "Hockey" "Men's"
[6671] "Semifinal" "Match"
[6673] "Tokyo" "Olympics"
[6675] "2020" "available"
[6677] "SonyLiv" "can"
[6679] "also" "catch"
[6681] "live" "commentary"
[6683] "scorecard" "latest"
[6685] "updates" "India"
[6687] "vs" "Belgium"
[6689] "Hockey" "Men's"
[6691] "Semifinal" "Match"
[6693] "Tokyo" "Olympics"
[6695] "2020" "Published"
[6697] "HT" "Digital"
[6699] "Content" "Services"
[6701] "permission" "Hindustan"
[6703] "Times" "query"
[6705] "respect" "article"
[6707] "content" "requirement"
[6709] "please" "contact"
[6711] "Editor" "Classification"
[6713] "Language" "ENGLISH"
[6715] "Publication-Type" "Newswire"
[6717] "Body" "India"
[6719] "Aug" "1"
[6721] "Tokyo" "2020"
[6723] "PV" "Sindhu"
[6725] "vs" "Bingjiao"
[6727] "Live" "India"
[6729] "get" "third"
[6731] "medal" "Tokyo"
[6733] "Olympics" "Indian"
[6735] "shuttler" "PV"
[6737] "Sindhu" "takes"
[6739] "China's" "Bingjiao"
[6741] "bronze" "medal"
[6743] "match" "women's"
[6745] "singles" "badminton"
[6747] "Sindhu's" "quest"
[6749] "gold" "ended"
[6751] "Saturday" "lost"
[6753] "semi-final" "match"
[6755] "Chinese" "Taipei's"
[6757] "Tai" "Tzu-Ying"
[6759] "Sindhu" "won"
[6761] "silver" "medal"
[6763] "2016" "Olympics"
[6765] "Rio" "hoping"
[6767] "become" "second"
[6769] "athlete" "India"
[6771] "win" "two"
[6773] "individual" "medal"
[6775] "Olympics" "Tokyo"
[6777] "2020" "Full"
[6779] "Coverage" "need"
[6781] "know" "PV"
[6783] "Sindhu" "vs"
[6785] "Bingjiao" "Tokyo"
[6787] "Olympics" "2020"
[6789] "PV" "Sindhu"
[6791] "vs" "Bingjiao"
[6793] "Tokyo" "Olympics"
[6795] "2020" "take"
[6797] "place" "PV"
[6799] "Sindhu" "vs"
[6801] "Bingjiao" "Tokyo"
[6803] "Olympics" "2020"
[6805] "take" "place"
[6807] "Musashino" "Forest"
[6809] "Sport" "Plaza"
[6811] "BDM" "Court"
[6813] "1" "Tokyo"
[6815] "Olympics" "Village"
[6817] "time" "PV"
[6819] "Sindhu" "vs"
[6821] "Bingjiao" "Badminton"
[6823] "Bronze" "Medal"
[6825] "match" "Tokyo"
[6827] "Olympics" "2020"
[6829] "begin" "Tokyo"
[6831] "2020" "Live"
[6833] "Updates" "Day"
[6835] "9" "PV"
[6837] "Sindhu" "vs"
[6839] "Bingjiao" "Badminton"
[6841] "Bronze" "Medal"
[6843] "match" "Tokyo"
[6845] "Olympics" "2020"
[6847] "begin" "05"
[6849] "00" "PM"
[6851] "IST" "Saturday"
[6853] "August" "1"
[6855] "watch" "live"
[6857] "coverage" "PV"
[6859] "Sindhu" "vs"
[6861] "Bingjiao" "Badminton"
[6863] "Bronze" "Medal"
[6865] "match" "Tokyo"
[6867] "Olympics" "2020"
[6869] "PV" "Sindhu"
[6871] "vs" "Bingjiao"
[6873] "Badminton" "Bronze"
[6875] "Medal" "match"
[6877] "Tokyo" "Olympics"
[6879] "2020" "aired"
[6881] "live" "Sony"
[6883] "Sports" "Network"
[6885] "watch" "PV"
[6887] "Sindhu" "vs"
[6889] "Bingjiao" "Badminton"
[6891] "Bronze" "Medal"
[6893] "match" "Tokyo"
[6895] "Olympics" "2020"
[6897] "online" "mobile"
[6899] "online" "streaming"
[6901] "PV" "Sindhu"
[6903] "vs" "Bingjiao"
[6905] "Badminton" "Bronze"
[6907] "Medal" "match"
[6909] "Tokyo" "Olympics"
[6911] "2020" "available"
[6913] "SonyLiv" "can"
[6915] "also" "catch"
[6917] "live" "commentary"
[6919] "scorecard" "latest"
[6921] "updates" "PV"
[6923] "Sindhu" "vs"
[6925] "Bingjiao" "Badminton"
[6927] "Bronze" "Medal"
[6929] "match" "Tokyo"
[6931] "Olympics" "2020"
[6933] "Published" "HT"
[6935] "Digital" "Content"
[6937] "Services" "permission"
[6939] "Hindustan" "Times"
[6941] "query" "respect"
[6943] "article" "content"
[6945] "requirement" "please"
[6947] "contact" "Editor"
[6949] "Classification" "Language"
[6951] "ENGLISH" "Publication-Type"
[6953] "Newswire" "Body"
[6955] "proceedings" "ongoing"
[6957] "likely" "adjourned"
[6959] "30" "minutes"
[6961] "Wednesday" "semi-final"
[6963] "match" "Lovlina"
[6965] "Borgohain" "world"
[6967] "champion" "Busenaz"
[6969] "Surmeneli" "Turkey"
[6971] "Wednesday" "Assam"
[6973] "Assembly" "likely"
[6975] "adjourn" "half"
[6977] "hour" "Wednesday"
[6979] "11" "11.30"
[6981] "Dr" "Numal"
[6983] "Momin" "deputy"
[6985] "speaker" "Assam"
[6987] "Assembly" "told"
[6989] "India" "Today"
[6991] "phone" "proposal"
[6993] "adjournment" "given"
[6995] "Speaker" "Assam"
[6997] "Assembly" "ALSO"
[6999] "READ" "decision"
[7001] "yet" "finalised"
[7003] "hope" "Speaker"
[7005] "accept" "proposal"
[7007] "Dr" "Numal"
[7009] "Momin" "said"
[7011] "July" "30"
[7013] "match" "welterweight"
[7015] "category" "women's"
[7017] "boxing" "Tokyo"
[7019] "Olympics" "beating"
[7021] "Chen" "Nien-Chin"
[7023] "Chinese" "Taipei"
[7025] "final" "score"
[7027] "4-1" "virtue"
[7029] "place" "semi-final"
[7031] "Lovlina" "Borgohain"
[7033] "already" "assured"
[7035] "India" "least"
[7037] "bronze" "medal"
[7039] "third" "Indian"
[7041] "boxer" "Mary"
[7043] "Kom" "Vijender"
[7045] "Singh" "win"
[7047] "boxing" "medal"
[7049] "India" "Olympics"
[7051] "ALSO" "READ"
[7053] "Graphic" "Assam"
[7055] "Assembly" "likely"
[7057] "adjourned" "30"
[7059] "minutes" "Lovlina's"
[7061] "Olympics" "semifinal"
[7063] "Wednesday" "Classification"
[7065] "Language" "ENGLISH"
[7067] "Publication-Type" "Web"
[7069] "Publication" "Body"
[7071] "India" "Aug"
[7073] "5" "India"
[7075] "vs" "Germany"
[7077] "Hockey" "Match"
[7079] "Live" "Streaming"
[7081] "Tokyo" "Olympics"
[7083] "going" "fighting"
[7085] "current" "world"
[7087] "champions" "Belgium"
[7089] "semi-final" "match"
[7091] "Indian" "men's"
[7093] "hockey" "team"
[7095] "fight" "bronze"
[7097] "medal" "Germany"
[7099] "lost" "semifinal"
[7101] "Australia" "last"
[7103] "time" "India"
[7105] "won" "medal"
[7107] "way" "back"
[7109] "1980" "won"
[7111] "gold" "men's"
[7113] "hockey" "team"
[7115] "now" "chance"
[7117] "get" "back"
[7119] "podium" "four"
[7121] "decades" "need"
[7123] "know" "India"
[7125] "vs" "Germany"
[7127] "Hockey" "Men's"
[7129] "Bronze" "Medal"
[7131] "Match" "Tokyo"
[7133] "Olympics" "2020"
[7135] "India" "vs"
[7137] "Germany" "hockey"
[7139] "men's" "bronze"
[7141] "medal" "match"
[7143] "Tokyo" "Olympics"
[7145] "2020" "take"
[7147] "place" "India"
[7149] "vs" "Germany"
[7151] "hockey" "men's"
[7153] "bronze" "medal"
[7155] "match" "Tokyo"
[7157] "Olympics" "2020"
[7159] "take" "place"
[7161] "Oi" "Hockey"
[7163] "Stadium" "North"
[7165] "Pitch" "Tokyo"
[7167] "Japan" "time"
[7169] "India" "vs"
[7171] "Germany" "hockey"
[7173] "men's" "bronze"
[7175] "medal" "match"
[7177] "Tokyo" "Olympics"
[7179] "2020" "begin"
[7181] "India" "vs"
[7183] "Germany" "hockey"
[7185] "men's" "bronze"
[7187] "medal" "match"
[7189] "Tokyo" "Olympics"
[7191] "2020" "begin"
[7193] "07" "00"
[7195] "IST" "Thursday"
[7197] "August" "5th"
[7199] "watch" "live"
[7201] "coverage" "India"
[7203] "vs" "Germany"
[7205] "hockey" "men's"
[7207] "bronze" "medal"
[7209] "match" "Tokyo"
[7211] "Olympics" "2020"
[7213] "India" "vs"
[7215] "Germany" "hockey"
[7217] "men's" "bronze"
[7219] "medal" "match"
[7221] "Tokyo" "Olympics"
[7223] "2020" "aired"
[7225] "live" "Sony"
[7227] "Sports" "Network"
[7229] "watch" "India"
[7231] "vs" "Germany"
[7233] "hockey" "men's"
[7235] "bronze" "medal"
[7237] "match" "Tokyo"
[7239] "Olympics" "2020"
[7241] "mobile" "online"
[7243] "streaming" "India"
[7245] "vs" "Germany"
[7247] "hockey" "men's"
[7249] "bronze" "medal"
[7251] "match" "Tokyo"
[7253] "Olympics" "2020"
[7255] "available" "SonyLiv"
[7257] "can" "also"
[7259] "catch" "live"
[7261] "commentary" "scorecard"
[7263] "latest" "updates"
[7265] "India" "vs"
[7267] "Germany" "hockey"
[7269] "men's" "bronze"
[7271] "medal" "match"
[7273] "Tokyo" "Olympics"
[7275] "2020" "Published"
[7277] "HT" "Digital"
[7279] "Content" "Services"
[7281] "permission" "Hindustan"
[7283] "Times" "query"
[7285] "respect" "article"
[7287] "content" "requirement"
[7289] "please" "contact"
[7291] "Editor" "Classification"
[7293] "Language" "ENGLISH"
[7295] "Publication-Type" "Newswire"
[7297] "Body" "Amitabh"
[7299] "Bachchan" "avid"
[7301] "social" "media"
[7303] "user" "fond"
[7305] "sharing" "viral"
[7307] "WhatsApp" "messages"
[7309] "fans" "followers"
[7311] "Twitter" "Recently"
[7313] "78-year-old" "actor"
[7315] "shared" "analogy"
[7317] "men" "women's"
[7319] "Indian" "hockey"
[7321] "performance" "Tokyo"
[7323] "Olympics" "tweet"
[7325] "shows" "two"
[7327] "teams" "beat"
[7329] "countries" "one"
[7331] "lost" "main"
[7333] "message" "Indian"
[7335] "men's" "hockey"
[7337] "team" "beat"
[7339] "teams" "beat"
[7341] "Indian" "women's"
[7343] "hockey" "team"
[7345] "vice" "versa"
[7347] "BIG" "B'S"
[7349] "TWEET" "SUMMARISES"
[7351] "INDIAN" "HOCKEY"
[7353] "TEAMS" "PERFORMANCE"
[7355] "TOKYO" "OLYMPICS"
[7357] "men's" "hockey"
[7359] "Olympics" "2020"
[7361] "Indian" "team"
[7363] "won" "bronze"
[7365] "medal" "Germany"
[7367] "Indian" "women's"
[7369] "hockey" "team"
[7371] "gave" "tough"
[7373] "fight" "Britain"
[7375] "bronze" "play-off"
[7377] "among" "others"
[7379] "Whatsapp" "message"
[7381] "going" "viral"
[7383] "caught" "Amitabh"
[7385] "Bachchan's" "attention"
[7387] "statistics" "Indian"
[7389] "hockey" "team's"
[7391] "performance" "Olympics"
[7393] "showcased" "tweet"
[7395] "reads" "T"
[7397] "3989" "Girls"
[7399] "lost" "Great"
[7401] "Britain" "Boys"
[7403] "beat" "Boys"
[7405] "lost" "Australia"
[7407] "Girls" "beat"
[7409] "Girls" "lost"
[7411] "Argentina" "Boys"
[7413] "beat" "Girls"
[7415] "lost" "Germany"
[7417] "Boys" "beat"
[7419] "#Hockey" "#Olympics"
[7421] "sic" "T"
[7423] "3989" "Girls"
[7425] "lost" "Great"
[7427] "Britain" "Boys"
[7429] "beat" "Boys"
[7431] "lost" "Australia"
[7433] "Girls" "beat"
[7435] "Girls" "lost"
[7437] "Argentina" "Boys"
[7439] "beat" "Girls"
[7441] "lost" "Germany"
[7443] "Boys" "beat"
[7445] "Amitabh" "Bachchan"
[7447] "@SrBachchan" "AMITABH"
[7449] "BACHCHAN" "RETURN"
[7451] "KAUN" "BANEGA"
[7453] "CROREPATI" "13"
[7455] "Kaun" "Banega"
[7457] "Crorepati" "set"
[7459] "return" "13th"
[7461] "season" "Amitabh"
[7463] "Bachchan" "host"
[7465] "Ahead" "premiere"
[7467] "based" "village"
[7469] "people" "trying"
[7471] "raise" "funds"
[7473] "school" "building"
[7475] "register" "KBC"
[7477] "get" "funds"
[7479] "one" "gets"
[7481] "selected" "everyone"
[7483] "helps" "prepare"
[7485] "quiz" "show"
[7487] "Sharing" "promo"
[7489] "Amitabh" "Bachchan"
[7491] "wrote" "Instagram"
[7493] "KBC13" "Wapas"
[7495] "aa" "rahe"
[7497] "hain" "KBC"
[7499] "pe" "#StayTunedForPart2"
[7501] "#ComingSoon" "#KBC13"
[7503] "@SonyTVOfficial" "sic"
[7505] "WORK" "FRONT"
[7507] "film" "also"
[7509] "stars" "Prabhas"
[7511] "Deepika" "Padukone"
[7513] "Amitabh" "seen"
[7515] "next" "Emraan"
[7517] "Hashmi-starrer" "Chehre"
[7519] "also" "Goodbye"
[7521] "Rashmika" "Mandanna"
[7523] "Brahmastra" "Ranbir"
[7525] "Kapoor" "Alia"
[7527] "Bhatt" "lined"
[7529] "Apart" "Big"
[7531] "B" "seen"
[7533] "Mayday" "Intern"
[7535] "Jhund" "ALSO"
[7537] "READ" "|"
[7539] "ALSO" "READ"
[7541] "|" "Graphic"
[7543] "Amitabh" "Bachchan"
[7545] "tweets" "viral"
[7547] "WhatsApp" "message"
[7549] "Indian" "hockey"
[7551] "Tokyo" "Olympics"
[7553] "Seen" "yet"
[7555] "Classification" "Language"
[7557] "ENGLISH" "Publication-Type"
[7559] "Web" "Publication"
[7561] "Body" "Check"
[7563] "six" "ways"
[7565] "Google" "bringing"
[7567] "details" "fun"
[7569] "Tokyo" "Olympics"
[7571] "2020" "comfort"
[7573] "home" "Tokyo"
[7575] "Olympics" "2020"
[7577] "Tokyo" "Olympics"
[7579] "kick" "today"
[7581] "Google" "shared"
[7583] "new" "blog"
[7585] "post" "highlighting"
[7587] "features" "help"
[7589] "users" "enjoy"
[7591] "Olympics" "safety"
[7593] "comfort" "homes"
[7595] "six" "ways"
[7597] "Google" "help"
[7599] "followers" "2020"
[7601] "Olympic" "games"
[7603] "Google" "Search"
[7605] "adds" "country"
[7607] "rankings" "trivia"
[7609] "Searching" "anything"
[7611] "around" "Olympics"
[7613] "show" "latest"
[7615] "information" "around"
[7617] "favourite" "events"
[7619] "sports" "players"
[7621] "also" "country"
[7623] "rankings" "Even"
[7625] "catch" "games"
[7627] "live" "users"
[7629] "can" "watch"
[7631] "daily" "recap"
[7633] "video" "check"
[7635] "major" "news"
[7637] "related" "Olympics"
[7639] "Enjoy" "new"
[7641] "Google" "Doodle"
[7643] "Google" "also"
[7645] "launched" "new"
[7647] "Doodle" "ahead"
[7649] "games" "largest"
[7651] "interactive" "Doodle"
[7653] "yet" "new"
[7655] "Champion" "Island"
[7657] "Games" "Doodle"
[7659] "created" "collaboration"
[7661] "Japanese" "animation"
[7663] "studio" "4C"
[7665] "allows" "users"
[7667] "enter" "tournament"
[7669] "select" "team"
[7671] "following" "can"
[7673] "compete" "across"
[7675] "multiple" "retro"
[7677] "16-bit" "sports"
[7679] "like" "skateboarding"
[7681] "rugby" "climbing"
[7683] "try" "beat"
[7685] "reigning" "champions"
[7687] "multiple" "side-quests"
[7689] "YouTube" "Google"
[7691] "TV" "feature"
[7693] "official" "broadcaster"
[7695] "highlights" "Starting"
[7697] "today" "live"
[7699] "events" "well"
[7701] "clips" "highlights"
[7703] "official" "Olympic"
[7705] "broadcasters" "including"
[7707] "Marca" "Claro"
[7709] "Eurosport" "available"
[7711] "watch" "respective"
[7713] "YouTube" "channels"
[7715] "Earlier" "month"
[7717] "added" "Olympic-related"
[7719] "content" "YouTube"
[7721] "new" "YouTube"
[7723] "Originals" "series"
[7725] "Strive" "Olympics"
[7727] "Break" "Record"
[7729] "feature-length" "documentary"
[7731] "World" "Debut"
[7733] "ahead" "opening"
[7735] "ceremonies" "Google"
[7737] "said" "post"
[7739] "Google" "TV"
[7741] "users" "can"
[7743] "head" "tab"
[7745] "open" "Olympics"
[7747] "page" "find"
[7749] "apps" "official"
[7751] "broadcasters" "tune"
[7753] "live" "streams"
[7755] "missed" "events"
[7757] "inspired" "popular"
[7759] "sports" "movies"
[7761] "sports" "shows"
[7763] "videos" "Japan"
[7765] "Ask" "Google"
[7767] "Assistant" "won"
[7769] "Google" "Assistant"
[7771] "able" "answer"
[7773] "questions" "around"
[7775] "competitions" "tournament"
[7777] "Users" "able"
[7779] "ask" "Assistant"
[7781] "questions" "like"
[7783] "Hey" "Google"
[7785] "won" "women's"
[7787] "basketball" "Olympics"
[7789] "Hey" "Google"
[7791] "many" "medals"
[7793] "France" "Olympics"
[7795] "Users" "can"
[7797] "also" "ask"
[7799] "voice" "assistant"
[7801] "fun" "facts"
[7803] "around" "tournament"
[7805] "features" "work"
[7807] "Assistant-enabled" "device"
[7809] "including" "phone"
[7811] "speaker" "TV"
[7813] "Find" "apps"
[7815] "around" "Olympics"
[7817] "Play" "Store"
[7819] "Google" "Play"
[7821] "Store" "also"
[7823] "feature" "number"
[7825] "apps" "around"
[7827] "Olympics" "including"
[7829] "official" "Olympics"
[7831] "app" "apps"
[7833] "related" "broadcasters"
[7835] "news" "organisations"
[7837] "social" "media"
[7839] "sports" "games"
[7841] "plus" "fitness"
[7843] "Explore" "Japan"
[7845] "Street" "View"
[7847] "Google" "Arts"
[7849] "Culture" "Translate"
[7851] "Google" "bringing"
[7853] "Japan" "enjoying"
[7855] "Olympic" "Games"
[7857] "home" "Users"
[7859] "can" "now"
[7861] "enjoy" "Google"
[7863] "Street" "View"
[7865] "Maps" "check"
[7867] "streets" "Tokyo"
[7869] "snow-capped" "mountains"
[7871] "cave" "formations"
[7873] "Google" "Arts"
[7875] "Culture" "also"
[7877] "allow" "users"
[7879] "check" "Japan's"
[7881] "traditional" "crafts"
[7883] "mouth-watering" "food"
[7885] "Google" "Translate"
[7887] "also" "help"
[7889] "learn" "Japanese"
[7891] "desire" "Classification"
[7893] "Language" "ENGLISH"
[7895] "Publication-Type" "Newspaper"
[7897] "Body" "Haryana"
[7899] "chief" "minister"
[7901] "Manohar" "Lal"
[7903] "Khattar" "Friday"
[7905] "announced" "cash"
[7907] "reward" "Rs"
[7909] "50" "lakh"
[7911] "given" "sportsperson"
[7913] "state" "finished"
[7915] "fourth" "position"
[7917] "Olympics" "Till"
[7919] "now" "provision"
[7921] "state's" "Sports"
[7923] "Policy" "players"
[7925] "According" "Sports"
[7927] "Policy" "state"
[7929] "provision" "give"
[7931] "incentive" "money"
[7933] "players" "win"
[7935] "medals" "games"
[7937] "per" "provision"
[7939] "player" "participating"
[7941] "Olympic" "Games"
[7943] "given" "incentive"
[7945] "amount" "Rs"
[7947] "15" "lakh"
[7949] "amount" "Rs"
[7951] "5" "lakh"
[7953] "already" "given"
[7955] "players" "prior"
[7957] "Olympics" "remaining"
[7959] "Rs10" "lakh"
[7961] "given" "players"
[7963] "return" "completion"
[7965] "Olympics" "Khattar"
[7967] "said" "Addressing"
[7969] "press" "conference"
[7971] "Rohtak" "Khattar"
[7973] "said" "sports"
[7975] "policy" "provision"
[7977] "made" "give"
[7979] "Rs" "6"
[7981] "crore" "player"
[7983] "wins" "gold"
[7985] "medal" "Olympics"
[7987] "Rs" "4"
[7989] "crore" "player"
[7991] "wins" "silver"
[7993] "Rs" "2.5"
[7995] "crore" "player"
[7997] "wins" "bronze"
[7999] "medal" "Though"
[8001] "till" "now"
[8003] "policy" "provision"
[8005] "giving" "cash"
[8007] "reward" "players"
[8009] "finished" "fourth"
[8011] "Olympics" "now"
[8013] "onwards" "cash"
[8015] "reward" "Rs"
[8017] "50" "lakh"
[8019] "given" "player"
[8021] "state" "finished"
[8023] "fourth" "state"
[8025] "government" "also"
[8027] "felictating" "players"
[8029] "win" "medal"
[8031] "Olympics" "Khattar"
[8033] "announced" "Indian"
[8035] "men's" "hockey"
[8037] "team" "brought"
[8039] "laurels" "country"
[8041] "41" "years"
[8043] "winning" "bronze"
[8045] "medal" "matter"
[8047] "great" "pride"
[8049] "two" "players"
[8051] "Haryana" "part"
[8053] "winning" "team"
[8055] "women's" "hockey"
[8057] "team" "lost"
[8059] "bronze" "medal"
[8061] "whisker" "Nine"
[8063] "players" "Haryana"
[8065] "played" "team"
[8067] "cash" "reward"
[8069] "Rs" "50"
[8071] "lakh" "given"
[8073] "government" "nine"
[8075] "players" "Khattar"
[8077] "added" "2"
[8079] "per" "cent"
[8081] "country's" "population"
[8083] "25" "per"
[8085] "cent" "participants"
[8087] "Tokyo" "Olympics"
[8089] "Haryana" "matter"
[8091] "pride" "Khattar"
[8093] "said" "Hooda"
[8095] "demands" "Rs"
[8097] "50" "lakh"
[8099] "every" "Olympic"
[8101] "participant" "government"
[8103] "give" "least"
[8105] "Rs" "50"
[8107] "lakh" "prize"
[8109] "money" "every"
[8111] "participant" "Tokyo"
[8113] "Olympics" "Haryana"
[8115] "Wrestler" "Bajrang"
[8117] "Punia" "women's"
[8119] "hockey" "team"
[8121] "put" "tremendous"
[8123] "performances" "throughout"
[8125] "tournament" "one"
[8127] "performance" "decide"
[8129] "support" "extended"
[8131] "Today" "whole"
[8133] "world" "acknowledging"
[8135] "talent" "loss"
[8137] "just" "one"
[8139] "match" "dampen"
[8141] "spirits" "women's"
[8143] "hockey" "team"
[8145] "may" "missed"
[8147] "medal" "Tokyo"
[8149] "Olympics" "team"
[8151] "achieved" "something"
[8153] "country" "waiting"
[8155] "decades" "Even"
[8157] "getting" "fourth"
[8159] "position" "sporting"
[8161] "event" "like"
[8163] "Olympics" "ordinary"
[8165] "success" "splendid"
[8167] "performance" "women's"
[8169] "hockey" "team"
[8171] "indicator" "bright"
[8173] "future" "hockey"
[8175] "situation" "state"
[8177] "government" "also"
[8179] "leave" "stone"
[8181] "unturned" "honor"
[8183] "respect" "players"
[8185] "team" "Haryana"
[8187] "government" "honour"
[8189] "participating" "sportspersons"
[8191] "state" "Olympics"
[8193] "giving" "prizes"
[8195] "least" "Rs"
[8197] "50" "lakh"
[8199] "suitable" "position"
[8201] "Also" "honour"
[8203] "money" "medal-winning"
[8205] "players" "increased"
[8207] "Hooda" "said"
[8209] "statement" "issued"
[8211] "Friday" "Classification"
[8213] "Language" "ENGLISH"
[8215] "Publication-Type" "Newspaper"
[8217] "Body" "India"
[8219] "July" "31"
[8221] "Tokyo" "2020"
[8223] "PV" "Sindhu"
[8225] "vs" "Tai"
[8227] "Tzu-Ying" "semifinal"
[8229] "Live" "stage"
[8231] "set" "epic"
[8233] "clash" "Indian"
[8235] "shuttler" "PV"
[8237] "Sindhu" "Chinese"
[8239] "Taipei's" "Tai"
[8241] "Tzu-Ying" "two"
[8243] "badminton" "greats"
[8245] "square" "Tokyo"
[8247] "Olympics" "2020"
[8249] "Women's" "Singles"
[8251] "Badminton" "semifinal"
[8253] "Saturday" "Sindhu"
[8255] "won" "silver"
[8257] "medal" "2016"
[8259] "Olympics" "Rio"
[8261] "hoping" "make"
[8263] "final" "can"
[8265] "get" "chance"
[8267] "change" "colour"
[8269] "medal" "Tokyo"
[8271] "2020" "Full"
[8273] "Coverage" "need"
[8275] "know" "PV"
[8277] "Sindhu" "Vs"
[8279] "Tai" "Tzu-Ying"
[8281] "Semifinal" "Tokyo"
[8283] "Olympics" "2020"
[8285] "Tokyo" "Olympics"
[8287] "Day" "8"
[8289] "Live" "Updates"
[8291] "PV" "Sindhu"
[8293] "Vs" "Tai"
[8295] "Tzu-Ying" "Semifinal"
[8297] "Tokyo" "Olympics"
[8299] "2020" "take"
[8301] "place" "PV"
[8303] "Sindhu" "Vs"
[8305] "Tai" "Tzu-Ying"
[8307] "Semifinal" "Tokyo"
[8309] "Olympics" "2020"
[8311] "take" "place"
[8313] "Musashino" "Forest"
[8315] "Sport" "Plaza"
[8317] "BDM" "Court"
[8319] "1" "Tokyo"
[8321] "Olympics" "Village"
[8323] "time" "PV"
[8325] "Sindhu" "Vs"
[8327] "Tai" "Tzu-Ying"
[8329] "Semifinal" "Tokyo"
[8331] "Olympics" "2020"
[8333] "begin" "PV"
[8335] "Sindhu" "Vs"
[8337] "Tai" "Tzu-Ying"
[8339] "Semifinal" "Tokyo"
[8341] "Olympics" "2020"
[8343] "begin" "03"
[8345] "20" "PM"
[8347] "IST" "Saturday"
[8349] "July" "31st"
[8351] "watch" "live"
[8353] "coverage" "PV"
[8355] "Sindhu" "Vs"
[8357] "Tai" "Tzu-Ying"
[8359] "Semifinal" "Tokyo"
[8361] "Olympics" "2020"
[8363] "PV" "Sindhu"
[8365] "Vs" "Tai"
[8367] "Tzu-Ying" "Semifinal"
[8369] "Tokyo" "Olympics"
[8371] "2020" "aired"
[8373] "live" "Sony"
[8375] "Sports" "Network"
[8377] "watch" "PV"
[8379] "Sindhu" "Vs"
[8381] "Tai" "Tzu-Ying"
[8383] "Semifinal" "Tokyo"
[8385] "Olympics" "2020"
[8387] "online" "mobile"
[8389] "online" "streaming"
[8391] "PV" "Sindhu"
[8393] "Vs" "Tai"
[8395] "Tzu-Ying" "Semifinal"
[8397] "Tokyo" "Olympics"
[8399] "2020" "available"
[8401] "SonyLiv" "can"
[8403] "also" "catch"
[8405] "live" "commentary"
[8407] "scorecard" "latest"
[8409] "updates" "PV"
[8411] "Sindhu" "Vs"
[8413] "Tai" "Tzu-Ying"
[8415] "Semifinal" "Tokyo"
[8417] "Olympics" "2020"
[8419] "Published" "HT"
[8421] "Digital" "Content"
[8423] "Services" "permission"
[8425] "Hindustan" "Times"
[8427] "query" "respect"
[8429] "article" "content"
[8431] "requirement" "please"
[8433] "contact" "Editor"
[8435] "Classification" "Language"
[8437] "ENGLISH" "Publication-Type"
[8439] "Newswire" "Body"
[8441] "Neeraj" "Chopra"
[8443] "bagged" "historic"
[8445] "gold" "medal"
[8447] "Tokyo" "Olympics"
[8449] "men's" "javelin"
[8451] "throw" "final"
[8453] "Saturday" "August"
[8455] "7" "became"
[8457] "second" "Indian"
[8459] "grab" "individual"
[8461] "Olympic" "gold"
[8463] "first" "Indian"
[8465] "win" "gold"
[8467] "medal" "athletics"
[8469] "event" "Congratulatory"
[8471] "messages" "pouring"
[8473] "corners" "Neeraj"
[8475] "Bollywood" "celebs"
[8477] "also" "took"
[8479] "social" "media"
[8481] "laud" "performance"
[8483] "BOLLYWOOD" "CONGRATULATES"
[8485] "NEERAJ" "CHOPRA"
[8487] "OLYMPICS" "GOLD"
[8489] "Meanwhile" "Bollywood"
[8491] "celebrities" "also"
[8493] "congratulated" "making"
[8495] "history" "Anushka"
[8497] "Sharma" "wrote"
[8499] "gold" "comes"
[8501] "home" "make"
[8503] "entire" "country"
[8505] "proud" "Congratulations"
[8507] "Neeraj" "Chopra"
[8509] "sic" "Kareena"
[8511] "Kapoor" "also"
[8513] "congratulated" "special"
[8515] "post" "social"
[8517] "media" "Ajay"
[8519] "Devgn" "tweeted"
[8521] "Congratulations" "Neeraj"
[8523] "Chopra" "win"
[8525] "Tokyo" "Olympics"
[8527] "power" "made"
[8529] "parents" "India"
[8531] "proud" "tell"
[8533] "happy" "awesome"
[8535] "#NeerajChopra" "#TokyoOlympics"
[8537] "sic" "Congratulations"
[8539] "Neeraj" "Chopra"
[8541] "win" "Tokyo"
[8543] "Olympics" "power"
[8545] "made" "parents"
[8547] "India" "proud"
[8549] "tell" "happy"
[8551] "awesome" "Ajay"
[8553] "Devgn" "@ajaydevgn"
[8555] "Abhishek" "Bachchan"
[8557] "took" "Twitter"
[8559] "wrote" "HISTORY"
[8561] "MADE" "Kudos"
[8563] "@Neeraj_chopra1" "first-ever"
[8565] "athletics" "gold"
[8567] "medal" "#TokyoOlympics"
[8569] "@WeAreTeamIndia" "#Cheer4India"
[8571] "sic" "HISTORY"
[8573] "MADE" "Kudos"
[8575] "first-ever" "athletics"
[8577] "gold" "medal"
[8579] "Abhishek" "Bachchan"
[8581] "@juniorbachchan" "Ranveer"
[8583] "Singh" "lauded"
[8585] "Neeraj" "Chopra's"
[8587] "historic" "Olywmpics"
[8589] "win" "celebs"
[8591] "congratulated" "Neeraj"
[8593] "Chopra" "Hailing"
[8595] "Panipat's" "Khandra"
[8597] "village" "Neeraj"
[8599] "Chopra" "scripted"
[8601] "history" "best"
[8603] "throw" "87.58"
[8605] "metres" "winning"
[8607] "historic" "first"
[8609] "Olympic" "gold"
[8611] "athletics" "India"
[8613] "heartiest" "congratulations"
[8615] "ALSO" "READ"
[8617] "|" "ALSO"
[8619] "READ" "|"
[8621] "Graphic" "Anushka"
[8623] "Sharma" "Kareena"
[8625] "Kapoor" "celebs"
[8627] "hail" "Neeraj"
[8629] "Chopra's" "historic"
[8631] "gold" "win"
[8633] "Olympics" "Classification"
[8635] "Language" "ENGLISH"
[8637] "Publication-Type" "Web"
[8639] "Publication" "Body"
[8641] "Tokyo" "Olympics"
[8643] "Aug" "7"
[8645] "Neeraj" "Chopra"
[8647] "Saturday" "won"
[8649] "gold" "country"
[8651] "also" "helped"
[8653] "surpass" "previous"
[8655] "best" "haul"
[8657] "six" "medals"
[8659] "achieved" "2012"
[8661] "London" "Games"
[8663] "gold" "today"
[8665] "men's" "javelin"
[8667] "throw" "India's"
[8669] "medal" "tally"
[8671] "gone" "7"
[8673] "highest" "far"
[8675] "Olympics" "India"
[8677] "now" "one"
[8679] "gold" "two"
[8681] "silver" "four"
[8683] "bronze" "medals"
[8685] "2012" "London"
[8687] "Games" "India"
[8689] "won" "six"
[8691] "medals" "two"
[8693] "silver" "four"
[8695] "bronze" "today"
[8697] "India's" "highest"
[8699] "tally" "Olympics"
[8701] "changed" "today"
[8703] "Chopra's" "golden"
[8705] "throw" "Tokyo"
[8707] "Olympics" "23-year-old"
[8709] "javelin" "thrower"
[8711] "created" "history"
[8713] "gold" "became"
[8715] "first" "win"
[8717] "medal" "athletics"
[8719] "since" "country"
[8721] "started" "taking"
[8723] "part" "Games"
[8725] "1920" "Antwerp"
[8727] "Belgium" "Among"
[8729] "athletes" "bagged"
[8731] "medals" "season"
[8733] "India" "Neeraj"
[8735] "Chopra" "Mirabai"
[8737] "Chanu" "Ravi"
[8739] "Kumar" "Dahiya"
[8741] "Lovlina" "Borgohain"
[8743] "PV" "Sindhu"
[8745] "Bajrang" "Punia"
[8747] "Men's" "Hockey"
[8749] "Team" "126"
[8751] "athletes" "across"
[8753] "18" "sports"
[8755] "disciplines" "India"
[8757] "sent" "biggest-ever"
[8759] "contingent" "Tokyo"
[8761] "Olympics" "Indian"
[8763] "athletes" "participated"
[8765] "69" "cumulative"
[8767] "events" "across"
[8769] "highest" "ever"
[8771] "country" "India"
[8773] "first" "medal"
[8775] "came" "weightlifting"
[8777] "Mirabai" "Chanu"
[8779] "won" "Silver"
[8781] "7th" "day"
[8783] "quadrennial" "event"
[8785] "Lovlina" "Borgohain"
[8787] "secured" "second"
[8789] "medal" "country"
[8791] "boxing" "won"
[8793] "Bronze" "Ace"
[8795] "shutter" "PV"
[8797] "Sindhu" "won"
[8799] "Bronze" "defeating"
[8801] "Bing" "Jiao"
[8803] "China" "Tokyo"
[8805] "Olympics" "2020"
[8807] "Winners" "India"
[8809] "Gold" "Neeraj"
[8811] "Chopra" "Men's"
[8813] "Javelin" "Throw"
[8815] "Silver" "Mirabai"
[8817] "Chanu" "Weightlifting"
[8819] "Women's" "49kg"
[8821] "Silver" "Ravi"
[8823] "Kumar" "Dahiya"
[8825] "Wrestling" "Men's"
[8827] "57kg" "freestyle"
[8829] "Bronze" "Lovlina"
[8831] "Borgohain" "Boxing"
[8833] "Women's" "Welterweight"
[8835] "Bronze" "PV"
[8837] "Sindhu" "Badminton"
[8839] "Women's" "singles"
[8841] "Bronze" "Men's"
[8843] "Hockey" "Team"
[8845] "Bronze" "Bajrang"
[8847] "Punia" "Wrestling"
[8849] "Men's" "65kg"
[8851] "freestyle" "time"
[8853] "several" "notable"
[8855] "firsts" "terms"
[8857] "participation" "Tokyo"
[8859] "Olympics" "first"
[8861] "time" "history"
[8863] "fencer" "India"
[8865] "Bhavani" "Devi"
[8867] "qualified" "Olympic"
[8869] "Games" "Bhavani"
[8871] "won" "first"
[8873] "match" "15"
[8875] "3" "Nadia"
[8877] "Azizi" "Tunisia"
[8879] "became" "first"
[8881] "Indian" "fencing"
[8883] "player" "win"
[8885] "match" "Olympics"
[8887] "second" "match"
[8889] "lost" "7"
[8891] "15" "world"
[8893] "top" "3"
[8895] "player" "Manon"
[8897] "Brunet" "France"
[8899] "Nethra" "Kumanan"
[8901] "first" "ever"
[8903] "female" "Sailor"
[8905] "India" "qualify"
[8907] "Olympic" "Games"
[8909] "Sajan" "Prakash"
[8911] "Srihari" "Nataraj"
[8913] "first" "Swimmers"
[8915] "India" "qualify"
[8917] "Olympic" "Games"
[8919] "achieving" "Qualification"
[8921] "Standard" "Swimming"
[8923] "Published" "HT"
[8925] "Digital" "Content"
[8927] "Services" "permission"
[8929] "MINT" "query"
[8931] "respect" "article"
[8933] "content" "requirement"
[8935] "please" "contact"
[8937] "Editor" "Classification"
[8939] "Language" "ENGLISH"
[8941] "Publication-Type" "Newspaper"
[8943] "Body" "Mirabai"
[8945] "Chanu" "won"
[8947] "India's" "first"
[8949] "medal" "Tokyo"
[8951] "Olympics" "women's"
[8953] "weightlifting" "category"
[8955] "message" "gone"
[8957] "viral" "social"
[8959] "media" "claim"
[8961] "wrestler" "Priya"
[8963] "Malik" "won"
[8965] "gold" "medal"
[8967] "Tokyo" "Olympics"
[8969] "Multiple" "users"
[8971] "congratulated" "Priya"
[8973] "Malik" "captions"
[8975] "like" "remember"
[8977] "name" "congratulations"
[8979] "winning" "gold"
[8981] "wrestling" "India"
[8983] "Today" "Anti-Fake"
[8985] "News" "War"
[8987] "Room" "AFWA"
[8989] "found" "wrestler"
[8991] "Priya" "Malik"
[8993] "won" "gold"
[8995] "medal" "73"
[8997] "kg" "world"
[8999] "title" "Cadet"
[9001] "World" "Championships"
[9003] "Budapest" "Thursday"
[9005] "July" "22"
[9007] "Till" "now"
[9009] "India" "won"
[9011] "one" "silver"
[9013] "medal" "Tokyo"
[9015] "Olympics" "weightlifting"
[9017] "archived" "versions"
[9019] "posts" "saved"
[9021] "recently" "held"
[9023] "Cadet" "World"
[9025] "Championships" "Budapest"
[9027] "five" "golds"
[9029] "India" "won"
[9031] "two" "43kg"
[9033] "73kg" "Tannu"
[9035] "Malik" "Priya"
[9037] "Malik" "respectively"
[9039] "dominated" "finals"
[9041] "Priya" "Malik"
[9043] "defeated" "Belarus"
[9045] "wrestler" "win"
[9047] "gold" "medal"
[9049] "73kg" "news"
[9051] "appeared" "several"
[9053] "news" "July"
[9055] "23" "Priya"
[9057] "Malik" "Mokhra"
[9059] "village" "Haryana"
[9061] "given" "India"
[9063] "likes" "India's"
[9065] "first-ever" "woman"
[9067] "Olympic" "medallist"
[9069] "wrestling" "Sakshi"
[9071] "Malik" "India"
[9073] "far" "won"
[9075] "one" "silver"
[9077] "medal" "weightlifting"
[9079] "Tokyo" "Olympics"
[9081] "Hence" "viral"
[9083] "post" "claiming"
[9085] "wrestler" "Priya"
[9087] "Malik" "won"
[9089] "gold" "medal"
[9091] "Tokyo" "Olympics"
[9093] "misleading" "ALSO"
[9095] "READ" "ALSO"
[9097] "READ" "Graphic"
[9099] "Fact" "Check"
[9101] "Wrestler" "Priya"
[9103] "Malik" "won"
[9105] "gold" "medal"
[9107] "Tokyo" "Olympics"
[9109] "Classification" "Language"
[9111] "ENGLISH" "Publication-Type"
[9113] "Web" "Publication"
[9115] "Body" "Tokyo"
[9117] "Olympics" "2020"
[9119] "Aug" "1"
[9121] "Indian" "men's"
[9123] "hockey" "team"
[9125] "Sunday" "defeated"
[9127] "Great" "Britain"
[9129] "quarterfinals" "3-1"
[9131] "Now" "Indian"
[9133] "team" "face"
[9135] "Belgium" "semi-finals"
[9137] "historic" "India"
[9139] "entered" "semifinals"
[9141] "Olympics" "Games"
[9143] "49" "years"
[9145] "last" "time"
[9147] "Indian" "team"
[9149] "featured" "semifinals"
[9151] "Olympics" "1972"
[9153] "Munich" "Games"
[9155] "lost" "0-2"
[9157] "arch-rivals" "Pakistan"
[9159] "Today" "India"
[9161] "team" "ahead"
[9163] "beginning" "two"
[9165] "goals" "first"
[9167] "two" "quarters"
[9169] "Great" "Britain"
[9171] "tried" "make"
[9173] "comeback" "cross"
[9175] "solid" "defense"
[9177] "Indian" "goalkeeper"
[9179] "PR" "Sreejesh"
[9181] "total" "India"
[9183] "scored" "three"
[9185] "field" "goals"
[9187] "Dilpreet" "Singh"
[9189] "7th" "minute"
[9191] "Gurjant" "Singh"
[9193] "16th" "Hardik"
[9195] "Singh" "57th"
[9197] "seal" "win"
[9199] "GB" "Desperate"
[9201] "Great" "Britain's"
[9203] "goal" "came"
[9205] "45th" "minute"
[9207] "Men" "Blue"
[9209] "Great" "Britain"
[9211] "quarterfinal" "long"
[9213] "gap" "41"
[9215] "years" "facing"
[9217] "Great" "Britain"
[9219] "Indians" "won"
[9221] "four" "five"
[9223] "matches" "finish"
[9225] "second" "Pool"
[9227] "behind" "Australia"
[9229] "Great" "Britain"
[9231] "hand" "finished"
[9233] "third" "Pool"
[9235] "B" "two"
[9237] "wins" "one"
[9239] "loss" "one"
[9241] "draw" "game"
[9243] "India" "played"
[9245] "Great" "Britain"
[9247] "eight" "times"
[9249] "Olympics" "winning"
[9251] "four" "losing"
[9253] "many" "games"
[9255] "However" "India"
[9257] "held" "edge"
[9259] "terms" "goals"
[9261] "scored" "Olympics"
[9263] "30" "July"
[9265] "Indian" "team"
[9267] "defeated" "Japan"
[9269] "5-3" "Tokyo"
[9271] "Olympics" "India's"
[9273] "fourth" "win"
[9275] "mega" "event"
[9277] "Japan" "scored"
[9279] "three" "goals"
[9281] "Indian" "boys"
[9283] "lead" "throughout"
[9285] "game" "dominated"
[9287] "proceedings" "Olympics"
[9289] "Indian" "hockey"
[9291] "team" "far"
[9293] "scored" "eight"
[9295] "gold" "medals"
[9297] "last" "one"
[9299] "1980" "Moscow"
[9301] "Games" "However"
[9303] "since" "Indian"
[9305] "hockey's" "performance"
[9307] "dipped" "Indians"
[9309] "registered" "best"
[9311] "finish" "fifth"
[9313] "place" "1984"
[9315] "Los" "Angeles"
[9317] "Olympics" "team"
[9319] "failed" "qualify"
[9321] "2008" "Beijing"
[9323] "Games" "finished"
[9325] "last" "2016"
[9327] "Rio" "Olympics"
[9329] "However" "last"
[9331] "five" "years"
[9333] "Indian" "hockey"
[9335] "improved" "performances"
[9337] "climbed" "third"
[9339] "place" "world"
[9341] "rankings" "Punjab"
[9343] "announces" "Rs"
[9345] "2.25" "cr"
[9347] "state's" "hockey"
[9349] "players" "winning"
[9351] "gold" "30"
[9353] "July" "Punjab"
[9355] "Sports" "Youth"
[9357] "Services" "Minister"
[9359] "Rana" "Gurmeet"
[9361] "Singh" "Sodhi"
[9363] "announced" "hockey"
[9365] "players" "state"
[9367] "participating" "Tokyo"
[9369] "Olympics" "now"
[9371] "get" "Rs"
[9373] "2.25" "crore"
[9375] "individually" "winning"
[9377] "team" "gold"
[9379] "medal" "Earlier"
[9381] "amount" "Rs"
[9383] "2.25" "crore"
[9385] "given" "entire"
[9387] "team" "winning"
[9389] "gold" "medal"
[9391] "Rana" "Sodhi"
[9393] "said" "total"
[9395] "20" "players"
[9397] "Punjab" "11"
[9399] "players" "giving"
[9401] "best" "Indian"
[9403] "hockey" "team"
[9405] "competing" "Tokyo"
[9407] "Olympics" "expressed"
[9409] "hope" "country"
[9411] "win" "3"
[9413] "4" "medals"
[9415] "Olympics" "Published"
[9417] "HT" "Digital"
[9419] "Content" "Services"
[9421] "permission" "MINT"
[9423] "query" "respect"
[9425] "article" "content"
[9427] "requirement" "please"
[9429] "contact" "Editor"
[9431] "Classification" "Language"
[9433] "ENGLISH" "Publication-Type"
[9435] "Newspaper" "Body"
[9437] "26-year-old" "Manipuri"
[9439] "became" "second"
[9441] "Indian" "weightlifter"
[9443] "Karnam" "Malleswari"
[9445] "win" "Olympic"
[9447] "medal" "lone"
[9449] "Indian" "weightlifter"
[9451] "qualify" "Tokyo"
[9453] "Olympics" "gave"
[9455] "fans" "reason"
[9457] "rejoice" "Saikhom"
[9459] "Mirabai" "Chanu"
[9461] "managed" "bury"
[9463] "ghosts" "2016"
[9465] "Rio" "Olympics"
[9467] "won" "silver"
[9469] "medal" "Tokyo"
[9471] "2020" "Olympics"
[9473] "26-year-old" "Manipuri"
[9475] "became" "second"
[9477] "Indian" "weightlifter"
[9479] "Karnam" "Malleswari"
[9481] "win" "Olympic"
[9483] "medal" "veteran"
[9485] "won" "bronze"
[9487] "2000" "Sydney"
[9489] "Games" "Saikhom"
[9491] "Mirabai" "Chanu"
[9493] "Mirabai" "age"
[9495] "13" "Nongpok"
[9497] "Kakching" "village"
[9499] "around" "20km"
[9501] "Manipur's" "capital"
[9503] "Imphal" "decided"
[9505] "wanted" "sportsperson"
[9507] "went" "ahead"
[9509] "decided" "learn"
[9511] "archery" "plan"
[9513] "mind" "early"
[9515] "2008" "travelled"
[9517] "cousin" "Sports"
[9519] "Authority" "India"
[9521] "SAI" "Centre"
[9523] "Khuman" "Lampak"
[9525] "Imphal" "However"
[9527] "find" "archer"
[9529] "training" "day"
[9531] "Things" "took"
[9533] "turn" "saw"
[9535] "clippings" "legendary"
[9537] "Manipuri" "weightlifter"
[9539] "Kunjarani" "Devi"
[9541] "inspired" "days"
[9543] "went" "weightlifting"
[9545] "training" "centre"
[9547] "met" "former"
[9549] "international" "weightlifter"
[9551] "coach" "Anita"
[9553] "Chanu" "got"
[9555] "sport" "also"
[9557] "started" "juggling"
[9559] "training" "school"
[9561] "schedule" "make"
[9563] "dream" "come"
[9565] "true" "Road"
[9567] "weightlifting" "fame"
[9569] "2014" "Commonwealth"
[9571] "Games" "Glasgow"
[9573] "Mirabai" "lifted"
[9575] "170kg" "win"
[9577] "silver" "won"
[9579] "gold" "2016"
[9581] "Senior" "Nationals"
[9583] "disappointing" "show"
[9585] "Rio" "Olympics"
[9587] "Mirabai" "silenced"
[9589] "detractors" "winning"
[9591] "gold" "2017"
[9593] "World" "Championships"
[9595] "even" "Commonwealth"
[9597] "Games" "year"
[9599] "later" "also"
[9601] "overcame" "unspecified"
[9603] "back" "problem"
[9605] "acquired" "2018"
[9607] "changed" "weight"
[9609] "category" "49kg"
[9611] "original" "48"
[9613] "kg" "now"
[9615] "proud" "silver"
[9617] "medalist" "Tokyo"
[9619] "Olympics" "Classification"
[9621] "Language" "ENGLISH"
[9623] "Publication-Type" "Newspaper"
[9625] "Body" "India"
[9627] "Aug" "1"
[9629] "India" "Vs"
[9631] "Great" "Britain"
[9633] "Hockey" "Match"
[9635] "Live" "Streaming"
[9637] "Tokyo" "Olympics"
[9639] "stage" "set"
[9641] "India" "men's"
[9643] "hockey" "team's"
[9645] "next" "match"
[9647] "take" "might"
[9649] "Great" "Britain"
[9651] "quarterfinals" "Tokyo"
[9653] "2020" "starting"
[9655] "winning" "note"
[9657] "New" "Zealand"
[9659] "Pool" "India"
[9661] "suffered" "embarrassing"
[9663] "1-7" "defeat"
[9665] "Australia" "However"
[9667] "stars" "bounced"
[9669] "back" "win"
[9671] "three" "trot"
[9673] "finish" "second"
[9675] "Pool" "hand"
[9677] "British" "team"
[9679] "experienced" "mixed"
[9681] "bag" "results"
[9683] "Pool" "B"
[9685] "two" "wins"
[9687] "defeats" "one"
[9689] "draw" "finished"
[9691] "third" "group"
[9693] "8" "points"
[9695] "5" "matches"
[9697] "Can" "India"
[9699] "move" "closer"
[9701] "final" "Sunday"
[9703] "Tokyo" "2020"
[9705] "Full" "Coverage"
[9707] "need" "know"
[9709] "India" "vs"
[9711] "Great" "Britain"
[9713] "Hockey" "Men's"
[9715] "Quarter" "Final"
[9717] "Match" "Tokyo"
[9719] "Olympics" "2020"
[9721] "TOKYO" "2020"
[9723] "OLYMPICS" "DAY"
[9725] "9" "BLOG"
[9727] "India" "vs"
[9729] "Great" "Britain"
[9731] "Hockey" "Men's"
[9733] "Quarter" "Final"
[9735] "Match" "Tokyo"
[9737] "Olympics" "2020"
[9739] "take" "place"
[9741] "India" "vs"
[9743] "Great" "Britain"
[9745] "Hockey" "Men's"
[9747] "Quarter" "Final"
[9749] "Match" "Tokyo"
[9751] "Olympics" "2020"
[9753] "take" "place"
[9755] "Oi" "Hockey"
[9757] "Stadium" "North"
[9759] "Pitch" "Tokyo"
[9761] "Japan" "time"
[9763] "India" "vs"
[9765] "Great" "Britain"
[9767] "Hockey" "Men's"
[9769] "Quarter" "Final"
[9771] "Match" "Tokyo"
[9773] "Olympics" "2020"
[9775] "begin" "India"
[9777] "vs" "Great"
[9779] "Britain" "Hockey"
[9781] "Men's" "Quarter"
[9783] "Final" "Match"
[9785] "Tokyo" "Olympics"
[9787] "2020" "begin"
[9789] "05" "30"
[9791] "PM" "IST"
[9793] "Sunday" "August"
[9795] "1" "watch"
[9797] "live" "coverage"
[9799] "India" "vs"
[9801] "Great" "Britain"
[9803] "Hockey" "Men's"
[9805] "Quarter" "Final"
[9807] "Match" "Tokyo"
[9809] "Olympics" "2020"
[9811] "India" "vs"
[9813] "Great" "Britain"
[9815] "Hockey" "Men's"
[9817] "Quarter" "Final"
[9819] "Match" "Tokyo"
[9821] "Olympics" "2020"
[9823] "aired" "live"
[9825] "Sony" "Sports"
[9827] "Network" "watch"
[9829] "India" "vs"
[9831] "Great" "Britain"
[9833] "Hockey" "Men's"
[9835] "Quarter" "Final"
[9837] "Match" "Tokyo"
[9839] "Olympics" "2020"
[9841] "online" "mobile"
[9843] "online" "streaming"
[9845] "India" "vs"
[9847] "Great" "Britain"
[9849] "Hockey" "Men's"
[9851] "Quarter" "Final"
[9853] "Match" "Tokyo"
[9855] "Olympics" "2020"
[9857] "available" "SonyLiv"
[9859] "can" "also"
[9861] "catch" "live"
[9863] "commentary" "scorecard"
[9865] "latest" "updates"
[9867] "India" "vs"
[9869] "Great" "Britain"
[9871] "Hockey" "Men's"
[9873] "Quarter" "Final"
[9875] "Match" "Tokyo"
[9877] "Olympics" "2020"
[9879] "Published" "HT"
[9881] "Digital" "Content"
[9883] "Services" "permission"
[9885] "Hindustan" "Times"
[9887] "query" "respect"
[9889] "article" "content"
[9891] "requirement" "please"
[9893] "contact" "Editor"
[9895] "Classification" "Language"
[9897] "ENGLISH" "Publication-Type"
[9899] "Newswire" "Body"
[9901] "Badminton" "player"
[9903] "PV" "Sindhu"
[9905] "created" "history"
[9907] "Indians" "world"
[9909] "ecstatic" "Sindhu"
[9911] "scripted" "history"
[9913] "defeated" "Bingjiao"
[9915] "China" "21-13"
[9917] "21-15" "women's"
[9919] "singles" "bronze"
[9921] "medal" "match"
[9923] "Tokyo" "Olympics"
[9925] "Sunday" "became"
[9927] "first" "Indian"
[9929] "woman" "win"
[9931] "two" "Olympic"
[9933] "medals" "earlier"
[9935] "won" "silver"
[9937] "medal" "2016"
[9939] "Rio" "Olympics"
[9941] "Bollywood" "stars"
[9943] "including" "Amitabh"
[9945] "Bachchan" "Kareena"
[9947] "Kapoor" "Dia"
[9949] "Mirza" "taken"
[9951] "social" "media"
[9953] "celebrate" "historical"
[9955] "win" "BOLLYWOOD"
[9957] "LAUDS" "PV"
[9959] "SINDHU" "Bollywood"
[9961] "celebs" "celebrated"
[9963] "Abhishek" "Bachchan"
[9965] "wrote" "Congratulations"
[9967] "@Pvsindhu1" "winning"
[9969] "bronze" "Third"
[9971] "place" "medal"
[9973] "also" "becoming"
[9975] "first" "Indian"
[9977] "woman" "win"
[9979] "two" "Olympic"
[9981] "medals" "make"
[9983] "India" "proud"
[9985] "sic" "Kareena"
[9987] "Kapoor" "shared"
[9989] "PV" "Sindhu's"
[9991] "picture" "heart"
[9993] "emoji" "Congratulations"
[9995] "winning" "bronze"
[9997] "also" "becoming"
[9999] "first" "Indian"
[10001] "woman" "win"
[10003] "two" "Olympic"
[10005] "medals" "make"
[10007] "India" "proud"
[10009] "Abhishek" "Bachchan"
[10011] "@juniorbachchan" "Calling"
[10013] "Sindhu" "one"
[10015] "kind" "sportsperson"
[10017] "Taapsee" "Pannu"
[10019] "said" "win"
[10021] "must" "celebrated"
[10023] "across" "country"
[10025] "wrote" "girl"
[10027] "getting" "home"
[10029] "bronze" "One"
[10031] "colour" "time"
[10033] "say" "Come"
[10035] "champ" "@Pvsindhu1"
[10037] "calls" "celebration"
[10039] "one" "kind"
[10041] "celebrate" "sic"
[10043] "girl" "getting"
[10045] "home" "bronze"
[10047] "One" "colour"
[10049] "time" "say"
[10051] "Come" "champ"
[10053] "calls" "celebration"
[10055] "one" "kind"
[10057] "celebrate" "taapsee"
[10059] "pannu" "@taapsee"
[10061] "Actor" "BJP"
[10063] "MP" "Sunny"
[10065] "Deol" "tweeted"
[10067] "proud" "Sindhu's"
[10069] "win" "Proud"
[10071] "@Pvsindhu1" "First"
[10073] "Indian" "woman"
[10075] "win" "#Olympics"
[10077] "Medal" "Twice"
[10079] "Making" "India"
[10081] "Indians" "proud"
[10083] "#PVSindhu" "#Bronze"
[10085] "#Cheer4India" "#Tokyo2020"
[10087] "#Olympics2020" "sic"
[10089] "Deol" "wrote"
[10091] "Proud" "First"
[10093] "Indian" "woman"
[10095] "win" "Medal"
[10097] "Twice" "Making"
[10099] "India" "Indians"
[10101] "proud" "Sunny"
[10103] "Deol" "@iamsunnydeol"
[10105] "See" "celeb"
[10107] "wishes" "Dia"
[10109] "Mirza" "wrote"
[10111] "Gold" "Girl"
[10113] "@Pvsindhu1" "Congratulations"
[10115] "India" "proud"
[10117] "#Olympics" "#Tokyo2020"
[10119] "#Cheer4India" "#TeamIndia"
[10121] "sic" "Gold"
[10123] "Girl" "Congratulations"
[10125] "India" "proud"
[10127] "Dia" "Mirza"
[10129] "@deespeak" "Congrats"
[10131] "Always" "making"
[10133] "India" "proud"
[10135] "dulquer" "salmaan"
[10137] "@dulQuer" "Sindhu"
[10139] "became" "2nd"
[10141] "Indian" "Sushil"
[10143] "Kumar" "win"
[10145] "two" "individual"
[10147] "Olympic" "medals"
[10149] "ALSO" "READ"
[10151] "|" "ALSO"
[10153] "READ" "|"
[10155] "Graphic" "Kareena"
[10157] "Abhishek" "Bollywood"
[10159] "lauds" "PV"
[10161] "Sindhu's" "historic"
[10163] "bronze" "win"
[10165] "Tokyo" "Olympics"
[10167] "Classification" "Language"
[10169] "ENGLISH" "Publication-Type"
[10171] "Web" "Publication"
[10173] "Body" "Boxer"
[10175] "Lovlina" "Borgohain's"
[10177] "medal-winning" "campaign"
[10179] "ongoing" "Tokyo"
[10181] "Olympics" "spread"
[10183] "cheers" "across"
[10185] "country" "Assam"
[10187] "also" "brought"
[10189] "major" "relief"
[10191] "native" "village"
[10193] "form" "proper"
[10195] "road" "July"
[10197] "30" "soon"
[10199] "defeating" "Chinese"
[10201] "Taipei's" "Nien-Chin"
[10203] "Chen" "women's"
[10205] "welterweight" "category"
[10207] "humble" "home"
[10209] "Baromuthia" "village"
[10211] "Assam's" "Goalghat"
[10213] "district" "caught"
[10215] "heavy" "downpour"
[10217] "Medal" "new"
[10219] "road" "road"
[10221] "connecting" "Baromuthia"
[10223] "village" "home"
[10225] "lying" "neglected"
[10227] "pathetic" "conditions"
[10229] "Now" "3.5"
[10231] "km" "muddy"
[10233] "kuccha" "road"
[10235] "Lovlina's" "home"
[10237] "repaired" "Public"
[10239] "Works" "Department"
[10241] "PWD" "Tokyo"
[10243] "Local" "MLA"
[10245] "Biswajit" "Phukan"
[10247] "took" "initiative"
[10249] "build" "proper"
[10251] "road" "residence"
[10253] "said" "previous"
[10255] "road" "bad"
[10257] "condition" "started"
[10259] "work" "make"
[10261] "road" "metalled"
[10263] "road" "MLA"
[10265] "said" "can"
[10267] "say" "gift"
[10269] "Lovlina" "appeal"
[10271] "people" "Assam"
[10273] "country" "pray"
[10275] "Lovlina" "can"
[10277] "return" "country"
[10279] "winning" "gold"
[10281] "medal" "Lovlina"
[10283] "inspiration" "numerous"
[10285] "girls" "small"
[10287] "districts" "try"
[10289] "make" "world-class"
[10291] "sports" "infrastructure"
[10293] "area" "hope"
[10295] "Assam" "Chief"
[10297] "Minister" "extend"
[10299] "support" "Biswajit"
[10301] "Phukan" "said"
[10303] "Bitul" "Gohain"
[10305] "local" "youth"
[10307] "Baromuthia" "village"
[10309] "said" "construction"
[10311] "work" "road"
[10313] "started" "day"
[10315] "Lovlina" "assured"
[10317] "medal" "entered"
[10319] "semifinal" "happy"
[10321] "road" "repaired"
[10323] "Lovlina" "play"
[10325] "semifinal" "match"
[10327] "tomorrow" "hope"
[10329] "wins" "gold"
[10331] "medal" "entered"
[10333] "semifinal" "road"
[10335] "repairing" "works"
[10337] "started" "Bitul"
[10339] "Gohain" "said"
[10341] "local" "MLA"
[10343] "given" "road"
[10345] "gift" "Lovlina"
[10347] "entered" "semifinals"
[10349] "assured" "Olympic"
[10351] "medal" "hope"
[10353] "Lovlina" "win"
[10355] "gold" "medal"
[10357] "Swapan" "Chakraborty"
[10359] "another" "local"
[10361] "villager" "Sarupathar"
[10363] "area" "said"
[10365] "Lovlina's" "Olympics"
[10367] "campaign" "match"
[10369] "Tokyo" "Olympics"
[10371] "July" "30"
[10373] "debutant" "Lovlina"
[10375] "Borgohain" "assured"
[10377] "India" "first"
[10379] "boxing" "medal"
[10381] "ongoing" "Olympic"
[10383] "Games" "upstaged"
[10385] "former" "world"
[10387] "champion" "Nien-Chin"
[10389] "Chen" "Chinese"
[10391] "Taipei" "enter"
[10393] "semifinals" "23-year-old"
[10395] "started" "career"
[10397] "Muay" "Thai"
[10399] "practitioner" "become"
[10401] "third" "Indian"
[10403] "boxer" "ensure"
[10405] "podium" "finish"
[10407] "Olympics" "Vijender"
[10409] "Singh" "2008"
[10411] "MC" "Mary"
[10413] "Kom" "2012"
[10415] "Lovlina" "Borgohain"
[10417] "two-time" "world"
[10419] "championship" "bronze-medallist"
[10421] "also" "first"
[10423] "female" "boxer"
[10425] "Assam" "qualify"
[10427] "Olympics" "Earlier"
[10429] "Assam" "CM"
[10431] "Himanta" "Biswa"
[10433] "Sarma" "took"
[10435] "part" "cycle"
[10437] "rally" "Guwahati"
[10439] "wish" "Lovlina"
[10441] "bout" "Games"
[10443] "Graphic" "Lovlina's"
[10445] "medal-winning" "Olympics"
[10447] "campaign" "gets"
[10449] "native" "village"
[10451] "Assam" "new"
[10453] "road" "Classification"
[10455] "Language" "ENGLISH"
[10457] "Publication-Type" "Web"
[10459] "Publication" "Body"
[10461] "Indian" "tennis"
[10463] "player" "Sumit"
[10465] "Nagal" "face"
[10467] "Uzbekistan's" "Denis"
[10469] "Istomin" "opening"
[10471] "round" "men's"
[10473] "singles" "event"
[10475] "Tokyo" "Olympics"
[10477] "starting" "Tokyo"
[10479] "Friday" "Nagal"
[10481] "qualified" "Games"
[10483] "last" "week"
[10485] "large-scale" "withdrawals"
[10487] "pitted" "lower-ranked"
[10489] "Uzbek" "draw"
[10491] "Thursday" "first-round"
[10493] "win" "23-year-old"
[10495] "Indian" "ranked"
[10497] "160" "see"
[10499] "face" "second-seeded"
[10501] "Russia's" "Daniil"
[10503] "Medvedev" "takes"
[10505] "Alexander" "Bublik"
[10507] "opening" "round"
[10509] "match" "women's"
[10511] "doubles" "six-time"
[10513] "Grand" "Slam"
[10515] "champion" "Sania"
[10517] "Mirza" "Ankita"
[10519] "Raina" "lock"
[10521] "horns" "Kichenok"
[10523] "twins" "Nadiia"
[10525] "Lyudmyla" "Ukraine"
[10527] "opening" "round"
[10529] "Interestingly" "Mirza"
[10531] "paired" "Nadiia"
[10533] "returning" "maternity"
[10535] "leave" "win"
[10537] "Hobart" "Open"
[10539] "last" "year"
[10541] "Nagal" "made"
[10543] "Olympics" "cut"
[10545] "Nagal" "Friday"
[10547] "made" "cut"
[10549] "men's" "singles"
[10551] "event" "Tokyo"
[10553] "Olympics" "large-scale"
[10555] "withdrawals" "pushed"
[10557] "inside" "qualification"
[10559] "mark" "Indian"
[10561] "tennis" "player"
[10563] "now" "hoping"
[10565] "competing" "biggest"
[10567] "stage" "settle"
[10569] "things" "bothering"
[10571] "career" "Nagal"
[10573] "ranked" "144"
[10575] "June" "14"
[10577] "ATP" "rankings"
[10579] "considered" "direct"
[10581] "entries" "consistent"
[10583] "withdrawals" "helped"
[10585] "knew" "cut-off"
[10587] "gonna" "drop"
[10589] "Things" "different"
[10591] "year" "compared"
[10593] "Olympics" "Nonetheless"
[10595] "feel" "happy"
[10597] "getting" "chance"
[10599] "represent" "country"
[10601] "complain" "much"
[10603] "Nagal" "said"
[10605] "Germany" "23-year-old"
[10607] "Nagal" "enter"
[10609] "Olympics" "disappointing"
[10611] "results" "season"
[10613] "suffered" "seven"
[10615] "first" "round"
[10617] "defeat" "Circuit"
[10619] "including" "Australian"
[10621] "Open" "six"
[10623] "Challenger" "events"
[10625] "made" "quarterfinals"
[10627] "thrice" "best"
[10629] "performance" "making"
[10631] "quarterfinals" "ATP"
[10633] "250" "event"
[10635] "Buenos" "Aires"
[10637] "March" "ranking"
[10639] "dropped" "154"
[10641] "beginning" "year"
[10643] "137" "honest"
[10645] "struggling" "things"
[10647] "going" "name"
[10649] "Getting" "Olympics"
[10651] "hopefully" "change"
[10653] "things" "career"
[10655] "going" "amazing"
[10657] "experience" "give"
[10659] "100" "per"
[10661] "cent" "court"
[10663] "said" "Classification"
[10665] "Language" "ENGLISH"
[10667] "Publication-Type" "Newspaper"
[10669] "Body" "spectacular"
[10671] "video" "colourful"
[10673] "firework" "display"
[10675] "tall" "building"
[10677] "widely" "shared"
[10679] "social" "media"
[10681] "claim" "part"
[10683] "Tokyo" "Olympics"
[10685] "2020" "inauguration"
[10687] "ceremony" "Posting"
[10689] "video" "RJ"
[10691] "Golmaal" "Gagan"
[10693] "94.3" "Fm"
[10695] "wrote" "Amazing"
[10697] "Tokyo" "fireworks"
[10699] "Olympics" "inauguration"
[10701] "archived" "version"
[10703] "can" "India"
[10705] "Today" "Anti"
[10707] "Fake" "News"
[10709] "War" "Room"
[10711] "AFWA" "found"
[10713] "viral" "video"
[10715] "neither" "related"
[10717] "Olympics" "recent"
[10719] "shows" "firework"
[10721] "extravaganza" "put"
[10723] "Taiwan's" "iconic"
[10725] "skyscraper" "Taipei"
[10727] "101" "occasion"
[10729] "New" "year"
[10731] "celebration" "31"
[10733] "December" "2020"
[10735] "claim" "AFWA"
[10737] "probe" "reverse"
[10739] "searching" "keyframes"
[10741] "viral" "video"
[10743] "found" "several"
[10745] "month" "January"
[10747] "year" "also"
[10749] "found" "similar"
[10751] "video" "YouTube"
[10753] "channel" "Taiwan"
[10755] "News" "also"
[10757] "published" "event"
[10759] "per" "report"
[10761] "five-minute" "fireworks"
[10763] "display" "conducted"
[10765] "welcome" "arrival"
[10767] "2021" "Taipei"
[10769] "101" "Taipei"
[10771] "year" "show"
[10773] "displayed" "16,000"
[10775] "fireworks" "tribute"
[10777] "Taiwan's" "frontline"
[10779] "medical" "workers"
[10781] "comparing" "visuals"
[10783] "viral" "video"
[10785] "Taiwan" "News"
[10787] "video" "report"
[10789] "noticed" "many"
[10791] "similarities" "found"
[10793] "new" "year"
[10795] "celebration" "videos"
[10797] "recorded" "live"
[10799] "December" "31"
[10801] "2020" "According"
[10803] "official" "venue"
[10805] "conducting" "opening"
[10807] "closing" "ceremony"
[10809] "Tokyo" "Olympics"
[10811] "2020" "National"
[10813] "Stadium" "Tokyo"
[10815] "noteworthy" "stadium"
[10817] "looks" "completely"
[10819] "different" "Taipei"
[10821] "101" "actual"
[10823] "visuals" "firework"
[10825] "show" "Tokyo"
[10827] "2020" "Olympics"
[10829] "opening" "ceremony"
[10831] "can" "seen"
[10833] "video" "report"
[10835] "Reuters" "Thus"
[10837] "clear" "around"
[10839] "six-month-old" "fireworks"
[10841] "show" "video"
[10843] "New" "Year"
[10845] "Celebration" "Taiwan"
[10847] "falsely" "shared"
[10849] "inaugural" "ceremony"
[10851] "Tokyo" "Olympics"
[10853] "2020" "READ"
[10855] "|" "ALSO"
[10857] "READ" "|"
[10859] "WATCH" "|"
[10861] "Graphic" "Fact"
[10863] "Check" "New"
[10865] "Year" "Celebration"
[10867] "Taiwan" "passed"
[10869] "opening" "ceremony"
[10871] "Tokyo" "Olympics"
[10873] "Classification" "Language"
[10875] "ENGLISH" "Publication-Type"
[10877] "Web" "Publication"
[10879] "Body" "Manipur"
[10881] "Chief" "Minister"
[10883] "N" "Biren"
[10885] "Singh" "Thursday"
[10887] "assured" "cash"
[10889] "reward" "Rs"
[10891] "75" "lakh"
[10893] "suitable" "job"
[10895] "Nilakanta" "Sharma"
[10897] "part" "Indian"
[10899] "men's" "hockey"
[10901] "team" "won"
[10903] "bronze" "medal"
[10905] "ongoing" "Tokyo"
[10907] "Olympics" "Thursday"
[10909] "secure" "podium"
[10911] "finish" "year's"
[10913] "Olympics" "Manipur"
[10915] "Chief" "Minister"
[10917] "spoke" "Nilakanta"
[10919] "Sharma" "congratulating"
[10921] "entire" "men's"
[10923] "hockey" "team"
[10925] "conversation" "N"
[10927] "Biren" "Singh"
[10929] "asked" "Nilakanta"
[10931] "Sharma" "currently"
[10933] "Senior" "Ticket"
[10935] "Collector" "Indian"
[10937] "Railways" "expected"
[10939] "government" "Olympics"
[10941] "medalist" "said"
[10943] "want" "get"
[10945] "job" "Manipur"
[10947] "job" "related"
[10949] "sports" "wanted"
[10951] "Also" "Read"
[10953] "N" "Biren"
[10955] "Singh" "assured"
[10957] "saying" "become"
[10959] "Olympics" "medalist"
[10961] "keep" "ticket"
[10963] "collector" "Like"
[10965] "told" "Mirabai"
[10967] "Chanu" "last"
[10969] "time" "keep"
[10971] "ticket" "collector"
[10973] "Moreover" "state"
[10975] "government" "provide"
[10977] "suitable" "job"
[10979] "ready" "delightful"
[10981] "speak" "Nilakanta"
[10983] "Sharma" "Midfielder"
[10985] "Indian" "Men's"
[10987] "Hockey" "team"
[10989] "today" "congratulated"
[10991] "Indian" "Men's"
[10993] "Hockey" "team"
[10995] "historic" "win"
[10997] "bronze" "medal"
[10999] "N.Biren" "Singh"
[11001] "@NBirenSingh" "N"
[11003] "Biren" "Singh"
[11005] "later" "told"
[11007] "Nilakantna" "Sharma"
[11009] "also" "offered"
[11011] "cash" "reward"
[11013] "Rs" "75"
[11015] "lakh" "whenever"
[11017] "returns" "Manipur"
[11019] "Thursday" "India"
[11021] "ended" "41-year"
[11023] "wait" "hockey"
[11025] "medal" "Tokyo"
[11027] "Olympics" "beat"
[11029] "four-time" "champions"
[11031] "Germany" "5-4"
[11033] "nail-biter" "bronze"
[11035] "medal" "match"
[11037] "Thursday" "win"
[11039] "first" "Games"
[11041] "medal" "since"
[11043] "1980" "Moscow"
[11045] "Olympics" "Also"
[11047] "Read" "|"
[11049] "Also" "Read"
[11051] "|" "Graphic"
[11053] "Tokyo" "Olympics"
[11055] "Manipur" "CM"
[11057] "assures" "Rs"
[11059] "75" "lakh"
[11061] "cash" "award"
[11063] "govt" "job"
[11065] "hockey" "player"
[11067] "Nilakanta" "Sharma"
[11069] "Classification" "Language"
[11071] "ENGLISH" "Publication-Type"
[11073] "Web" "Publication"
[11075] "Body" "Great"
[11077] "Britain's" "gold"
[11079] "medalist" "diver"
[11081] "Tom" "Daley"
[11083] "also" "represents"
[11085] "LGBTQ" "+"
[11087] "community" "Tokyo"
[11089] "Olympics" "2020"
[11091] "winning" "gold"
[11093] "medal" "diving"
[11095] "Tokyo" "Olympics"
[11097] "2020" "Tom"
[11099] "Daley" "went"
[11101] "viral" "another"
[11103] "thing" "spotted"
[11105] "stands" "seen"
[11107] "enjoying" "women's"
[11109] "3m" "springboard"
[11111] "diving" "final"
[11113] "Tokyo" "Aquatics"
[11115] "Centre" "Sunday"
[11117] "whilst" "knitting"
[11119] "happened" "next"
[11121] "inevitable" "pictures"
[11123] "knitting" "went"
[11125] "viral" "picture"
[11127] "27-year-old" "seen"
[11129] "wearing" "Team"
[11131] "Great" "Britain's"
[11133] "kit" "mandatory"
[11135] "mask" "flaunting"
[11137] "needles" "purple"
[11139] "wool" "Tokyo"
[11141] "Aquatics" "Centre"
[11143] "photo" "went"
[11145] "viral" "people"
[11147] "around" "world"
[11149] "began" "tweeting"
[11151] "pictures" "knitting"
[11153] "whilst" "watching"
[11155] "Tokyo" "Olympics"
[11157] "2020" "lots"
[11159] "picture" "also"
[11161] "shared" "Olympics"
[11163] "official" "Twitter"
[11165] "handle" "captioned"
[11167] "Oh" "Just"
[11169] "Olympic" "champ"
[11171] "@TomDaley1994" "knitting"
[11173] "stands" "watching"
[11175] "diving" "Great"
[11177] "Britain's" "official"
[11179] "account" "also"
[11181] "tweeted" "picture"
[11183] "captioning" "Nothing"
[11185] "see" "just"
[11187] "@TomDaley1994" "knit"
[11189] "diving" "unversed"
[11191] "Tom" "Daley"
[11193] "knitting" "crotching"
[11195] "long" "time"
[11197] "even" "dedicated"
[11199] "account" "Instagram"
[11201] "promote" "skills"
[11203] "called" "madewithlovebytomdaley"
[11205] "also" "posted"
[11207] "video" "winning"
[11209] "gold" "medal"
[11211] "Tokyo" "Olympics"
[11213] "2020" "showing"
[11215] "new" "creation"
[11217] "small" "pouch"
[11219] "carry" "gold"
[11221] "medal" "Tom"
[11223] "explained" "video"
[11225] "knitting" "kept"
[11227] "sane" "throughout"
[11229] "whole" "process"
[11231] "captioned" "video"
[11233] "THANK" "FELLOW"
[11235] "STITCHERS" "Learning"
[11237] "knit" "crochet"
[11239] "helped" "much"
[11241] "Olympics" "won"
[11243] "GOLD" "yesterday"
[11245] "made" "little"
[11247] "medal" "case"
[11249] "YAY" "know"
[11251] "Tom" "Daley"
[11253] "also" "represents"
[11255] "LGBTQ" "community"
[11257] "Olympics" "Classification"
[11259] "Language" "ENGLISH"
[11261] "Publication-Type" "Newspaper"
[11263] "Body" "Milind"
[11265] "Soman" "made"
[11267] "mistake" "social"
[11269] "media" "congratulating"
[11271] "wrestler" "Priya"
[11273] "Malik" "actor"
[11275] "brave" "enough"
[11277] "admit" "Immediately"
[11279] "Milind" "posted"
[11281] "tweet" "Priya"
[11283] "Malik" "social"
[11285] "media" "users"
[11287] "fact-checked" "following"
[11289] "55-year-old" "actor"
[11291] "apologised" "Twitter"
[11293] "refused" "delete"
[11295] "first" "incorrect"
[11297] "post" "happened"
[11299] "Priya" "Malik"
[11301] "won" "gold"
[11303] "medal" "73"
[11305] "kg" "world"
[11307] "title" "Cadet"
[11309] "World" "Championships"
[11311] "Budapest" "July"
[11313] "22" "However"
[11315] "won" "gold"
[11317] "medal" "Tokyo"
[11319] "Olympics" "congratulated"
[11321] "Priya" "Malik"
[11323] "winning" "Tokyo"
[11325] "Olympics" "Thank"
[11327] "Priya" "Malik"
[11329] "#gold" "#TokoyoOlympics"
[11331] "#wrestling" "welcome"
[11333] "Mt" "Olympus"
[11335] "Milind" "Soman"
[11337] "said" "post"
[11339] "Thank" "Priya"
[11341] "Malik" "welcome"
[11343] "Mt" "Olympus"
[11345] "Milind" "Usha"
[11347] "Soman" "@milindrunning"
[11349] "Soon" "Milind's"
[11351] "tweet" "posted"
[11353] "went" "viral"
[11355] "several" "retweets"
[11357] "social" "media"
[11359] "users" "pointed"
[11361] "Sir" "world"
[11363] "wrestling" "championship"
[11365] "Olympic" "held"
[11367] "Hungary" "fyi"
[11369] "World" "wrestling"
[11371] "championship" "Olympics"
[11373] "another" "user"
[11375] "said" "See"
[11377] "comments" "Kindly"
[11379] "google" "little"
[11381] "find" "world"
[11383] "sporting" "event"
[11385] "won" "mandatory"
[11387] "post" "congratulatory"
[11389] "tweet" "without"
[11391] "knowing" "Aghori"
[11393] "Archer" "@Rocky33852616"
[11395] "Sir" "world"
[11397] "wrestling" "championship"
[11399] "Olympic" "held"
[11401] "Hungary" "fyi"
[11403] "Dhaval" "Thacker"
[11405] "@DhavalThacker2" "World"
[11407] "wrestling" "championship"
[11409] "Olympics" "Akash"
[11411] "Garg" "@akashgarg123"
[11413] "Double-" "check"
[11415] "whether" "Tokyo"
[11417] "Olympics" "World"
[11419] "Wrestling" "championship"
[11421] "cricbuff" "@007nikhilsharma"
[11423] "Dear" "sir"
[11425] "Olympic" "medal"
[11427] "cadet" "championship"
[11429] "Vijender" "Upadhyay"
[11431] "@Vijender9786" "win"
[11433] "Gold" "Olympics"
[11435] "World" "Wrestling"
[11437] "Championships" "Jai"
[11439] "#NoleFam" "@JayFedex"
[11441] "won" "World"
[11443] "Wrestling" "Championship"
[11445] "Olympics" "Congratulations"
[11447] "anyways" "proud"
[11449] "Koushik" "Upadhyay"
[11451] "@ShreeKoushikJi" "Sir"
[11453] "check" "yr"
[11455] "information" "post"
[11457] "awara_rohit" "@RoyalStag_Bisht"
[11459] "World" "Wrestling"
[11461] "Championship" "Hungary"
[11463] "Adrift" "Gypsy"
[11465] "@AdriftGypsy" "Milind"
[11467] "realised" "mistake"
[11469] "tweeted" "Sorry"
[11471] "checked" "earlier"
[11473] "tweet" "overcome"
[11475] "joy" "Priya"
[11477] "Malik" "won"
[11479] "Gold" "World"
[11481] "wrestling" "Championships"
[11483] "Onwards" "upwards"
[11485] "Sorry" "checked"
[11487] "earlier" "tweet"
[11489] "overcome" "joy"
[11491] "Priya" "Malik"
[11493] "won" "Gold"
[11495] "World" "wrestling"
[11497] "Championships" "Onwards"
[11499] "upwards" "Milind"
[11501] "Usha" "Soman"
[11503] "@milindrunning" "Meanwhile"
[11505] "social" "media"
[11507] "user" "responded"
[11509] "Milind's" "first"
[11511] "tweet" "said"
[11513] "Sir" "please"
[11515] "delete" "won"
[11517] "World" "Championship"
[11519] "Hungry" "Even"
[11521] "got" "excited"
[11523] "initially" "actor"
[11525] "responded" "soon"
[11527] "saying" "know"
[11529] "now" "still"
[11531] "happy" "delete"
[11533] "tweet" "sometimes"
[11535] "ok" "make"
[11537] "mistake" "know"
[11539] "now" "still"
[11541] "happy" "delete"
[11543] "tweet" "sometimes"
[11545] "ok" "make"
[11547] "mistake" "Milind"
[11549] "Usha" "Soman"
[11551] "@milindrunning" "Nice"
[11553] "star" "films"
[11555] "Bajirao" "Mastani"
[11557] "Chef" "ALSO"
[11559] "READ" "ALSO"
[11561] "READ" "Graphic"
[11563] "Milind" "Soman"
[11565] "congratulates" "Priya"
[11567] "Malik" "winning"
[11569] "Tokyo" "Olympics"
[11571] "Internet" "fact-checks"
[11573] "Classification" "Language"
[11575] "ENGLISH" "Publication-Type"
[11577] "Web" "Publication"
[11579] "Body" "top"
[11581] "five" "Indian"
[11583] "athletes" "Twitter"
[11585] "mentions" "include"
[11587] "P.V" "Sindhu"
[11589] "Lovlina" "Borgohain"
[11591] "Mary" "Kom"
[11593] "among" "others"
[11595] "Read" "Tokyo"
[11597] "Olympics" "head"
[11599] "second" "week"
[11601] "2020" "Olympics"
[11603] "number" "women"
[11605] "athletes" "currently"
[11607] "leading" "trends"
[11609] "social" "media"
[11611] "New" "statistics"
[11613] "shared" "Twitter"
[11615] "reveal" "India"
[11617] "athletes" "including"
[11619] "Mirabai" "Chanu"
[11621] "P.V" "Sindhu"
[11623] "attracting" "lot"
[11625] "attention" "micro-blogging"
[11627] "platform" "tweet"
[11629] "Indian" "weightlifter"
[11631] "Mirabai" "Chanu"
[11633] "retweeted" "tweet"
[11635] "Olympic" "Games"
[11637] "Indian" "audience"
[11639] "far" "Meanwhile"
[11641] "badminton" "player"
[11643] "P.V" "Sindhu"
[11645] "athlete" "India"
[11647] "mentions" "games"
[11649] "Check" "interesting"
[11651] "statistics" "Tokyo"
[11653] "Olympics" "Note"
[11655] "findings" "based"
[11657] "Twitter" "data"
[11659] "collected" "July"
[11661] "23" "July"
[11663] "30" "P.V"
[11665] "Sindhu" "Lovlina"
[11667] "Borgohain" "lead"
[11669] "mentioned" "list"
[11671] "top" "five"
[11673] "Indian" "athletes"
[11675] "Twitter" "mentions"
[11677] "include" "P.V"
[11679] "Sindhu" "Lovlina"
[11681] "Borgohain" "Mary"
[11683] "Kom" "Deepika"
[11685] "Kumari" "Atanu"
[11687] "Das" "Meanwhile"
[11689] "sports" "Indians"
[11691] "talking" "Twitter"
[11693] "include" "Boxing"
[11695] "Olympic" "Weightlifting"
[11697] "Badminton" "Olympic"
[11699] "Field" "Hockey"
[11701] "Tennis" "liked"
[11703] "tweets" "around"
[11705] "Olympic" "games"
[11707] "India" "really"
[11709] "happy" "winning"
[11711] "silver" "medal"
[11713] "#Tokyo2020" "country"
[11715] "Saikhom" "Mirabai"
[11717] "Chanu" "@mirabai_chanu"
[11719] "July" "24"
[11721] "2021" "asked"
[11723] "happier" "start"
[11725] "@Tokyo2020" "India"
[11727] "elated" "@mirabai_chanu"
[11729] "s" "stupendous"
[11731] "performance" "Congratulations"
[11733] "winning" "Silver"
[11735] "medal" "weightlifting"
[11737] "success" "motivates"
[11739] "every" "Indian"
[11741] "#Cheer4India" "#Tokyo2020"
[11743] "Narendra" "Modi"
[11745] "@narendramodi" "July"
[11747] "24" "2021"
[11749] "Finally" "dream"
[11751] "come" "true"
[11753] "#Tokyo2020" "pic.twitter.com"
[11755] "e6ewz3cNXO" "Saikhom"
[11757] "Mirabai" "Chanu"
[11759] "@mirabai_chanu" "July"
[11761] "24" "2021"
[11763] "Heading" "back"
[11765] "home" "Thank"
[11767] "#Tokyo2020" "memorable"
[11769] "moments" "life"
[11771] "Saikhom" "Mirabai"
[11773] "Chanu" "@mirabai_chanu"
[11775] "July" "26"
[11777] "2021" "Big"
[11779] "Day" "Excitement"
[11781] "Emotional" "won"
[11783] "First" "Match"
[11785] "15" "3"
[11787] "Nadia" "Azizi"
[11789] "become" "First"
[11791] "INDIAN" "Fencing"
[11793] "Player" "win"
[11795] "Match" "Olympic"
[11797] "2nd" "Match"
[11799] "lost" "7"
[11801] "15" "world"
[11803] "top" "3"
[11805] "player" "Manon"
[11807] "Brunet" "level"
[11809] "best" "win"
[11811] "sorry" "C"
[11813] "Bhavani" "Devi"
[11815] "@IamBhavaniDevi" "July"
[11817] "26" "2021"
[11819] "Top" "hashtags"
[11821] "emojis" "Twitter"
[11823] "also" "revealed"
[11825] "#Tokyo2020" "#Olympics"
[11827] "#Cheer4India" "#TokyoOlympics"
[11829] "#TeamIndia" "used"
[11831] "hashtags" "tweets"
[11833] "related" "game"
[11835] "used" "emojis"
[11837] "include" "clapping"
[11839] "hands" "emoji"
[11841] "second" "place"
[11843] "medal" "emoji"
[11845] "first" "place"
[11847] "medal" "emoji"
[11849] "Thumbs" "emoji"
[11851] "sports" "medal"
[11853] "emoji" "Women"
[11855] "athletes" "topping"
[11857] "Twitter" "charts"
[11859] "just" "India"
[11861] "globally" "three"
[11863] "athletes" "global"
[11865] "mentions" "Olympics"
[11867] "conversations" "Brazilian"
[11869] "skateboarder" "Rayssa"
[11871] "Leal" "American"
[11873] "gymnast" "Simone"
[11875] "Biles" "Brazilian"
[11877] "gymnast" "Rebeca"
[11879] "Andrade" "Classification"
[11881] "Language" "ENGLISH"
[11883] "Publication-Type" "Newspaper"
[11885] "Body" "Dairy"
[11887] "brand" "Amul"
[11889] "congratulated" "boxer"
[11891] "Lovlina" "Borgohain"
[11893] "animated" "doodle"
[11895] "published" "post"
[11897] "social" "media"
[11899] "won" "medal"
[11901] "India" "clinched"
[11903] "bronze" "women's"
[11905] "boxing" "welterweight"
[11907] "category" "64-69kg"
[11909] "Tokyo" "Olympics"
[11911] "2020" "doodle"
[11913] "shared" "Amul"
[11915] "features" "win"
[11917] "Amul" "girl"
[11919] "encouraging" "boxer"
[11921] "well" "Borgohain"
[11923] "Sabse" "Behtar"
[11925] "Amul" "Love"
[11927] "reads" "text"
[11929] "graphic" "#Amul"
[11931] "Topical" "Indian"
[11933] "boxer" "wins"
[11935] "bronze" "medal"
[11937] "Tokyo" "Olympics"
[11939] "Amul" "said"
[11941] "caption" "post"
[11943] "See" "Amul's"
[11945] "post" "post"
[11947] "went" "viral"
[11949] "thousands" "likes"
[11951] "comments" "section"
[11953] "23-year-old" "boxer"
[11955] "Assam" "lost"
[11957] "women's" "boxing"
[11959] "semifinal" "bout"
[11961] "reigning" "world"
[11963] "champion" "Busenaz"
[11965] "Surmeneli" "Turkey"
[11967] "Wednesday" "Lovlina"
[11969] "failed" "change"
[11971] "colour" "medal"
[11973] "became" "third"
[11975] "Indian" "boxer"
[11977] "ensure" "podium"
[11979] "finish" "showpiece"
[11981] "Vijender" "Singh"
[11983] "2008" "MC"
[11985] "Mary" "Kom"
[11987] "2012" "ALSO"
[11989] "READ" "ALSO"
[11991] "READ" "Graphic"
[11993] "Amul" "congratulates"
[11995] "Lovlina" "Borgohain"
[11997] "animated" "doodle"
[11999] "bronze" "win"
[12001] "Tokyo" "Olympics"
[12003] "Classification" "Language"
[12005] "ENGLISH" "Publication-Type"
[12007] "Web" "Publication"
[12009] "Body" "Bollywood"
[12011] "stars" "Shah"
[12013] "Rukh" "Khan"
[12015] "Akshay" "Kumar"
[12017] "Taapsee" "Pannu"
[12019] "Thursday" "celebrated"
[12021] "Indian" "men's"
[12023] "hockey" "team's"
[12025] "bronze" "medal"
[12027] "win" "Tokyo"
[12029] "Olympics" "saying"
[12031] "made" "country"
[12033] "proud" "Indian"
[12035] "men's" "hockey"
[12037] "team" "rewrote"
[12039] "history" "claimed"
[12041] "Olympic" "medal"
[12043] "41" "years"
[12045] "beating" "plucky"
[12047] "Germany" "5-4"
[12049] "claim" "bronze"
[12051] "edge-of-the-seat" "play-off"
[12053] "match" "ongoing"
[12055] "Games" "Tokyo"
[12057] "However" "amid"
[12059] "virtual" "celebrations"
[12061] "social" "media"
[12063] "actor-filmmaker" "Farhan"
[12065] "Akhtar" "mistakenly"
[12067] "congratulated" "Indian"
[12069] "women's" "hockey"
[12071] "team" "yet"
[12073] "play" "bronze"
[12075] "wrote" "Go"
[12077] "girls" "proud"
[12079] "#teamIndia" "showing"
[12081] "exemplary" "fighting"
[12083] "spirit" "bringing"
[12085] "4th" "medal"
[12087] "super" "stuff"
[12089] "later" "deleted"
[12091] "tweet" "posted"
[12093] "without" "go"
[12095] "girls" "part"
[12097] "Needless" "say"
[12099] "Farhan" "brutally"
[12101] "trolled" "gaffe"
[12103] "given" "essayed"
[12105] "role" "late"
[12107] "Indian" "track"
[12109] "field" "sprinter"
[12111] "Milkha" "Singh"
[12113] "Bhaag" "Milkha"
[12115] "Bhaag" "represented"
[12117] "India" "1956"
[12119] "Summer" "Olympics"
[12121] "Melbourne" "1960"
[12123] "Summer" "Olympics"
[12125] "Rome" "1964"
[12127] "Summer" "Olympics"
[12129] "Tokyo" "Farhan"
[12131] "last" "seen"
[12133] "sports" "drama"
[12135] "Toofaan" "Directed"
[12137] "Rakeysh" "Om"
[12139] "Prakash" "Mehra"
[12141] "Toofaan" "revolves"
[12143] "around" "journey"
[12145] "local" "goon"
[12147] "Ajju" "Bhai"
[12149] "Farhan" "becoming"
[12151] "professional" "boxer"
[12153] "Aziz" "Ali"
[12155] "Actors" "Mrunal"
[12157] "Thakur" "Paresh"
[12159] "Rawal" "also"
[12161] "part" "movie"
[12163] "released" "Amazon"
[12165] "Prime" "Video"
[12167] "July" "16"
[12169] "Classification" "Language"
[12171] "ENGLISH" "Publication-Type"
[12173] "Newspaper" "Body"
[12175] "New" "Delhi"
[12177] "Aug" "7"
[12179] "Indian" "javelin"
[12181] "thrower" "Neeraj"
[12183] "Chopra" "Saturday"
[12185] "scripted" "history"
[12187] "clinching" "gold"
[12189] "medal" "87.58m"
[12191] "throw" "ongoing"
[12193] "Tokyo" "Olympics"
[12195] "became" "second"
[12197] "Indian" "athlete"
[12199] "win" "individual"
[12201] "gold" "medal"
[12203] "Olympics" "Neeraj"
[12205] "took" "first"
[12207] "position" "first"
[12209] "attempt" "throw"
[12211] "87.03m" "However"
[12213] "bettered" "performance"
[12215] "following" "round"
[12217] "87.58m" "throw"
[12219] "kept" "lead"
[12221] "third" "attempt"
[12223] "76.79m" "Neeraj's"
[12225] "gold" "men's"
[12227] "javelin" "throw"
[12229] "event" "took"
[12231] "India's" "medal"
[12233] "tally" "seven"
[12235] "Tokyo" "Olympics"
[12237] "bettering" "count"
[12239] "six" "medals"
[12241] "2012" "London"
[12243] "Olympics" "Meanwhile"
[12245] "social" "media"
[12247] "got" "flooded"
[12249] "reactions" "cricketers"
[12251] "actors" "politicians"
[12253] "former" "Olympians"
[12255] "people" "came"
[12257] "forward" "congratulate"
[12259] "Indian" "hero"
[12261] "made" "country"
[12263] "proud" "outclassing"
[12265] "participants" "style"
[12267] "reactions" "23-year-old"
[12269] "farmer's" "son"
[12271] "Khandra" "village"
[12273] "near" "Panipat"
[12275] "Haryana" "produced"
[12277] "second" "round"
[12279] "throw" "87.58m"
[12281] "finals" "stun"
[12283] "athletics" "world"
[12285] "end" "India's"
[12287] "100-year" "wait"
[12289] "track" "field"
[12291] "medal" "Olympics"
[12293] "Chopra" "won"
[12295] "country's" "seventh"
[12297] "medal" "first"
[12299] "gold" "Olympics"
[12301] "joined" "shooter"
[12303] "Abhinav" "Bindra"
[12305] "2008" "Beijing"
[12307] "Games" "India's"
[12309] "individual" "gold"
[12311] "winners" "showpiece"
[12313] "Published" "HT"
[12315] "Digital" "Content"
[12317] "Services" "permission"
[12319] "Hindustan" "Times"
[12321] "query" "respect"
[12323] "article" "content"
[12325] "requirement" "please"
[12327] "contact" "Editor"
[12329] "Classification" "Language"
[12331] "ENGLISH" "Publication-Type"
[12333] "Newswire" "Body"
[12335] "Xiaomi" "Sunday"
[12337] "announced" "gift"
[12339] "unit" "flagship"
[12341] "smartphone" "Mi"
[12343] "11" "Ultra"
[12345] "Indian" "athlete"
[12347] "won" "medal"
[12349] "recently" "concluded"
[12351] "Tokyo" "Olympics"
[12353] "2020" "announcement"
[12355] "made" "Xiaomi"
[12357] "India" "MD"
[12359] "Manu" "Kumar"
[12361] "Jain" "Twitter"
[12363] "handle" "Manu"
[12365] "tweeted" "smartphone"
[12367] "maker" "values"
[12369] "grit" "dedication"
[12371] "takes" "win"
[12373] "Olympics" "medal"
[12375] "added" "gesture"
[12377] "thanks" "Xiaomi"
[12379] "humbly" "gift"
[12381] "Mi" "11"
[12383] "Ultra" "Indian"
[12385] "Olympic" "medal"
[12387] "winners" "Super"
[12389] "phone" "Super"
[12391] "Heroes" "Tokyo"
[12393] "Olympics" "saw"
[12395] "best" "ever"
[12397] "performance" "Indian"
[12399] "contingent" "nation"
[12401] "won" "total"
[12403] "seven" "medals"
[12405] "highest" "ever"
[12407] "surpassing" "six"
[12409] "medals" "2012"
[12411] "Olympics" "performance"
[12413] "led" "Javelin"
[12415] "thrower" "Neeraj"
[12417] "Chopra" "won"
[12419] "Gold" "last"
[12421] "day" "Olympics"
[12423] "2020" "India's"
[12425] "first" "ever"
[12427] "Gold" "athletics"
[12429] "history" "Olympic"
[12431] "Games" "Apart"
[12433] "Neeraj" "Mirabai"
[12435] "Chanu" "Ravi"
[12437] "Kumar" "Dahiya"
[12439] "Lovlina" "Borgohain"
[12441] "PV" "Sindhu"
[12443] "Bajrang" "Punia"
[12445] "atheletes" "win"
[12447] "medals" "Tokyo"
[12449] "Xiaomi" "give"
[12451] "Mi" "11"
[12453] "Ultra" "unit"
[12455] "athletes" "Manu"
[12457] "confirmed" "member"
[12459] "Indian" "men's"
[12461] "hockey" "team"
[12463] "also" "get"
[12465] "smartphone" "albeit"
[12467] "Mi" "11X"
[12469] "Indian" "hockey"
[12471] "team" "won"
[12473] "Bronze" "medal"
[12475] "games" "first"
[12477] "sport" "since"
[12479] "1980" "Government"
[12481] "India" "well"
[12483] "different" "state"
[12485] "governments" "also"
[12487] "announced" "prizes"
[12489] "athletes" "well"
[12491] "Tokyo" "Olympics"
[12493] "Mi" "11"
[12495] "Ultra" "Xiaomi's"
[12497] "flagship" "smartphone"
[12499] "2021" "comes"
[12501] "top" "line"
[12503] "features" "like"
[12505] "Qualcomm" "Snapdragon"
[12507] "888" "SoC"
[12509] "6.67-inch" "QHD"
[12511] "+" "Super"
[12513] "AMOLED" "display"
[12515] "supports" "120Hz"
[12517] "one" "largest"
[12519] "sensors" "smartphone"
[12521] "camera" "Mi"
[12523] "11" "Ultra"
[12525] "features" "triple"
[12527] "rear" "camera"
[12529] "setup" "consists"
[12531] "50-megapixel" "1"
[12533] "1.12-inch" "primary"
[12535] "camera" "sensor"
[12537] "48-megapixel" "ultra-wide"
[12539] "angle" "camera"
[12541] "48-megapixel" "telephoto"
[12543] "camera" "120x"
[12545] "zoom" "One"
[12547] "highlights" "phone"
[12549] "additional" "1.1-inch"
[12551] "AMOLED" "display"
[12553] "sits" "next"
[12555] "rear" "camera"
[12557] "module" "can"
[12559] "used" "check"
[12561] "date" "time"
[12563] "notifications" "can"
[12565] "also" "double"
[12567] "viewfinder" "rear"
[12569] "camera" "allowing"
[12571] "click" "selfies"
[12573] "smartphone" "packs"
[12575] "5000" "mAh"
[12577] "battery" "67W"
[12579] "fast" "charging"
[12581] "support" "smartphone"
[12583] "ships" "55W"
[12585] "fast" "charger"
[12587] "inside" "box"
[12589] "though" "Graphic"
[12591] "Xiaomi" "gift"
[12593] "Mi" "11"
[12595] "Ultra" "Indian"
[12597] "athlete" "won"
[12599] "medal" "Tokyo"
[12601] "Olympics" "2020"
[12603] "Classification" "Language"
[12605] "ENGLISH" "Publication-Type"
[12607] "Web" "Publication"
[12609] "Body" "Bhopal"
[12611] "Chief" "Minister"
[12613] "Shivraj" "Singh"
[12615] "Chouhan" "congratulated"
[12617] "ace" "badminton"
[12619] "player" "PV"
[12621] "Sindhu" "winning"
[12623] "bronze" "medal"
[12625] "women's" "badminton"
[12627] "Tokyo" "Olympics"
[12629] "Chief" "Minister"
[12631] "also" "congratulated"
[12633] "hockey" "team"
[12635] "achievement" "Expressing"
[12637] "happiness" "CM"
[12639] "said" "PV"
[12641] "Sindhu" "won"
[12643] "medal" "also"
[12645] "honoured" "India"
[12647] "wonderful" "performance"
[12649] "won" "brilliantly"
[12651] "playing" "Chinese"
[12653] "player" "Many"
[12655] "junior" "players"
[12657] "inspired" "victory"
[12659] "remarkable" "performance"
[12661] "@Pvsindhu" "makes"
[12663] "us" "proud"
[12665] "Heartiest" "congratulations"
[12667] "winning" "Bronze"
[12669] "medal" "Badminton"
[12671] "Tokyo" "best"
[12673] "wishes" "future"
[12675] "games" "inspired"
[12677] "lot" "budding"
[12679] "badminton" "players"
[12681] "today" "Chouhan"
[12683] "said" "tweet"
[12685] "also" "congratulated"
[12687] "sports" "lovers"
[12689] "winning" "medal"
[12691] "tweeting" "regard"
[12693] "CM" "extended"
[12695] "heartfelt" "congratulations"
[12697] "Indian" "men's"
[12699] "hockey" "team"
[12701] "defeating" "Britain"
[12703] "Tokyo" "Olympics"
[12705] "said" "hockey"
[12707] "players" "India"
[12709] "performed" "remarkably"
[12711] "quarterfinal" "match"
[12713] "victory" "amazing"
[12715] "India" "got"
[12717] "victory" "41"
[12719] "years" "reached"
[12721] "semi" "final"
[12723] "match" "CM"
[12725] "extended" "best"
[12727] "wishes" "Indian"
[12729] "Hockey" "team"
[12731] "next" "match"
[12733] "Classification" "Language"
[12735] "ENGLISH" "Publication-Type"
[12737] "Newspaper" "Body"
[12739] "New" "Delhi"
[12741] "July" "23"
[12743] "Indian" "Olympic"
[12745] "Association" "IOA"
[12747] "today" "roped"
[12749] "Adani" "Group"
[12751] "sponsor" "Indian"
[12753] "contingent" "ongoing"
[12755] "2020" "Tokyo"
[12757] "Games" "development"
[12759] "announced" "IOA"
[12761] "secretary" "general"
[12763] "Rajiv" "Mehta"
[12765] "Tokyo" "Taking"
[12767] "Twitter" "Mehta"
[12769] "wrote" "Happy"
[12771] "inform" "one"
[12773] "sponsorship" "confirmed"
[12775] "Adani" "Group"
[12777] "IOA" "Olympics"
[12779] "since" "last"
[12781] "update" "16th"
[12783] "July" "Adani"
[12785] "confirmed" "us"
[12787] "good" "sponsorship"
[12789] "association" "support"
[12791] "future" "also"
[12793] "added" "Adani"
[12795] "Sportsline" "also"
[12797] "took" "Twitter"
[12799] "saying" "Proud"
[12801] "announce" "now"
[12803] "Official" "Partner"
[12805] "Team" "India"
[12807] "#TokyoOlympics" "roar"
[12809] "together" "support"
[12811] "team" "back"
[12813] "conquering" "Olympic"
[12815] "games" "IOA"
[12817] "earlier" "entered"
[12819] "sponsorship" "deals"
[12821] "various" "private"
[12823] "entities" "including"
[12825] "diary" "giant"
[12827] "Amul" "mobile"
[12829] "gaming" "platform"
[12831] "MPL" "Sports"
[12833] "Foundation" "JSW"
[12835] "Sports" "among"
[12837] "others" "IOA"
[12839] "inked" "deals"
[12841] "dropping" "Chinese"
[12843] "sportswear" "brand"
[12845] "Li" "Ning"
[12847] "Indian" "team's"
[12849] "official" "kit"
[12851] "sponsor" "Tokyo"
[12853] "Olympics" "stating"
[12855] "country's" "athletes"
[12857] "wear" "unbranded"
[12859] "apparel" "Games"
[12861] "Mary" "Kom"
[12863] "Manpreet" "lead"
[12865] "India's" "charge"
[12867] "Parade" "Nations"
[12869] "Five-time" "world"
[12871] "champion" "Mary"
[12873] "Kom" "men's"
[12875] "hockey" "captain"
[12877] "Manpreet" "Singh"
[12879] "led" "way"
[12881] "India" "made"
[12883] "way" "Parade"
[12885] "Nations" "Opening"
[12887] "Ceremony" "Tokyo"
[12889] "Olympics" "Friday"
[12891] "Japan" "National"
[12893] "Stadium" "Back"
[12895] "home" "Union"
[12897] "Minister" "Youth"
[12899] "Affairs" "Sports"
[12901] "Anurag" "Thakur"
[12903] "also" "seen"
[12905] "waving" "Indian"
[12907] "flag" "Indian"
[12909] "contingent" "made"
[12911] "way" "stadium"
[12913] "Twenty-five" "members"
[12915] "Indian" "contingent"
[12917] "attended" "Opening"
[12919] "Ceremony" "amid"
[12921] "COVID-19" "concerns"
[12923] "Japanese" "capital"
[12925] "much" "debate"
[12927] "fate" "Tokyo"
[12929] "Olympics" "thanks"
[12931] "COVID-19" "situation"
[12933] "Games" "finally"
[12935] "declared" "open"
[12937] "Friday" "fireworks"
[12939] "kickstarted" "Opening"
[12941] "Ceremony" "Japan"
[12943] "National" "Stadium"
[12945] "Published" "HT"
[12947] "Digital" "Content"
[12949] "Services" "permission"
[12951] "MINT" "query"
[12953] "respect" "article"
[12955] "content" "requirement"
[12957] "please" "contact"
[12959] "Editor" "Classification"
[12961] "Language" "ENGLISH"
[12963] "Publication-Type" "Newspaper"
[12965] "Body" "Tokyo"
[12967] "Olympics" "2020"
[12969] "opening" "ceremony"
[12971] "Parade" "Nations"
[12973] "India" "enter"
[12975] "21st" "205"
[12977] "contingents" "order"
[12979] "decided" "Tokyo"
[12981] "Olympics" "opening"
[12983] "ceremony" "India"
[12985] "21st" "205"
[12987] "contingents" "Parade"
[12989] "Nations" "United"
[12991] "Arab" "Emirates"
[12993] "among" "first"
[12995] "10" "entrants"
[12997] "Australia" "Austria"
[12999] "enter" "Ukraine"
[13001] "Uruguay" "Tokyo"
[13003] "Olympics" "opening"
[13005] "ceremony" "order"
[13007] "decided" "teams"
[13009] "enter" "stadium"
[13011] "alphabetical" "order"
[13013] "according" "language"
[13015] "selected" "organising"
[13017] "committee" "generally"
[13019] "dominant" "language"
[13021] "host" "city"
[13023] "announcers" "first"
[13025] "call" "country's"
[13027] "name" "French"
[13029] "English" "official"
[13031] "languages" "Games"
[13033] "according" "Rule"
[13035] "23" "Olympic"
[13037] "Charter" "chosen"
[13039] "language" "example"
[13041] "2018" "Winter"
[13043] "Olympics" "PyeongChang"
[13045] "nations" "entered"
[13047] "according" "Hangul"
[13049] "alphabetical" "order"
[13051] "2014" "Sochi"
[13053] "Winter" "Olympics"
[13055] "Cyrillic" "alphabet"
[13057] "used" "exceptions"
[13059] "rule" "Parade"
[13061] "Nations" "always"
[13063] "begins" "Greece"
[13065] "host" "ancient"
[13067] "Olympics" "first"
[13069] "modern" "one"
[13071] "host" "nation"
[13073] "always" "closes"
[13075] "ceremony" "year"
[13077] "order" "promote"
[13079] "future" "editions"
[13081] "IOC" "wanted"
[13083] "next" "two"
[13085] "Olympic" "hosts"
[13087] "precede" "Japan"
[13089] "order" "end"
[13091] "Friday" "2028"
[13093] "hosts" "United"
[13095] "States" "2024"
[13097] "hosts" "France"
[13099] "Team" "Japan"
[13101] "another" "change"
[13103] "traditional" "marching"
[13105] "order" "Refugee"
[13107] "Olympic" "Team"
[13109] "follow" "Greece"
[13111] "number" "two"
[13113] "order" "Tokyo"
[13115] "Olympics" "teams"
[13117] "enter" "according"
[13119] "names" "Gojuon"
[13121] "Japan's" "fifty-sound"
[13123] "phonetic" "order"
[13125] "also" "used"
[13127] "dictionaries" "India"
[13129] "Indo" "Japanese"
[13131] "transliteration" "march"
[13133] "21" "boxer"
[13135] "Mary" "Kom"
[13137] "men's" "hockey"
[13139] "captain" "Manpreet"
[13141] "Singh" "flag-bearers"
[13143] "Russian" "contingent"
[13145] "disallowed" "use"
[13147] "country's" "name"
[13149] "flag" "anthem"
[13151] "due" "doping-related"
[13153] "sanctions" "compete"
[13155] "acronym" "ROC"
[13157] "Russian" "Olympic"
[13159] "Committee" "third"
[13161] "enter" "Greece"
[13163] "Refugee" "Olympic"
[13165] "Team" "EOR"
[13167] "According" "Japanese"
[13169] "alphabetical" "order"
[13171] "UAE" "Arabu"
[13173] "Shuchokoku" "Renpo"
[13175] "come" "Algeria"
[13177] "Arujeria" "Australia"
[13179] "Osutoraria" "Austria"
[13181] "Osutoria" "37"
[13183] "38" "respectively"
[13185] "coming" "nations"
[13187] "Uzbekistan" "Uzubekisutan"
[13189] "Uruguay" "Uruguai"
[13191] "Japan" "always"
[13193] "utilised" "alphabetical"
[13195] "order" "Athletes"
[13197] "competing" "Japan's"
[13199] "past" "three"
[13201] "Olympics" "1964"
[13203] "Summer" "Games"
[13205] "Tokyo" "1972"
[13207] "Winter" "Games"
[13209] "Sapporo" "1998"
[13211] "Winter" "Games"
[13213] "Nagano" "marched"
[13215] "according" "English"
[13217] "alphabet" "promote"
[13219] "international" "understanding"
[13221] "According" "Kyodo"
[13223] "news" "agency"
[13225] "decision" "thrust"
[13227] "Japanese" "language"
[13229] "spotlight" "iconic"
[13231] "parade" "athletes"
[13233] "made" "hope"
[13235] "promoting" "Japan's"
[13237] "culture" "world's"
[13239] "biggest" "stage"
[13241] "chosen" "language"
[13243] "led" "notable"
[13245] "incidents" "past"
[13247] "opening" "ceremonies"
[13249] "Spanish" "Catalan"
[13251] "official" "languages"
[13253] "1992" "Barcelona"
[13255] "Games" "due"
[13257] "political" "sensitivity"
[13259] "around" "issue"
[13261] "language" "region"
[13263] "French" "alphabetical"
[13265] "order" "used"
[13267] "Parade" "Nations"
[13269] "offend" "either"
[13271] "group" "IOC"
[13273] "president" "Juan"
[13275] "Antonio" "Samaranch"
[13277] "Barcelona" "mayor"
[13279] "Pasqual" "Maragall"
[13281] "spoke" "French"
[13283] "press" "conference"
[13285] "opening" "day"
[13287] "instead" "Spanish"
[13289] "Catalan" "According"
[13291] "Chinese" "stroke"
[13293] "system" "used"
[13295] "2008" "Beijing"
[13297] "Olympics" "five"
[13299] "athletes" "Guinea"
[13301] "first" "ones"
[13303] "enter" "openers"
[13305] "Greece" "Australia"
[13307] "202nd" "just"
[13309] "ahead" "Zambia"
[13311] "according" "number"
[13313] "strokes" "required"
[13315] "write" "first"
[13317] "character" "country's"
[13319] "names" "2004"
[13321] "Athens" "Olympics"
[13323] "Greek" "team"
[13325] "usually" "first"
[13327] "enter" "entered"
[13329] "last" "hosts"
[13331] "According" "Greek"
[13333] "alphabet" "two-athlete"
[13335] "strong" "Saint"
[13337] "Lucia" "first"
[13339] "ones" "enter"
[13341] "crowd" "77,000"
[13343] "almost" "half"
[13345] "size" "small"
[13347] "island" "nation's"
[13349] "population" "awesome"
[13351] "feeling" "first"
[13353] "team" "stadium"
[13355] "front" "world"
[13357] "marathoner" "Saint"
[13359] "Lucia" "flag"
[13361] "bearer" "Zepherinus"
[13363] "Joseph" "told"
[13365] "Guardian" "eve"
[13367] "ceremony" "Usually"
[13369] "end" "alphabet"
[13371] "TV" "companies"
[13373] "go" "ad"
[13375] "break" "St"
[13377] "Lucia" "appear"
[13379] "time" "world"
[13381] "get" "chance"
[13383] "see" "us"
[13385] "flag" "Classification"
[13387] "Language" "ENGLISH"
[13389] "Publication-Type" "Newspaper"
[13391] "Body" "New"
[13393] "Delhi" "Aug"
[13395] "6" "Haryana"
[13397] "government" "announced"
[13399] "cash" "reward"
[13401] "Rs" "50"
[13403] "lakh" "state's"
[13405] "nine" "women's"
[13407] "hockey" "players"
[13409] "Friday" "Post"
[13411] "play-off" "match"
[13413] "Indian" "women's"
[13415] "hockey" "team"
[13417] "Friday" "Haryana"
[13419] "Chief" "Minister"
[13421] "Manohar" "Lal"
[13423] "Khattar" "tweeted"
[13425] "Haryana" "government"
[13427] "award" "Rs"
[13429] "50" "lakhs"
[13431] "nine" "members"
[13433] "Olympic" "women's"
[13435] "hockey" "team"
[13437] "Haryana" "Haryana"
[13439] "Government" "award"
[13441] "Rs" "50"
[13443] "lakhs" "nine"
[13445] "members" "Olympics"
[13447] "women's" "hockey"
[13449] "team" "Haryana"
[13451] "congratulate" "Indian"
[13453] "team" "praiseworthy"
[13455] "performance" "Tokyo"
[13457] "Olympics" "Manohar"
[13459] "Lal" "@mlkhattar"
[13461] "August" "6"
[13463] "2021" "Tokyo"
[13465] "Olympics" "2020"
[13467] "bronze" "medal"
[13469] "slipped" "grasp"
[13471] "Indian" "women's"
[13473] "hockey" "team"
[13475] "earned" "plaudits"
[13477] "gritty" "display"
[13479] "Great" "Britain"
[13481] "play-off" "match"
[13483] "Friday" "CM"
[13485] "Khattar" "congratulated"
[13487] "Indian" "women's"
[13489] "team" "best-ever"
[13491] "performance" "ongoing"
[13493] "Olympics" "finished"
[13495] "fourth" "losing"
[13497] "3-4" "Great"
[13499] "Britain" "Indians"
[13501] "played" "hearts"
[13503] "overcame" "two-goal"
[13505] "deficit" "lead"
[13507] "3-2" "halftime"
[13509] "desperate" "Great"
[13511] "Britain" "gave"
[13513] "everything" "second"
[13515] "half" "scored"
[13517] "two" "goals"
[13519] "snatch" "match"
[13521] "India's" "hands"
[13523] "Back" "Haryana"
[13525] "Punjab" "families"
[13527] "many" "players"
[13529] "remained" "glued"
[13531] "television" "sets"
[13533] "watch" "anticipation"
[13535] "Indian" "win"
[13537] "end" "game"
[13539] "skipper" "Rani's"
[13541] "father" "Rampal"
[13543] "told" "media"
[13545] "Shahabad" "home"
[13547] "Kurukshetra" "Indian"
[13549] "team" "played"
[13551] "well" "unlucky"
[13553] "lose" "maiden"
[13555] "Olympic" "medal"
[13557] "said" "team's"
[13559] "performance" "Olympics"
[13561] "positive" "impact"
[13563] "game" "encourage"
[13565] "youngsters" "take"
[13567] "sport" "Goalkeeper"
[13569] "Savita" "Punia's"
[13571] "father" "Mahender"
[13573] "Punia" "said"
[13575] "need" "feel"
[13577] "dejected" "Match"
[13579] "result" "may"
[13581] "side" "played"
[13583] "well" "said"
[13585] "Neha" "Goyal's"
[13587] "mother" "Savitri"
[13589] "turned" "emotional"
[13591] "watching" "game"
[13593] "Notably" "women"
[13595] "hockey" "players"
[13597] "come" "humble"
[13599] "backgrounds" "Published"
[13601] "HT" "Digital"
[13603] "Content" "Services"
[13605] "permission" "MINT"
[13607] "query" "respect"
[13609] "article" "content"
[13611] "requirement" "please"
[13613] "contact" "Editor"
[13615] "Classification" "Language"
[13617] "ENGLISH" "Publication-Type"
[13619] "Newspaper" "Body"
[13621] "historic" "win"
[13623] "ace" "badminton"
[13625] "player" "PV"
[13627] "Sindhu" "won"
[13629] "second" "Olympic"
[13631] "medal" "Tokyo"
[13633] "Olympic" "2020"
[13635] "heart" "every"
[13637] "Indian" "brimming"
[13639] "pride" "Indian"
[13641] "shuttler" "won"
[13643] "bronze" "defeating"
[13645] "China's" "Bingjiao"
[13647] "historic" "win"
[13649] "stupendous" "show"
[13651] "However" "one"
[13653] "Twitter" "user"
[13655] "wanted" "PV"
[13657] "Sindhu" "felicitated"
[13659] "Mahindra" "Thar"
[13661] "historic" "performance"
[13663] "Twitter" "user"
[13665] "Mr" "Wadewale"
[13667] "tagged" "Mahindra"
[13669] "Group" "Chairman"
[13671] "Anand" "Mahindra"
[13673] "PV" "Sindhu"
[13675] "tweet" "wrote"
[13677] "deserves" "Thar"
[13679] "performance" "#TharforPVsindhu"
[13681] "sic" "deserves"
[13683] "Thar" "performance"
[13685] "Mr" "Wadewale"
[13687] "@shubhwadewale" "Anand"
[13689] "Mahindra" "took"
[13691] "Twitter" "respond"
[13693] "user" "saying"
[13695] "already" "one"
[13697] "Mahindra" "Thar"
[13699] "parked" "garage"
[13701] "61-year-old" "businessman"
[13703] "also" "shared"
[13705] "picture" "2016"
[13707] "PV" "Sindhu"
[13709] "Sakshi" "Malik"
[13711] "can" "seen"
[13713] "riding" "red"
[13715] "Mahindra" "Thar"
[13717] "already" "one"
[13719] "garage" "sic"
[13721] "|" "Anand"
[13723] "Mahindra" "responded"
[13725] "tweet" "already"
[13727] "one" "garage"
[13729] "anand" "mahindra"
[13731] "@anandmahindra" "uninitiated"
[13733] "PV" "Sindhu"
[13735] "Sakshi" "Malik"
[13737] "won" "medals"
[13739] "Rio" "Olympics"
[13741] "2016" "Anand"
[13743] "Mahindra" "announced"
[13745] "Twitter" "company"
[13747] "gifting" "young"
[13749] "achievers" "brand-new"
[13751] "customised" "SUV"
[13753] "PV" "Sindhu"
[13755] "won" "silver"
[13757] "medal" "Rio"
[13759] "Olympics" "wrestler"
[13761] "Sakshi" "Malik"
[13763] "brought" "home"
[13765] "bronze" "medal"
[13767] "another" "tweet"
[13769] "Anand" "Mahindra"
[13771] "also" "lauded"
[13773] "PV" "Sindhu"
[13775] "inexplicable" "performance"
[13777] "resilience" "commitment"
[13779] "Olympics" "mental"
[13781] "strength" "top"
[13783] "podium" "Think"
[13785] "much" "resilience"
[13787] "commitment" "requires"
[13789] "rise" "demoralising"
[13791] "defeat" "give"
[13793] "still" "Golden"
[13795] "Girl" "@Pvsindhu1"
[13797] "sic" "wrote"
[13799] "already" "one"
[13801] "garage" "anand"
[13803] "mahindra" "@anandmahindra"
[13805] "PV" "Sindhu"
[13807] "became" "first"
[13809] "Indian" "woman"
[13811] "win" "two"
[13813] "Olympic" "medals"
[13815] "ALSO" "READ"
[13817] "|" "ALSO"
[13819] "READ" "|"
[13821] "Graphic" "Anand"
[13823] "Mahindra" "reacts"
[13825] "Twitter" "user"
[13827] "demanding" "Thar"
[13829] "PV" "Sindhu"
[13831] "Olympics" "Bronze"
[13833] "win" "Classification"
[13835] "Language" "ENGLISH"
[13837] "Publication-Type" "Web"
[13839] "Publication" "Body"
[13841] "designed" "pattern"
[13843] "colour" "work"
[13845] "signify" "everything"
[13847] "games" "Tom"
[13849] "Daley" "shared"
[13851] "social" "media"
[13853] "Olympic" "gold"
[13855] "medallist" "Tom"
[13857] "Daley" "recently"
[13859] "photographed" "knitting"
[13861] "watching" "match"
[13863] "year's" "event"
[13865] "finally" "completed"
[13867] "project" "took"
[13869] "social" "media"
[13871] "share" "pictures"
[13873] "cardigan" "made"
[13875] "white" "cardigan"
[13877] "featured" "Olympic"
[13879] "rings" "also"
[13881] "Team" "GB"
[13883] "logo" "back"
[13885] "Calling" "Olympic"
[13887] "cardigan" "Daley"
[13889] "wrote" "social"
[13891] "media" "got"
[13893] "Tokyo" "wanted"
[13895] "make" "something"
[13897] "remind" "Olympics"
[13899] "look" "back"
[13901] "future" "designed"
[13903] "pattern" "colour"
[13905] "work" "signify"
[13907] "everything" "games"
[13909] "added" "back"
[13911] "went" "classic"
[13913] "@teamgb" "logo"
[13915] "shoulders" "flag"
[13917] "GBR" "front"
[13919] "wanted" "keep"
[13921] "simple" "tried"
[13923] "best" "embroider"
[13925] "TOKYO" "Japanese"
[13927] "either" "sleeve"
[13929] "embroidered" "Union"
[13931] "Jack" "GBR"
[13933] "logo" "Netizens"
[13935] "keep" "calm"
[13937] "sweetest" "person"
[13939] "alive" "Following"
[13941] "knitting" "progress"
[13943] "Olympics" "moment"
[13945] "user" "commented"
[13947] "Another" "wrote"
[13949] "amazing" "knit"
[13951] "quickly" "paint"
[13953] "wool" "creative"
[13955] "another" "social"
[13957] "media" "user"
[13959] "commented" "27-year-old"
[13961] "British" "diver"
[13963] "runs" "separate"
[13965] "page" "Instagram"
[13967] "dedicated" "entirely"
[13969] "knitting" "earlier"
[13971] "post" "showed"
[13973] "woollen" "case"
[13975] "knitted" "gold"
[13977] "medal" "won"
[13979] "year" "Learning"
[13981] "knit" "crochet"
[13983] "helped" "much"
[13985] "Olympics" "won"
[13987] "GOLD" "yesterday"
[13989] "made" "little"
[13991] "medal" "case"
[13993] "wrote" "Daley"
[13995] "also" "knitted"
[13997] "doggy" "jumpers"
[13999] "shared" "pictures"
[14001] "social" "media"
[14003] "Classification" "Language"
[14005] "ENGLISH" "Publication-Type"
[14007] "Newspaper" "Body"
[14009] "sedate" "start"
[14011] "Indians" "Tokyo"
[14013] "Olympics" "10th"
[14015] "day" "PV"
[14017] "Sindhu" "men's"
[14019] "hockey" "team"
[14021] "lifted" "spirits"
[14023] "crores" "people"
[14025] "country" "wins"
[14027] "respective" "encounters"
[14029] "Sunday" "victories"
[14031] "historic" "way"
[14033] "Shuttler" "Sindhu"
[14035] "scripted" "history"
[14037] "becoming" "first"
[14039] "Indian" "woman"
[14041] "collect" "two"
[14043] "medals" "Olympics"
[14045] "defeating" "China's"
[14047] "Bingjiao" "21-13"
[14049] "21-15" "bronze"
[14051] "medal" "Later"
[14053] "Manpreet-led" "hockey"
[14055] "team" "made"
[14057] "Olympic" "semifinal"
[14059] "49" "years"
[14061] "beat" "Great"
[14063] "Britain" "3-1"
[14065] "cruise" "last"
[14067] "four" "Sunday"
[14069] "day" "started"
[14071] "Satish" "Kumar"
[14073] "+" "91kg"
[14075] "putting" "gutsy"
[14077] "performance" "reigning"
[14079] "world" "champion"
[14081] "Bakhodir" "Jalolov"
[14083] "enough" "upstage"
[14085] "rampaging" "Uzbek"
[14087] "Indian" "boxer"
[14089] "made" "quarterfinal"
[14091] "exit" "Taking"
[14093] "ring" "multiple"
[14095] "stitches" "forehead"
[14097] "chin" "sustaining"
[14099] "cuts" "pre-quarters"
[14101] "Satish" "lost"
[14103] "0-5" "scoreline"
[14105] "reflective" "brave"
[14107] "performance" "Indian"
[14109] "equestrian" "Fouaad"
[14111] "Mirza" "picked"
[14113] "11.20" "penalty"
[14115] "points" "placed"
[14117] "22nd" "cross-country"
[14119] "round" "Olympics"
[14121] "Sunday" "good"
[14123] "round" "individual"
[14125] "showjumping" "qualifier"
[14127] "Monday" "ensure"
[14129] "Mirza" "India's"
[14131] "equestrian" "Olympics"
[14133] "two" "decades"
[14135] "horse" "Seigneur"
[14137] "Medicott" "remain"
[14139] "top" "25"
[14141] "make" "eventing"
[14143] "individual" "jumping"
[14145] "final" "evening"
[14147] "win" "Sindhu"
[14149] "becomes" "second"
[14151] "Indian" "Sushil"
[14153] "Kumar" "win"
[14155] "two" "individual"
[14157] "Olympic" "medals"
[14159] "won" "silver"
[14161] "last" "Olympics"
[14163] "Rio" "losing"
[14165] "final" "Carolina"
[14167] "Marin" "Sindhu"
[14169] "earlier" "lost"
[14171] "world" "1"
[14173] "Tai" "Tzu"
[14175] "Ying" "last"
[14177] "four" "Saturday"
[14179] "immaculate" "Sindhu"
[14181] "colour" "Saturday"
[14183] "came" "back"
[14185] "renewed" "vigour"
[14187] "Sunday" "dropped"
[14189] "single" "game"
[14191] "year's" "Olympics"
[14193] "five" "matches"
[14195] "won" "ten"
[14197] "match" "wins"
[14199] "Olympics" "Incidentally"
[14201] "Indian" "badminton"
[14203] "player" "Saina"
[14205] "Nehwal" "won"
[14207] "bronze" "London"
[14209] "Olympics" "2012"
[14211] "Indian" "badminton"
[14213] "player" "medal"
[14215] "Olympics" "second"
[14217] "nine" "Sindhu"
[14219] "also" "fourth"
[14221] "women's" "singles"
[14223] "player" "get"
[14225] "successive" "medals"
[14227] "Olympics" "Susi"
[14229] "Susanti" "gold"
[14231] "1992" "bronze"
[14233] "1996" "Bang"
[14235] "Soo-Hyun" "silver"
[14237] "1992" "gold"
[14239] "1996" "Zhang"
[14241] "gold" "2004"
[14243] "2008" "Sindhu"
[14245] "looked" "tremendous"
[14247] "form" "throughout"
[14249] "tournament" "started"
[14251] "confidently" "open"
[14253] "4-0" "lead"
[14255] "opening" "game"
[14257] "set" "tone"
[14259] "match" "early"
[14261] "Chinese" "player"
[14263] "playing" "catch"
[14265] "throughout" "Sindhu"
[14267] "almost" "led"
[14269] "start" "finish"
[14271] "eight-time" "former"
[14273] "Olympic" "champions"
[14275] "scored" "three"
[14277] "field" "goals"
[14279] "Dilpreet" "Singh"
[14281] "7th" "minute"
[14283] "Gurjant" "Singh"
[14285] "16th" "Hardik"
[14287] "Singh" "57th"
[14289] "seal" "win"
[14291] "Great" "Britain's"
[14293] "lone" "goal"
[14295] "scored" "Sam"
[14297] "Ward" "penalty"
[14299] "corner" "45th"
[14301] "minute" "India"
[14303] "take" "world"
[14305] "champions" "Belgium"
[14307] "semifinal" "Tuesday"
[14309] "India's" "last"
[14311] "eight" "Olympic"
[14313] "gold" "medals"
[14315] "came" "way"
[14317] "back" "1980"
[14319] "Moscow" "Games"
[14321] "semifinals" "edition"
[14323] "six" "teams"
[14325] "participated" "event"
[14327] "country" "gave"
[14329] "world" "stalwarts"
[14331] "like" "Major"
[14333] "Dhyan" "Chand"
[14335] "Balbir" "Singh"
[14337] "Senior" "among"
[14339] "others" "especially"
[14341] "painful" "watch"
[14343] "hockey" "teams"
[14345] "Olympic" "debacles"
[14347] "edition" "last"
[14349] "time" "India"
[14351] "featured" "semifinals"
[14353] "Olympics" "1972"
[14355] "Munich" "Games"
[14357] "lost" "0-2"
[14359] "arch-rivals" "Pakistan"
[14361] "edition" "American"
[14363] "swimming" "legend"
[14365] "Mark" "Spitz"
[14367] "won" "seven"
[14369] "gold" "medals"
[14371] "feat" "overshadowed"
[14373] "massacre" "11"
[14375] "Israeli" "athletes"
[14377] "coaches" "Palestinian"
[14379] "terrorists" "Olympic"
[14381] "Village" "Belgium"
[14383] "defeated" "Spain"
[14385] "3-1" "another"
[14387] "quarterfinal" "seal"
[14389] "place" "last"
[14391] "four" "round"
[14393] "semifinal" "men's"
[14395] "hockey" "competition"
[14397] "played" "Australia"
[14399] "Germany" "Medals"
[14401] "Tally" "1"
[14403] "China" "24"
[14405] "14" "13"
[14407] "51" "2"
[14409] "US" "20"
[14411] "23" "16"
[14413] "59" "3"
[14415] "Japan" "17"
[14417] "5" "9"
[14419] "31" "4"
[14421] "Australia" "14"
[14423] "3" "14"
[14425] "31" "5"
[14427] "ROC" "12"
[14429] "19" "13"
[14431] "44" "6"
[14433] "GB" "10"
[14435] "10" "12"
[14437] "32" "7"
[14439] "France" "5"
[14441] "10" "6"
[14443] "21" "8"
[14445] "SKorea" "5"
[14447] "4" "8"
[14449] "17" "9"
[14451] "Italy" "4"
[14453] "8" "15"
[14455] "27" "10"
[14457] "Holland" "4"
[14459] "7" "6"
[14461] "17" "59"
[14463] "India" "0"
[14465] "1" "1"
[14467] "2" "Indians"
[14469] "action" "today"
[14471] "Games" "ATHLETICS"
[14473] "7.25" "Dutee"
[14475] "Chand" "Women's"
[14477] "200m" "Heat"
[14479] "16.30L" "Kamalpreet"
[14481] "Kaur" "Women's"
[14483] "Discus" "Final"
[14485] "EQUESTRIAN" "6.00"
[14487] "Eventing" "Second"
[14489] "Hose" "Inspection"
[14491] "13.30" "Fouaad"
[14493] "Mirza" "Eventing"
[14495] "Jumping" "17.15"
[14497] "Eventing" "Individual"
[14499] "Jumping" "Final"
[14501] "HOCKEY" "8.30"
[14503] "India" "vs"
[14505] "Australia" "women's"
[14507] "SHOOTING" "8.00"
[14509] "Sanjeev" "Rajput"
[14511] "Aishwary" "Pratap"
[14513] "Singh" "ar"
[14515] "Men's" "50m"
[14517] "Rifle" "3"
[14519] "Positions" "Qualification"
[14521] "13.20" "Men's"
[14523] "50m" "Rifle"
[14525] "3" "Positions"
[14527] "Final" "Classification"
[14529] "Language" "ENGLISH"
[14531] "Publication-Type" "Newspaper"
[14533] "Body" "India"
[14535] "Aug" "6"
[14537] "India" "put"
[14539] "valiant" "fight"
[14541] "bronze" "medal"
[14543] "match" "Great"
[14545] "Britain" "Tokyo"
[14547] "Olympics" "Friday"
[14549] "Despite" "going"
[14551] "2-0" "one"
[14553] "point" "Indian"
[14555] "team" "scored"
[14557] "three" "quick"
[14559] "goals" "take"
[14561] "lead" "match"
[14563] "put" "Rio"
[14565] "Olympics" "gold"
[14567] "medalists" "backfoot"
[14569] "Britain" "bounced"
[14571] "back" "win"
[14573] "match" "4-3"
[14575] "Indian" "team's"
[14577] "superb" "efforts"
[14579] "Tokyo" "applauded"
[14581] "fans" "praised"
[14583] "team" "never"
[14585] "giving" "throughout"
[14587] "campaign" "Prime"
[14589] "Minister" "Narendra"
[14591] "Modi" "also"
[14593] "took" "Twitter"
[14595] "show" "praise"
[14597] "India's" "brave"
[14599] "performance" "Tokyo"
[14601] "narrowly" "missed"
[14603] "medal" "Women's"
[14605] "Hockey" "team"
[14607] "reflects" "spirit"
[14609] "New" "India-"
[14611] "give" "best"
[14613] "scale" "new"
[14615] "frontiers" "importantly"
[14617] "success" "#Tokyo2020"
[14619] "motivate" "young"
[14621] "daughters" "India"
[14623] "take" "Hockey"
[14625] "excel" "Proud"
[14627] "team" "wrote"
[14629] "Twitter" "India's"
[14631] "best-ever" "showing"
[14633] "Olympics" "women's"
[14635] "hockey" "India"
[14637] "featured" "twice"
[14639] "Games" "finished"
[14641] "fourth" "position"
[14643] "1980" "well"
[14645] "qualified" "tournament"
[14647] "competed" "six-team"
[14649] "round-robin" "format"
[14651] "India" "qualified"
[14653] "Olympics" "first"
[14655] "time" "2016"
[14657] "finished" "12th"
[14659] "position" "12"
[14661] "teams" "time"
[14663] "manged" "finish"
[14665] "fourth" "position"
[14667] "showcasing" "rise"
[14669] "years" "Published"
[14671] "HT" "Digital"
[14673] "Content" "Services"
[14675] "permission" "Hindustan"
[14677] "Times" "query"
[14679] "respect" "article"
[14681] "content" "requirement"
[14683] "please" "contact"
[14685] "Editor" "Classification"
[14687] "Language" "ENGLISH"
[14689] "Publication-Type" "Newswire"
[14691] "Body" "India"
[14693] "July" "27"
[14695] "July" "27"
[14697] "promises" "positive"
[14699] "day" "Indians"
[14701] "hope" "shooters"
[14703] "bring" "campaign"
[14705] "back" "track"
[14707] "mixed" "team"
[14709] "events" "Saurabh"
[14711] "Chaudhary" "Manu"
[14713] "Bhaker" "Abhishek"
[14715] "Verma" "Yashaswini"
[14717] "Deswal" "look"
[14719] "rise" "disappointments"
[14721] "individual" "events"
[14723] "give" "India"
[14725] "medals" "Boxer"
[14727] "Lovlina" "start"
[14729] "campaign" "round"
[14731] "16" "men's"
[14733] "hockey" "team"
[14735] "look" "bounce"
[14737] "back" "crushing"
[14739] "1-7" "loss"
[14741] "Australia" "get"
[14743] "back" "winning"
[14745] "ways" "Spain"
[14747] "Paddler" "Sharath"
[14749] "Kamal" "carry"
[14751] "India's" "hopes"
[14753] "table" "tennis"
[14755] "third" "round"
[14757] "match" "India's"
[14759] "schedule" "Day"
[14761] "4" "Tokyo"
[14763] "Olympics" "Shooting"
[14765] "Saurabh" "Chaudhary"
[14767] "Manu" "Bhaker"
[14769] "Yeshahswini" "Deswal"
[14771] "Abhishek" "Verma"
[14773] "10m" "Air"
[14775] "Pistol" "Mixed"
[14777] "Team" "Qualification"
[14779] "05" "30am"
[14781] "IST" "followed"
[14783] "final" "Elavenil"
[14785] "Valarivan" "Divyansh"
[14787] "Singh" "Panwar"
[14789] "Anjum" "Moudgil"
[14791] "Deepak" "Kumar"
[14793] "10m" "Air"
[14795] "Rifle" "Mixed"
[14797] "Team" "Qualification"
[14799] "9" "45am"
[14801] "IST" "followed"
[14803] "final" "Hockey"
[14805] "India" "vs"
[14807] "Spain" "Men's"
[14809] "Pool" "match"
[14811] "6" "30am"
[14813] "IST" "Badminton"
[14815] "Satwiksairaj" "Rankireddy"
[14817] "Chirag" "Shetty"
[14819] "vs" "Ben"
[14821] "Lane" "Sean"
[14823] "Vendy" "Great"
[14825] "Britain" "Men's"
[14827] "Doubles" "Group"
[14829] "Match" "8"
[14831] "30am" "IST"
[14833] "Boxing" "Lovlina"
[14835] "Borgohain" "vs"
[14837] "Nadine" "Apetz"
[14839] "Germany" "Women's"
[14841] "69kg" "Round"
[14843] "16" "Bout"
[14845] "11" "33am"
[14847] "IST" "Sailing"
[14849] "Nethra" "Kumanan"
[14851] "Women's" "Laser"
[14853] "Radial" "Race"
[14855] "08" "35am"
[14857] "IST" "Vishnu"
[14859] "Saravanan" "Men's"
[14861] "Laser" "Race"
[14863] "08" "45am"
[14865] "IST" "KC"
[14867] "Ganapathy" "Varun"
[14869] "Thakkar" "Men's"
[14871] "Skiff" "49er"
[14873] "Race" "11"
[14875] "50am" "IST"
[14877] "Table" "Tennis"
[14879] "Achanta" "Sharath"
[14881] "Kamal" "vs"
[14883] "Ma" "Long"
[14885] "China" "Men's"
[14887] "Singles" "Round"
[14889] "3" "Match"
[14891] "8" "30am"
[14893] "IST" "Published"
[14895] "HT" "Digital"
[14897] "Content" "Services"
[14899] "permission" "Hindustan"
[14901] "Times" "query"
[14903] "respect" "article"
[14905] "content" "requirement"
[14907] "please" "contact"
[14909] "Editor" "Classification"
[14911] "Language" "ENGLISH"
[14913] "Publication-Type" "Newswire"
[14915] "Body" "Indian"
[14917] "shuttler" "PV"
[14919] "Sindhu" "won"
[14921] "Bronze" "medal"
[14923] "Tokyo" "Olympics"
[14925] "Sunday" "father"
[14927] "said" "now"
[14929] "ice" "cream"
[14931] "PM" "Modi"
[14933] "New" "Delhi"
[14935] "Indian" "shuttler"
[14937] "PV" "Sindhu"
[14939] "won" "Bronze"
[14941] "medal" "Tokyo"
[14943] "Olympics" "Sunday"
[14945] "defeating" "eighth"
[14947] "seed" "China's"
[14949] "Bingjiao" "now"
[14951] "ice" "cream"
[14953] "Prime" "Minister"
[14955] "Narendra" "Modi"
[14957] "New" "Delhi"
[14959] "father" "said"
[14961] "PV" "Ramana"
[14963] "said" "Badminton"
[14965] "champion" "return"
[14967] "Delhi" "August"
[14969] "3" "said"
[14971] "PM" "Modi"
[14973] "encouraged" "promised"
[14975] "return" "medal"
[14977] "ice" "cream"
[14979] "PV" "Ramana"
[14981] "said" "now"
[14983] "Sindhu" "taking"
[14985] "offer" "PM"
[14987] "ice" "cream"
[14989] "PM" "Modi"
[14991] "return" "encouragement"
[14993] "PM" "Modi"
[14995] "given" "said"
[14997] "go" "ice"
[14999] "cream" "come"
[15001] "back" "now"
[15003] "definitely" "go"
[15005] "ice" "cream"
[15007] "Prime" "Minister"
[15009] "Ramana" "said"
[15011] "press" "conference"
[15013] "PV" "Sindhu"
[15015] "became" "first"
[15017] "Indian" "woman"
[15019] "win" "two"
[15021] "consecutive" "medals"
[15023] "Olympics" "2016"
[15025] "won" "Silver"
[15027] "medal" "Rio"
[15029] "Olympics" "also"
[15031] "became" "second"
[15033] "Indian" "athlete"
[15035] "win" "two"
[15037] "consecutive" "medals"
[15039] "Sushil" "Kumar"
[15041] "won" "bronze"
[15043] "medal" "Beijing"
[15045] "Olympics" "2008"
[15047] "silver" "medal"
[15049] "London" "Olympics"
[15051] "2012" "26-year-old"
[15053] "beat" "Bingjiao"
[15055] "21-13" "21-15"
[15057] "match" "lasted"
[15059] "52" "minutes"
[15061] "Musashino" "Forest"
[15063] "Sport" "Plaza"
[15065] "BDM" "Court"
[15067] "1" "PM"
[15069] "Modi" "congratulated"
[15071] "Sindhu" "win"
[15073] "saying" "elated"
[15075] "stellar" "performance"
[15077] "PV" "Sindhu"
[15079] "Congratulations" "winning"
[15081] "Bronze" "@Tokyo2020"
[15083] "India's" "pride"
[15085] "one" "outstanding"
[15087] "Olympians" "happy"
[15089] "first" "Indian"
[15091] "woman" "win"
[15093] "two" "consecutive"
[15095] "medals" "Olympics"
[15097] "brought" "name"
[15099] "fame" "country"
[15101] "PV" "Ramana"
[15103] "told" "reporters"
[15105] "Sunday" "added"
[15107] "confident" "play"
[15109] "next" "Olympics"
[15111] "also" "get"
[15113] "many" "medals"
[15115] "country" "Sindhu"
[15117] "focused" "hunger"
[15119] "enjoys" "game"
[15121] "Sindhu" "26"
[15123] "age" "get"
[15125] "experience" "seen"
[15127] "entire" "Tokyo"
[15129] "Olympics" "PV"
[15131] "Ramana" "said"
[15133] "Classification" "Language"
[15135] "ENGLISH" "Publication-Type"
[15137] "Newspaper" "Body"
[15139] "India" "July"
[15141] "24" "Hasely"
[15143] "Crawford" "one"
[15145] "11" "children"
[15147] "born" "San"
[15149] "Fernando" "Trinidad"
[15151] "1950" "began"
[15153] "sprinting" "17"
[15155] "won" "surprise"
[15157] "bronze" "Commonwealth"
[15159] "Games" "1970"
[15161] "quite" "astonishingly"
[15163] "managed" "make"
[15165] "100m" "final"
[15167] "1972" "Munich"
[15169] "Olympics" "one"
[15171] "massacre" "Mark"
[15173] "Spitz" "final"
[15175] "evening" "biggest"
[15177] "race" "life"
[15179] "Crawford" "pulled"
[15181] "hamstring" "20m"
[15183] "starting" "blocks"
[15185] "hobbled" "another"
[15187] "30" "watching"
[15189] "pain" "disappointment"
[15191] "Russia's" "Valeriy"
[15193] "Borzov" "dashed"
[15195] "past" "tape"
[15197] "bad" "people"
[15199] "consoled" "one"
[15201] "Caribbean" "ever"
[15203] "won" "100m"
[15205] "anyway" "Instead"
[15207] "mollified" "disheartened"
[15209] "words" "factoid"
[15211] "Crawford" "decided"
[15213] "use" "inspiration"
[15215] "chose" "fight"
[15217] "back" "Four"
[15219] "years" "later"
[15221] "Montreal" "1976"
[15223] "barely" "week"
[15225] "tiny" "island"
[15227] "nation" "Trinidad"
[15229] "Tobago" "became"
[15231] "republic" "Hasely"
[15233] "Crawford" "snuck"
[15235] "100m" "final"
[15237] "time" "dashed"
[15239] "past" "20m"
[15241] "mark" "started"
[15243] "pulling" "away"
[15245] "40m" "virtually"
[15247] "unstoppable" "80m"
[15249] "went" "become"
[15251] "first" "man"
[15253] "Caribbean" "islands"
[15255] "win" "Olympic"
[15257] "100m" "gold"
[15259] "good" "measure"
[15261] "Don" "Quarrie"
[15263] "Jamaica" "won"
[15265] "200m" "later"
[15267] "week" "Olympics"
[15269] "meant" "struggle"
[15271] "triumph" "stories"
[15273] "stand" "dominance"
[15275] "redemption" "Redemption"
[15277] "kind" "Mirabai"
[15279] "Chanu" "experienced"
[15281] "Tokyo" "extraordinary"
[15283] "Saturday" "morning"
[15285] "Indian" "sport"
[15287] "remember" "exactly"
[15289] "happened" "48kg"
[15291] "women's" "weightlifting"
[15293] "competition" "Rio"
[15295] "Olympics" "four"
[15297] "years" "ago"
[15299] "Chanu's" "heartbreak"
[15301] "day" "overstated"
[15303] "six" "attempts"
[15305] "across" "two"
[15307] "techniques" "managed"
[15309] "one" "lift"
[15311] "barely" "snatched"
[15313] "84kg" "second"
[15315] "attempt" "failed"
[15317] "first" "weight"
[15319] "third" "attempt"
[15321] "86kg" "clean"
[15323] "jerk" "get"
[15325] "barbell" "even"
[15327] "104kg" "got"
[15329] "away" "two"
[15331] "attempts" "106kg"
[15333] "seemed" "like"
[15335] "desperate" "stabs"
[15337] "handle" "kind"
[15339] "performance" "can"
[15341] "break" "athletes"
[15343] "give" "nightmares"
[15345] "scar" "life"
[15347] "put" "gym"
[15349] "training" "sessions"
[15351] "induce" "mortal"
[15353] "fear" "spotlight"
[15355] "Chanu's" "response"
[15357] "past" "five"
[15359] "years" "separates"
[15361] "champions" "rest"
[15363] "clean" "jerk"
[15365] "get" "barbell"
[15367] "Rio" "first"
[15369] "became" "strength"
[15371] "calling" "card"
[15373] "came" "known"
[15375] "one" "somehow"
[15377] "pull" "away"
[15379] "snatch" "going"
[15381] "get" "second"
[15383] "leg" "competition"
[15385] "clean" "jerk"
[15387] "world" "record"
[15389] "119kg" "now"
[15391] "stands" "name"
[15393] "despite" "training"
[15395] "medals" "records"
[15397] "bogey" "Rio"
[15399] "always" "going"
[15401] "hang" "next"
[15403] "Olympics" "longer"
[15405] "wait" "Tokyo"
[15407] "2020" "possibility"
[15409] "Games" "may"
[15411] "happen" "must"
[15413] "harder" "Chanu"
[15415] "anyone" "else"
[15417] "Indian" "contingent"
[15419] "Saturday" "looked"
[15421] "centred" "confident"
[15423] "spotlight" "bother"
[15425] "pressure" "Instead"
[15427] "little" "bow"
[15429] "barbell" "approached"
[15431] "smooth" "lift"
[15433] "slow" "steady"
[15435] "raise" "monkish"
[15437] "stillness" "smile"
[15439] "redemption" "repeated"
[15441] "routine" "four"
[15443] "times" "silver"
[15445] "secure" "funny"
[15447] "thing" "redemption"
[15449] "Chanu" "might"
[15451] "now" "feel"
[15453] "went" "Rio"
[15455] "worth" "Just"
[15457] "like" "legend"
[15459] "Hasely" "Crawford"
[15461] "connects" "Chanu's"
[15463] "story" "turnaround"
[15465] "message" "another"
[15467] "athlete" "eye"
[15469] "medal" "10m"
[15471] "air" "pistol"
[15473] "event" "Saturday"
[15475] "Shooter" "Saurabh"
[15477] "Chaudhary" "19"
[15479] "first" "Olympics"
[15481] "must" "crestfallen"
[15483] "implosion" "final"
[15485] "qualifying" "first"
[15487] "position" "take"
[15489] "heart" "knows"
[15491] "may" "first"
[15493] "note" "another"
[15495] "redemption" "song"
[15497] "Published" "HT"
[15499] "Digital" "Content"
[15501] "Services" "permission"
[15503] "Hindustan" "Times"
[15505] "query" "respect"
[15507] "article" "content"
[15509] "requirement" "please"
[15511] "contact" "Editor"
[15513] "Classification" "Language"
[15515] "ENGLISH" "Publication-Type"
[15517] "Newswire" "Body"
[15519] "Following" "India's"
[15521] "schedule" "day"
[15523] "9" "Tokyo"
[15525] "Olympics" "Friday"
[15527] "disappointing" "loss"
[15529] "semi-final" "Chinese"
[15531] "Taipei's" "Tai"
[15533] "Tzu" "Ying"
[15535] "India's" "star"
[15537] "shuttler" "reigning"
[15539] "World" "Champion"
[15541] "PV" "Sindhu"
[15543] "eyes" "bronze"
[15545] "medal" "takes"
[15547] "Chinese" "opponent"
[15549] "Bingjiao" "Sindhu"
[15551] "emerges" "victorious"
[15553] "second" "Olympic"
[15555] "medal" "silver"
[15557] "medal" "Rio"
[15559] "Olympics" "lost"
[15561] "Carolina" "Marin"
[15563] "final" "two"
[15565] "quarter-final" "events"
[15567] "well" "Boxer"
[15569] "Satish" "Kumar"
[15571] "lock" "horns"
[15573] "Uzbekistan's" "Bakhodir"
[15575] "Jalolov" "men's"
[15577] "super" "heavy"
[15579] "category" "Also"
[15581] "Manpreet" "Singh-led"
[15583] "India" "look"
[15585] "continue" "winning"
[15587] "run" "tournament"
[15589] "win" "Great"
[15591] "Britain" "quarter-final"
[15593] "India" "faced"
[15595] "one" "defeat"
[15597] "group" "stage"
[15599] "Australia" "Equestrian"
[15601] "Fouaad" "Mirza"
[15603] "seen" "action"
[15605] "Eventing" "Cross"
[15607] "Country" "team"
[15609] "individual" "event"
[15611] "Following" "India's"
[15613] "schedule" "ninth"
[15615] "day" "Tokyo"
[15617] "Olympics" "Sunday"
[15619] "Golf" "Anirban"
[15621] "Lahiri" "Udayan"
[15623] "Mane" "Men's"
[15625] "Individual" "Stroke"
[15627] "Play" "Round"
[15629] "4" "04"
[15631] "00" "Equestrian"
[15633] "Fouaad" "Mirza"
[15635] "Eventing" "Cross"
[15637] "Country" "Team"
[15639] "Individual" "04"
[15641] "15" "Boxing"
[15643] "Satish" "Kumar"
[15645] "vs" "Bakhodir"
[15647] "Jalolov" "Uzbekistan"
[15649] "men's" "super"
[15651] "heavy" "+"
[15653] "91kg" "quarterfinals"
[15655] "9" "36"
[15657] "Badminton" "PV"
[15659] "Sindhu" "vs"
[15661] "Bing" "Jiao"
[15663] "China" "women's"
[15665] "singles" "bronze"
[15667] "medal" "play-off"
[15669] "match" "5"
[15671] "PM" "Hockey"
[15673] "India" "vs"
[15675] "Great" "Britain"
[15677] "Men's" "quarterfinal"
[15679] "5" "30"
[15681] "PM" "Classification"
[15683] "Language" "ENGLISH"
[15685] "Publication-Type" "Newspaper"
[15687] "Body" "Celebrities"
[15689] "took" "social"
[15691] "media" "congratulate"
[15693] "Mirabai" "Chanu"
[15695] "celebrate" "India's"
[15697] "first" "medal"
[15699] "Tokyo" "Olympics"
[15701] "2020" "Indian"
[15703] "weightlifter" "Mirabai"
[15705] "Chanu" "clinched"
[15707] "silver" "medal"
[15709] "women's" "49kg"
[15711] "category" "ongoing"
[15713] "Tokyo" "Olympics"
[15715] "celebrities" "took"
[15717] "social" "media"
[15719] "congratulate" "sportswoman"
[15721] "celebrate" "India's"
[15723] "first" "medal"
[15725] "2020" "Olympics"
[15727] "Hailing" "Manipur"
[15729] "26-year-old" "Padma"
[15731] "Shri" "awardee"
[15733] "honoured" "Rajiv"
[15735] "Gandhi" "Khel"
[15737] "Ratna" "award"
[15739] "2018" "lifted"
[15741] "total" "202kg"
[15743] "87kg" "+"
[15745] "115kg" "become"
[15747] "second" "Indian"
[15749] "weightlifter" "Karnam"
[15751] "Malleswari" "won"
[15753] "bronze" "2000"
[15755] "Sydney" "Olympics"
[15757] "win" "medal"
[15759] "country" "Taapsee"
[15761] "Pannu" "quoted"
[15763] "news" "report"
[15765] "win" "Twitter"
[15767] "wrote" "begin"
[15769] "Come" "India"
[15771] "Raveena" "Tandon"
[15773] "shared" "Twitter"
[15775] "#proudindianwomen" "Saiyami"
[15777] "Kher" "tweeted"
[15779] "YESSSSSS" "Sports"
[15781] "medal" "#MirabaiChanu"
[15783] "#Olympics" "Congratulations"
[15785] "#MirabaiChanu" "#TokyoOlympics2021"
[15787] "#Weightlifting" "Farhan"
[15789] "Akhtar" "@FarOutAkhtar"
[15791] "July" "24"
[15793] "2021" "Filmmaker"
[15795] "Venkat" "Prabhu"
[15797] "shared" "First"
[15799] "medal" "#teamindia"
[15801] "proud" "moment"
[15803] "Thank" "q"
[15805] "@mirabai_chanu" "#silver"
[15807] "#Weightlifting" "come"
[15809] "Kritika" "Kamra"
[15811] "also" "celebrated"
[15813] "win" "sharing"
[15815] "news" "report"
[15817] "win" "Singer-composer"
[15819] "Vishal" "Dadlani"
[15821] "tweeted" "Congratulations"
[15823] "India" "Yet"
[15825] "Indian" "Woman"
[15827] "brings" "us"
[15829] "international" "sporting"
[15831] "acclaim" "#MirabaiChanu"
[15833] "wins" "#OlympicSilver"
[15835] "Jai" "Hind"
[15837] "Congratulations" "India"
[15839] "Yet" "Indian"
[15841] "Woman" "brings"
[15843] "us" "international"
[15845] "sporting" "acclaim"
[15847] "#MirabaiChanu" "wins"
[15849] "#OlympicSilver" "Jai"
[15851] "Hind" "VISHAL"
[15853] "DADLANI" "@VishalDadlani"
[15855] "July" "24"
[15857] "2021" "Actor-politician"
[15859] "Ravi" "Kishan"
[15861] "tweeted" "win"
[15863] "congratulations" "Mirabai"
[15865] "chanu" "Director"
[15867] "Anubhav" "Sinha"
[15869] "tweeted" "#MirabaiChanu"
[15871] "Manipur" "India"
[15873] "ZINDABAD" "#MirabaiChanu"
[15875] "Manipur" "India"
[15877] "ZINDABAD" "Anubhav"
[15879] "Sinha" "@anubhavsinha"
[15881] "July" "24"
[15883] "2021" "Sunny"
[15885] "Deol" "said"
[15887] "Great" "beginning"
[15889] "@mirabai_chanu" "Congratulations"
[15891] "India" "#MirabaiChanu"
[15893] "#IndiaAtTokyo2020" "Actor"
[15895] "Sophie" "Choudry"
[15897] "tweeted" "Woohoo"
[15899] "Congratulations" "#MirabaiChanu"
[15901] "Stadiums" "may"
[15903] "empty" "billion"
[15905] "people" "cheering"
[15907] "Come" "#TeamIndia"
[15909] "#Olympics" "#OlympicGames"
[15911] "#Tokyo2020" "Malayalam"
[15913] "film" "actor"
[15915] "Tovino" "Thomas"
[15917] "wrote" "India's"
[15919] "First" "Medal"
[15921] "Tokyo" "Olympics"
[15923] "#MirabaiChanu" "Congratulations"
[15925] "#MirabaiChanu" "opening"
[15927] "account" "#OlympicGames"
[15929] "#silver" "thank"
[15931] "hard" "work"
[15933] "competitive" "spirit"
[15935] "#Olympics" "Randeep"
[15937] "Hooda" "@RandeepHooda"
[15939] "July" "24"
[15941] "2021" "Randeep"
[15943] "Hooda" "shared"
[15945] "Congratulations" "#MirabaiChanu"
[15947] "opening" "account"
[15949] "#OlympicGames" "#silver"
[15951] "thank" "hard"
[15953] "work" "competitive"
[15955] "spirit" "#Olympics"
[15957] "Pranitha" "Subhash"
[15959] "wrote" "outstanding"
[15961] "opening" "#MirabaiChanu"
[15963] "First" "time"
[15965] "ever" "India's"
[15967] "secured" "medal"
[15969] "first" "day"
[15971] "Tokyo" "Olympics"
[15973] "promising" "start"
[15975] "#Weightlifting" "#Cheers4India"
[15977] "#silver" "Classification"
[15979] "Language" "ENGLISH"
[15981] "Publication-Type" "Newspaper"
[15983] "Body" "New"
[15985] "Delhi" "July"
[15987] "22" "Six-time"
[15989] "world" "champion"
[15991] "2012" "London"
[15993] "Olympics" "bronze"
[15995] "medallist" "MC"
[15997] "Mary" "Kom's"
[15999] "road" "another"
[16001] "Olympic" "medal"
[16003] "just" "got"
[16005] "tougher" "dons"
[16007] "Indian" "jersey"
[16009] "one" "last"
[16011] "time" "Tokyo's"
[16013] "Ryogoku" "Kokugikan"
[16015] "arena" "Five"
[16017] "Indian" "boxers"
[16019] "begin" "challenge"
[16021] "pre-quarterfinals" "stage"
[16023] "draws" "unveiled"
[16025] "2020" "Tokyo"
[16027] "Olympic" "Games"
[16029] "Thursday" "World"
[16031] "1" "Amit"
[16033] "Panghal" "52kg"
[16035] "alongside" "Lovlina"
[16037] "Borgohain" "69kg"
[16039] "Pooja" "Rani"
[16041] "75kg" "Simranjit"
[16043] "Kaur" "60kg"
[16045] "Satish" "Kumar"
[16047] "91kg" "five"
[16049] "Indian" "pugilists"
[16051] "start" "quest"
[16053] "medal" "last-16"
[16055] "stage" "hand"
[16057] "MC" "Mary"
[16059] "Kom" "51kg"
[16061] "Manish" "Kaushik"
[16063] "63kg" "Ashish"
[16065] "Kumar" "75kg"
[16067] "Vikas" "Krishan"
[16069] "69kg" "seen"
[16071] "competing" "round-of-32"
[16073] "respective" "categories"
[16075] "Vikas" "second"
[16077] "Indian" "boxer"
[16079] "Vijender" "Singh"
[16081] "compete" "third"
[16083] "consecutive" "Olympic"
[16085] "Games" "start"
[16087] "proceedings" "country"
[16089] "Tokyo" "Olympics"
[16091] "Saturday" "take"
[16093] "Japanese" "boxer"
[16095] "Mensah" "Okazawa"
[16097] "round" "32"
[16099] "progress" "Vikas"
[16101] "may" "face"
[16103] "challenge" "London"
[16105] "Olympics" "champion"
[16107] "Cuban" "boxer"
[16109] "Roniel" "Iglesias"
[16111] "next" "round"
[16113] "Mary" "Kom"
[16115] "start" "Dominican"
[16117] "Republic's" "Miguelina"
[16119] "Hernandez" "first"
[16121] "round" "likely"
[16123] "meet" "Rio"
[16125] "Olympics" "bronze"
[16127] "medallist" "Colombian"
[16129] "boxer" "Ingrit"
[16131] "Valencia" "second"
[16133] "round" "World"
[16135] "Championships" "silver"
[16137] "medallist" "Amit"
[16139] "Panghal" "52kg"
[16141] "comparatively" "easy"
[16143] "challenge" "maiden"
[16145] "Olympic" "Games"
[16147] "begin" "campaign"
[16149] "July" "31"
[16151] "last-16" "stage"
[16153] "Lovlina" "first"
[16155] "woman" "boxer"
[16157] "Assam" "qualify"
[16159] "Olympics" "challenged"
[16161] "Germany's" "Nadine"
[16163] "Apetz" "round-of-16"
[16165] "bout" "World"
[16167] "Championships" "bronze"
[16169] "medallist" "Simranjit"
[16171] "seeded" "fourth"
[16173] "also" "starting"
[16175] "campaign" "pre-quarters"
[16177] "Pooja" "Rani"
[16179] "75kg" "first"
[16181] "India" "qualify"
[16183] "Tokyo" "Olympics"
[16185] "take" "Algeria's"
[16187] "Ichrak" "Chaib"
[16189] "last-16" "stage"
[16191] "likely" "face"
[16193] "strong" "challenge"
[16195] "Rio" "Olympics"
[16197] "bronze" "medallist"
[16199] "second" "seeded"
[16201] "Chinese" "boxer"
[16203] "Qian" "Li"
[16205] "quarter-finals" "Apart"
[16207] "Panghal" "Satish"
[16209] "another" "Indian"
[16211] "boxer" "kickstart"
[16213] "challenge" "pre-quarters"
[16215] "men's" "section"
[16217] "fight" "Ricardo"
[16219] "Brown" "first"
[16221] "Jamaican" "boxer"
[16223] "compete" "Olympics"
[16225] "since" "1996"
[16227] "Atlanta" "Games"
[16229] "Satish" "first"
[16231] "Indian" "boxer"
[16233] "qualify" "super"
[16235] "heavyweight" "category"
[16237] "may" "play"
[16239] "top-seed" "reigning"
[16241] "world" "champion"
[16243] "Uzbekh" "boxer"
[16245] "Bakhodir" "Jalolov"
[16247] "quarters" "World"
[16249] "Championships" "bronze"
[16251] "medallist" "Manish"
[16253] "also" "tough"
[16255] "task" "going"
[16257] "ahead" "tournament"
[16259] "likely" "face"
[16261] "two-time" "world"
[16263] "champion" "Andy"
[16265] "Cruz" "Cuba"
[16267] "progresses" "last-16"
[16269] "stage" "India"
[16271] "won" "two"
[16273] "medals" "boxing"
[16275] "Olympic" "Games"
[16277] "far" "Vijender"
[16279] "Singh" "winning"
[16281] "bronze" "2008"
[16283] "Mary" "Kom"
[16285] "adding" "second"
[16287] "bronze" "tally"
[16289] "2012" "upcoming"
[16291] "Tokyo" "Olympics"
[16293] "witness" "record"
[16295] "nine" "Indian"
[16297] "pugilists" "competing"
[16299] "aiming" "win"
[16301] "medals" "country"
[16303] "upcoming" "Olympics"
[16305] "289" "boxers"
[16307] "including" "102"
[16309] "women" "187"
[16311] "women" "fighting"
[16313] "across" "13"
[16315] "weight" "categories"
[16317] "Indian" "boxing"
[16319] "draw" "Tokyo"
[16321] "Olympics" "Women"
[16323] "Mary" "Kom"
[16325] "vs" "Miguelina"
[16327] "Hernandez" "flyweight"
[16329] "51kg" "Simranjit"
[16331] "Kaur" "first"
[16333] "round" "bye"
[16335] "lightweight" "60kg"
[16337] "Lovlina" "Borgohain"
[16339] "first" "round"
[16341] "bye" "welterweight"
[16343] "69kg" "Pooja"
[16345] "Rani" "vs"
[16347] "Ichrak" "Chaib"
[16349] "middleweight" "75kg"
[16351] "Men" "Amit"
[16353] "Panghal" "first"
[16355] "round" "bye"
[16357] "flyweight" "52kg"
[16359] "Manish" "Kaushik"
[16361] "vs" "Luke"
[16363] "McCormack" "lightweight"
[16365] "63kg" "Vikas"
[16367] "Krishan" "vs"
[16369] "Okazawa" "Quincy"
[16371] "Mensah" "welterweight"
[16373] "69kg" "Ashish"
[16375] "Kumar" "vs"
[16377] "Tuoheta" "Erbieke"
[16379] "middleweight" "75kg"
[16381] "Satish" "Kumar"
[16383] "first" "round"
[16385] "bye" "super"
[16387] "heavyweight" "+"
[16389] "91kg" "Classification"
[16391] "Language" "ENGLISH"
[16393] "Publication-Type" "Newspaper"
[16395] "Body" "Difficult"
[16397] "draining" "Even"
[16399] "Tokyo" "Olympics"
[16401] "began" "lots"
[16403] "speculations" "athletes"
[16405] "fare" "inside"
[16407] "Games" "Village"
[16409] "time" "restrictions"
[16411] "rules" "place"
[16413] "per" "COVID"
[16415] "protocols" "Apart"
[16417] "giving" "athletes"
[16419] "chance" "achieve"
[16421] "pinnacle" "sporting"
[16423] "achievement" "Olympics"
[16425] "also" "known"
[16427] "social" "melting"
[16429] "pot" "Sportspersons"
[16431] "around" "world"
[16433] "stay" "Olympics"
[16435] "Village" "socialising"
[16437] "intermingling" "past"
[16439] "many" "attributed"
[16441] "fun" "atmosphere"
[16443] "Games" "Villages"
[16445] "alleviating" "stress"
[16447] "around" "competitions"
[16449] "fears" "social"
[16451] "distancing" "no-contact"
[16453] "rules" "just"
[16455] "suck" "fun"
[16457] "Games" "put"
[16459] "many" "athletes"
[16461] "mental" "health"
[16463] "risk" "Athletes"
[16465] "Netherlands" "quarantined"
[16467] "hotel" "testing"
[16469] "positive" "COVID-19"
[16471] "went" "strike"
[16473] "protesting" "stay"
[16475] "called" "Olympic"
[16477] "jail" "need"
[16479] "outside" "air"
[16481] "anything" "nothing"
[16483] "opens" "windows"
[16485] "closed" "doors"
[16487] "open" "ever"
[16489] "okay" "outside"
[16491] "air" "inhuman"
[16493] "mentally" "super-draining"
[16495] "said" "Dutch"
[16497] "street" "skateboarder"
[16499] "Candy" "Jacobs"
[16501] "Backing" "athletes"
[16503] "Dutch" "Olympics"
[16505] "federation" "called"
[16507] "quarantine" "conditions"
[16509] "unacceptable" "said"
[16511] "raise" "issue"
[16513] "IOC" "particularly"
[16515] "tougher" "athletes"
[16517] "play" "team"
[16519] "sports" "used"
[16521] "staying" "together"
[16523] "group" "Village"
[16525] "even" "teammates"
[16527] "staying" "separate"
[16529] "rooms" "minimal"
[16531] "contact" "outside"
[16533] "playing" "arenas"
[16535] "difficult" "play"
[16537] "field" "hockey"
[16539] "team" "together"
[16541] "friends" "now"
[16543] "alone" "hotel"
[16545] "best" "team"
[16547] "position" "Argentine"
[16549] "hockey" "player"
[16551] "Emiliano" "Bosso"
[16553] "said" "teams"
[16555] "tried" "avoid"
[16557] "strict" "rules"
[16559] "putting" "athletes"
[16561] "hotels" "close"
[16563] "Games" "Village"
[16565] "many" "away"
[16567] "action" "felt"
[16569] "isolating" "US"
[16571] "women's" "gymnastics"
[16573] "team" "staying"
[16575] "hotel" "instead"
[16577] "Games" "Village"
[16579] "Simon" "Biles"
[16581] "addressed" "affected"
[16583] "ability" "replenish"
[16585] "amidst" "multiple"
[16587] "competitions" "Usually"
[16589] "hang" "village"
[16591] "stuff" "said"
[16593] "adding" "suck"
[16595] "feel" "weight"
[16597] "world" "outlets"
[16599] "amount" "training"
[16601] "saying" "great"
[16603] "set" "chose"
[16605] "COVID" "safe"
[16607] "protocols" "COVID"
[16609] "protocols" "place"
[16611] "meant" "athletes"
[16613] "travel" "Tokyo"
[16615] "family" "members"
[16617] "time" "around"
[16619] "Add" "fact"
[16621] "spectators" "stands"
[16623] "means" "athletes"
[16625] "nobody" "cheering"
[16627] "Swimming" "legend"
[16629] "Michael" "Phelps"
[16631] "said" "causing"
[16633] "anxiety" "stress"
[16635] "among" "athletes"
[16637] "Phelps" "said"
[16639] "Olympic" "athletes"
[16641] "need" "someone"
[16643] "can" "trust"
[16645] "Games" "Even"
[16647] "IOC" "allowed"
[16649] "mothers" "bring"
[16651] "along" "babies"
[16653] "athletes" "complained"
[16655] "rules" "place"
[16657] "makes" "pointless"
[16659] "impossible" "Spanish"
[16661] "synchronised" "swimmer"
[16663] "Ona" "Carbonell"
[16665] "said" "leave"
[16667] "11-month-old" "son"
[16669] "back" "Spain"
[16671] "said" "per"
[16673] "rules" "nursing"
[16675] "mothers" "leave"
[16677] "bubble" "breastfeed"
[16679] "children" "move"
[16681] "felt" "increased"
[16683] "risk" "infection"
[16685] "put" "teammates"
[16687] "risk" "Classification"
[16689] "Language" "ENGLISH"
[16691] "Publication-Type" "Newspaper"
[16693] "Body" "Difficult"
[16695] "draining" "Even"
[16697] "Tokyo" "Olympics"
[16699] "began" "lots"
[16701] "speculations" "athletes"
[16703] "fare" "inside"
[16705] "Games" "Village"
[16707] "time" "restrictions"
[16709] "rules" "place"
[16711] "per" "COVID"
[16713] "protocols" "Apart"
[16715] "giving" "athletes"
[16717] "chance" "achieve"
[16719] "pinnacle" "sporting"
[16721] "achievement" "Olympics"
[16723] "also" "known"
[16725] "social" "melting"
[16727] "pot" "Sportspersons"
[16729] "around" "world"
[16731] "stay" "Olympics"
[16733] "Village" "socialising"
[16735] "intermingling" "past"
[16737] "many" "attributed"
[16739] "fun" "atmosphere"
[16741] "Games" "Villages"
[16743] "alleviating" "stress"
[16745] "around" "competitions"
[16747] "fears" "social"
[16749] "distancing" "no-contact"
[16751] "rules" "just"
[16753] "suck" "fun"
[16755] "Games" "put"
[16757] "many" "athletes"
[16759] "mental" "health"
[16761] "risk" "Athletes"
[16763] "Netherlands" "quarantined"
[16765] "hotel" "testing"
[16767] "positive" "COVID-19"
[16769] "went" "strike"
[16771] "protesting" "stay"
[16773] "called" "Olympic"
[16775] "jail" "need"
[16777] "outside" "air"
[16779] "anything" "nothing"
[16781] "opens" "windows"
[16783] "closed" "doors"
[16785] "open" "ever"
[16787] "okay" "outside"
[16789] "air" "inhuman"
[16791] "mentally" "super-draining"
[16793] "said" "Dutch"
[16795] "street" "skateboarder"
[16797] "Candy" "Jacobs"
[16799] "Backing" "athletes"
[16801] "Dutch" "Olympics"
[16803] "federation" "called"
[16805] "quarantine" "conditions"
[16807] "unacceptable" "said"
[16809] "raise" "issue"
[16811] "IOC" "particularly"
[16813] "tougher" "athletes"
[16815] "play" "team"
[16817] "sports" "used"
[16819] "staying" "together"
[16821] "group" "Village"
[16823] "even" "teammates"
[16825] "staying" "separate"
[16827] "rooms" "minimal"
[16829] "contact" "outside"
[16831] "playing" "arenas"
[16833] "difficult" "play"
[16835] "field" "hockey"
[16837] "team" "together"
[16839] "friends" "now"
[16841] "alone" "hotel"
[16843] "best" "team"
[16845] "position" "Argentine"
[16847] "hockey" "player"
[16849] "Emiliano" "Bosso"
[16851] "said" "teams"
[16853] "tried" "avoid"
[16855] "strict" "rules"
[16857] "putting" "athletes"
[16859] "hotels" "close"
[16861] "Games" "Village"
[16863] "many" "away"
[16865] "action" "felt"
[16867] "isolating" "US"
[16869] "women's" "gymnastics"
[16871] "team" "staying"
[16873] "hotel" "instead"
[16875] "Games" "Village"
[16877] "Simon" "Biles"
[16879] "addressed" "affected"
[16881] "ability" "replenish"
[16883] "amidst" "multiple"
[16885] "competitions" "Usually"
[16887] "hang" "village"
[16889] "stuff" "said"
[16891] "adding" "suck"
[16893] "feel" "weight"
[16895] "world" "outlets"
[16897] "amount" "training"
[16899] "saying" "great"
[16901] "set" "chose"
[16903] "COVID" "safe"
[16905] "protocols" "COVID"
[16907] "protocols" "place"
[16909] "meant" "athletes"
[16911] "travel" "Tokyo"
[16913] "family" "members"
[16915] "time" "around"
[16917] "Add" "fact"
[16919] "spectators" "stands"
[16921] "means" "athletes"
[16923] "nobody" "cheering"
[16925] "Swimming" "legend"
[16927] "Michael" "Phelps"
[16929] "said" "causing"
[16931] "anxiety" "stress"
[16933] "among" "athletes"
[16935] "Phelps" "said"
[16937] "Olympic" "athletes"
[16939] "need" "someone"
[16941] "can" "trust"
[16943] "Games" "Even"
[16945] "IOC" "allowed"
[16947] "mothers" "bring"
[16949] "along" "babies"
[16951] "athletes" "complained"
[16953] "rules" "place"
[16955] "makes" "pointless"
[16957] "impossible" "Spanish"
[16959] "synchronised" "swimmer"
[16961] "Ona" "Carbonell"
[16963] "said" "leave"
[16965] "11-month-old" "son"
[16967] "back" "Spain"
[16969] "said" "per"
[16971] "rules" "nursing"
[16973] "mothers" "leave"
[16975] "bubble" "breastfeed"
[16977] "children" "move"
[16979] "felt" "increased"
[16981] "risk" "infection"
[16983] "put" "teammates"
[16985] "risk" "Classification"
[16987] "Language" "ENGLISH"
[16989] "Publication-Type" "Newspaper"
[16991] "Body" "New"
[16993] "Delhi" "Aug"
[16995] "5" "Although"
[16997] "Indian" "Women's"
[16999] "Hockey" "team"
[17001] "lost" "Tokyo"
[17003] "Olympics" "hockey"
[17005] "semi-final" "Argentina"
[17007] "Rani" "Rampal's"
[17009] "girls" "won"
[17011] "respect" "plenty"
[17013] "praises" "across"
[17015] "country" "Gujarat-based"
[17017] "businessman" "promised"
[17019] "offer" "houses"
[17021] "brand" "new"
[17023] "cars" "ladies"
[17025] "showing" "gritty"
[17027] "performance" "Tokyo"
[17029] "Olympics" "2020"
[17031] "Gujarat's" "diamond"
[17033] "merchant" "Savji"
[17035] "Dholakia" "promised"
[17037] "provide" "Rs"
[17039] "11" "lakh"
[17041] "assistance" "player"
[17043] "wishes" "build"
[17045] "dream" "home"
[17047] "incredible" "pride"
[17049] "heart" "take"
[17051] "opportunity" "announce"
[17053] "HK" "Group"
[17055] "decided" "honour"
[17057] "Women" "hockey"
[17059] "team" "players"
[17061] "player" "wishes"
[17063] "build" "dream"
[17065] "home" "provide"
[17067] "assistance" "Rs"
[17069] "11" "lakh"
[17071] "Savji" "Dholakia"
[17073] "@SavjiDholakia" "August"
[17075] "3" "2021"
[17077] "Twitter" "post"
[17079] "Tuesday" "Dholakia"
[17081] "said" "incredible"
[17083] "pride" "heart"
[17085] "take" "opportunity"
[17087] "announce" "HK"
[17089] "Group" "decided"
[17091] "honour" "Women's"
[17093] "hockey" "team"
[17095] "players" "player"
[17097] "wishes" "build"
[17099] "dream" "home"
[17101] "assist" "Rs"
[17103] "11" "lakh"
[17105] "Hari" "Krishna"
[17107] "HK" "Group"
[17109] "also" "decided"
[17111] "award" "others"
[17113] "house" "brand"
[17115] "new" "car"
[17117] "worth" "Rs"
[17119] "5" "lakh"
[17121] "team" "brings"
[17123] "home" "medal"
[17125] "another" "announcement"
[17127] "diamond" "merchant"
[17129] "said" "brother's"
[17131] "friend" "US"
[17133] "assured" "Rs"
[17135] "1" "lakh"
[17137] "price" "Indian"
[17139] "women's" "Tokyo"
[17141] "Olympics" "hockey"
[17143] "player" "announcement"
[17145] "motivate" "women's"
[17147] "hockey" "team"
[17149] "monetary" "help"
[17151] "several" "helps"
[17153] "also" "coming"
[17155] "support" "nation's"
[17157] "heroes" "Dr"
[17159] "Kamlesh" "Dave"
[17161] "Brother's" "friend"
[17163] "US" "assured"
[17165] "praise" "winners"
[17167] "One" "lakh"
[17169] "rupees" "Savji"
[17171] "Dholakia" "@SavjiDholakia"
[17173] "August" "4"
[17175] "2021" "India's"
[17177] "women's" "hockey"
[17179] "team" "Wednesday"
[17181] "lost" "Argentina"
[17183] "counterparts" "1-2"
[17185] "crashing" "Tokyo"
[17187] "Olympics" "final"
[17189] "race" "However"
[17191] "India's" "women's"
[17193] "hockey" "team"
[17195] "still" "chance"
[17197] "win" "bronze"
[17199] "medal" "take"
[17201] "Great" "Britain"
[17203] "third-fourth" "place"
[17205] "play-off" "match"
[17207] "Friday" "Published"
[17209] "HT" "Digital"
[17211] "Content" "Services"
[17213] "permission" "MINT"
[17215] "query" "respect"
[17217] "article" "content"
[17219] "requirement" "please"
[17221] "contact" "Editor"
[17223] "Classification" "Language"
[17225] "ENGLISH" "Publication-Type"
[17227] "Newspaper" "Body"
[17229] "India" "Aug"
[17231] "7" "PM"
[17233] "Narendra" "Modi"
[17235] "took" "Twitter"
[17237] "congratulate" "Neeraj"
[17239] "Chopra" "became"
[17241] "second" "Indian"
[17243] "bag" "individual"
[17245] "gold" "medal"
[17247] "Olympics" "Saturday"
[17249] "Neeraj" "Chopra"
[17251] "won" "gold"
[17253] "medal" "men's"
[17255] "javelin" "throw"
[17257] "event" "87.58m"
[17259] "throw" "History"
[17261] "scripted" "Tokyo"
[17263] "@Neeraj_chopra1has" "achieved"
[17265] "today" "remembered"
[17267] "forever" "young"
[17269] "Neeraj" "done"
[17271] "exceptionally" "well"
[17273] "played" "remarkable"
[17275] "passion" "showed"
[17277] "unparalleled" "grit"
[17279] "Congratulations" "winning"
[17281] "Gold" "tweeted"
[17283] "PM" "Modi"
[17285] "23-year-old" "farmer's"
[17287] "son" "Khandra"
[17289] "village" "near"
[17291] "Panipat" "Haryana"
[17293] "produced" "second"
[17295] "round" "throw"
[17297] "87.58m" "finals"
[17299] "stun" "athletics"
[17301] "world" "end"
[17303] "India's" "100-year"
[17305] "wait" "track"
[17307] "field" "medal"
[17309] "Olympics" "Chopra"
[17311] "won" "country's"
[17313] "seventh" "medal"
[17315] "first" "gold"
[17317] "Olympics" "joined"
[17319] "shooter" "Abhinav"
[17321] "Bindra" "2008"
[17323] "Beijing" "Games"
[17325] "India's" "individual"
[17327] "gold" "winners"
[17329] "showpiece" "event"
[17331] "country" "surpassed"
[17333] "previous" "best"
[17335] "haul" "six"
[17337] "medal" "achieved"
[17339] "2012" "London"
[17341] "Games" "Published"
[17343] "HT" "Digital"
[17345] "Content" "Services"
[17347] "permission" "Hindustan"
[17349] "Times" "query"
[17351] "respect" "article"
[17353] "content" "requirement"
[17355] "please" "contact"
[17357] "Editor" "Classification"
[17359] "Language" "ENGLISH"
[17361] "Publication-Type" "Newswire"
[17363] "Body" "New"
[17365] "Delhi" "Aug"
[17367] "3" "Tokyo"
[17369] "Olympics" "Day"
[17371] "11" "Full"
[17373] "Schedule" "Tokyo"
[17375] "Olympics" "enters"
[17377] "11th" "day"
[17379] "promises" "full"
[17381] "action" "Indian"
[17383] "fans" "Javelin"
[17385] "thrower" "Annu"
[17387] "Rani" "begin"
[17389] "day" "women's"
[17391] "Group" "qualification"
[17393] "eyes" "men's"
[17395] "hockey" "team"
[17397] "made" "semi-finals"
[17399] "41" "years"
[17401] "play" "historic"
[17403] "encounter" "World"
[17405] "Champions" "Belgium"
[17407] "Wrestler" "Sonam"
[17409] "Malik" "also"
[17411] "action" "compete"
[17413] "freestyle" "62kg"
[17415] "event" "qualifies"
[17417] "Sonam" "slated"
[17419] "play" "semifinal"
[17421] "match" "day"
[17423] "Tajinderpal" "Singh"
[17425] "Toor" "compete"
[17427] "men's" "shot"
[17429] "put" "qualification"
[17431] "round" "tomorrow"
[17433] "India's" "schedule"
[17435] "Day" "10"
[17437] "Tokyo" "Olympics"
[17439] "timings" "IST"
[17441] "Athletics" "5"
[17443] "50" "Annu"
[17445] "Rani" "women's"
[17447] "javelin" "throw"
[17449] "Qualification" "Group"
[17451] "3" "45"
[17453] "Tajinderpal" "Singh"
[17455] "Toor" "men's"
[17457] "shot" "put"
[17459] "Qualification" "Group"
[17461] "Hockey" "7"
[17463] "00" "India"
[17465] "vs" "Belgium"
[17467] "men's" "semifinal"
[17469] "Wrestling" "8"
[17471] "30" "Sonam"
[17473] "Malik" "vs"
[17475] "Bolortuya" "Khurelkhuu"
[17477] "Mongolia" "women's"
[17479] "62kg" "Sonam"
[17481] "qualifies" "compete"
[17483] "Women's" "freestyle"
[17485] "62" "Kg"
[17487] "semi-final" "Match"
[17489] "start" "2"
[17491] "45" "PM"
[17493] "Published" "HT"
[17495] "Digital" "Content"
[17497] "Services" "permission"
[17499] "Hindustan" "Times"
[17501] "query" "respect"
[17503] "article" "content"
[17505] "requirement" "please"
[17507] "contact" "Editor"
[17509] "Classification" "Language"
[17511] "ENGLISH" "Publication-Type"
[17513] "Newswire" "Body"
[17515] "Neeraj" "Chopra"
[17517] "won" "first"
[17519] "gold" "medal"
[17521] "India" "Tokyo"
[17523] "Olympics" "Indian"
[17525] "celebrities" "took"
[17527] "social" "media"
[17529] "celebrate" "historic"
[17531] "moment" "Neeraj"
[17533] "Chopra" "Saturday"
[17535] "clinched" "gold"
[17537] "medal" "stunning"
[17539] "throw" "87.5m"
[17541] "men's" "javelin"
[17543] "throw" "final"
[17545] "Tokyo" "Olympics"
[17547] "win" "Neeraj"
[17549] "became" "second"
[17551] "Indian" "win"
[17553] "individual" "gold"
[17555] "Olympics" "first"
[17557] "notch" "track"
[17559] "field" "Olympic"
[17561] "medal" "country"
[17563] "Neeraj" "won"
[17565] "first" "gold"
[17567] "medal" "India"
[17569] "Tokyo" "Olympics"
[17571] "Indian" "celebrities"
[17573] "took" "social"
[17575] "media" "celebrate"
[17577] "historic" "moment"
[17579] "Adivi" "Sesh"
[17581] "tweeted" "#GOLD"
[17583] "#NeerajChopra" "BEAUTY"
[17585] "Richa" "Chadha"
[17587] "posted" "Twitter"
[17589] "GOLD" "@neerajchoprajav"
[17591] "good" "first"
[17593] "two" "attempts"
[17595] "third" "attempt"
[17597] "matter" "Vikram"
[17599] "Prabhu" "shared"
[17601] "Twitter" "@Neeraj_chopra1"
[17603] "Olympic" "Gold"
[17605] "medalist" "Neeerraaaaaaajjjjjjj"
[17607] "Chopraaaaaaaaaa" "Olympic"
[17609] "Gold" "champion"
[17611] "win" "#NeerajChopra"
[17613] "jai" "Hind"
[17615] "Neha" "Dhupia"
[17617] "@NehaDhupia" "August"
[17619] "7" "2021"
[17621] "Neha" "Dhupia"
[17623] "tweeted" "Neeerraaaaaaajjjjjjj"
[17625] "Chopraaaaaaaaaa" "Olympic"
[17627] "Gold" "champion"
[17629] "win" "#NeerajChopra"
[17631] "jai" "Hind"
[17633] "actually" "incredible"
[17635] "achievement" "greatest"
[17637] "Indian" "athlete"
[17639] "ever" "Sudhir"
[17641] "Mishra" "said"
[17643] "via" "Twitter"
[17645] "Nivin" "Pauly"
[17647] "posted" "Twitter"
[17649] "23" "year"
[17651] "old" "scripts"
[17653] "history" "India"
[17655] "track" "field"
[17657] "first" "medal"
[17659] "athletics" "100"
[17661] "years" "#GoldMedal"
[17663] "Congratulations" "@Neeraj_chopra1"
[17665] "#TeamIndia" "#TrackandField"
[17667] "#Javelin" "#Cheer4India"
[17669] "#Tokyo2020" "#Olympics2020"
[17671] "Shaabash" "#NeerajChopra"
[17673] "make" "us"
[17675] "proud" "Historic"
[17677] "win" "#IND"
[17679] "pic.twitter.com" "DNasmS6xtZ"
[17681] "Manoj" "Joshi"
[17683] "@actormanojjoshi" "August"
[17685] "7" "2021"
[17687] "Manoj" "Joshi"
[17689] "shared" "photo"
[17691] "Hum" "jeet"
[17693] "gaye" "won"
[17695] "moment" "Lagaan"
[17697] "wrote" "Shaabash"
[17699] "#NeerajChopra" "make"
[17701] "us" "proud"
[17703] "Historic" "win"
[17705] "#IND" "Aishwarya"
[17707] "Rajesh" "tweeted"
[17709] "gold" "India"
[17711] "Let" "celebrations"
[17713] "begin" "boy"
[17715] "#NeerajChopra" "wins"
[17717] "GOLD" "Wins"
[17719] "javelin" "competition"
[17721] "fantastic" "throw"
[17723] "87.58" "mtrs"
[17725] "gold" "India"
[17727] "Let" "celebrations"
[17729] "begin" "boy"
[17731] "#NeerajChopra" "wins"
[17733] "GOLD" "Wins"
[17735] "javelin" "competition"
[17737] "fantastic" "throw"
[17739] "87.58" "mtrs"
[17741] "aishwarya" "rajesh"
[17743] "@aishu_dil" "August"
[17745] "7" "2021"
[17747] "Vatsal" "Sheth"
[17749] "shared" "photo"
[17751] "Neeraj" "Chopra"
[17753] "wrote" "Yesssssss"
[17755] "First" "place"
[17757] "medal" "#NeerajChopra"
[17759] "#Tokyo2020" "Prithviraj"
[17761] "Sukumaran" "also"
[17763] "shared" "photo"
[17765] "Neeraj's" "winning"
[17767] "moment" "wrote"
[17769] "Gold" "#NeerajChopra"
[17771] "#TokyoOlympics2020" "Taapsee"
[17773] "Pannu" "expressed"
[17775] "delight" "writing"
[17777] "Twitter" "gold"
[17779] "jumping" "Joy"
[17781] "young" "man"
[17783] "Neeraj" "Chopra"
[17785] "created" "history"
[17787] "Nakuul" "Mehta"
[17789] "shared" "Twitter"
[17791] "Watershed" "moment"
[17793] "Indian" "sport"
[17795] "Neeraj" "Chopra"
[17797] "Gold" "Gold"
[17799] "Gold" "@Neeraj_chopra1"
[17801] "Congratulations" "Champion"
[17803] "#Olympics" "#gold"
[17805] "proud" "moment"
[17807] "every" "Indian"
[17809] "across" "world"
[17811] "Jai" "Hind"
[17813] "Riteish" "Deshmukh"
[17815] "said" "via"
[17817] "Twitter" "Ajay"
[17819] "Devgn" "wrote"
[17821] "Twitter" "Congratulations"
[17823] "Neeraj" "Chopra"
[17825] "win" "Tokyo"
[17827] "Olympics" "power"
[17829] "made" "parents"
[17831] "India" "proud"
[17833] "tell" "happy"
[17835] "awesome" "#NeerajChopra"
[17837] "#TokyoOlympics" "Kapil"
[17839] "Sharma" "took"
[17841] "Twitter" "wrote"
[17843] "Congratulations" "#India"
[17845] "r" "proud"
[17847] "@Neeraj_chopra1" "#goldmedal"
[17849] "#Tokyo2020" "god"
[17851] "bless" "Shehnaaz"
[17853] "Gill" "tweeted"
[17855] "gold" "Heartiest"
[17857] "congratulations" "#NeerajChopra"
[17859] "creating" "history"
[17861] "Classification" "Language"
[17863] "ENGLISH" "Publication-Type"
[17865] "Newspaper" "Body"
[17867] "sections" "people"
[17869] "Manipur" "joined"
[17871] "hands" "rest"
[17873] "country" "congratulating"
[17875] "Padma" "Shri"
[17877] "Saikhom" "Mirabai"
[17879] "Chanu" "won"
[17881] "first" "silver"
[17883] "medal" "49-kg"
[17885] "category" "Tokyo"
[17887] "Olympics" "Bhakta"
[17889] "Charan" "Das"
[17891] "general" "secretary"
[17893] "India" "Congress"
[17895] "Committee" "now"
[17897] "camping" "said"
[17899] "Miss" "Mirabai"
[17901] "done" "country"
[17903] "people" "proud"
[17905] "winning" "first"
[17907] "silver" "medal"
[17909] "Olympics" "games"
[17911] "behalf" "Mrs"
[17913] "Sonia" "Gandhi"
[17915] "Rahul" "Gandhi"
[17917] "congratulate" "also"
[17919] "congratulate" "people"
[17921] "soil" "proud"
[17923] "moment" "T"
[17925] "Radheshyam" "former"
[17927] "Minister" "now"
[17929] "Congress" "MLA"
[17931] "president" "Manipur"
[17933] "Olympics" "Association"
[17935] "said" "great"
[17937] "day" "Manipur"
[17939] "rest" "country"
[17941] "Mirabai" "made"
[17943] "us" "proud"
[17945] "winning" "country's"
[17947] "first" "medal"
[17949] "Tokyo" "history"
[17951] "India" "first"
[17953] "time" "Indian"
[17955] "won" "silver"
[17957] "medal" "weight"
[17959] "lifting" "Despite"
[17961] "curfew" "COVIND-19"
[17963] "restrictions" "people"
[17965] "celebrated" "great"
[17967] "event" "better"
[17969] "next" "Olympics"
[17971] "games" "refrain"
[17973] "Manipur" "Chief"
[17975] "Minister" "Nongthombam"
[17977] "Biren" "Meghalaya"
[17979] "congratulated" "Ms"
[17981] "Mirabai" "Chanu"
[17983] "victory" "Mr"
[17985] "Biren" "national"
[17987] "level" "footballer"
[17989] "weeks" "ago"
[17991] "announced" "rewards"
[17993] "amounting" "₹"
[17995] "1" "crore"
[17997] "Manipuri" "player"
[17999] "wins" "medal"
[18001] "Cash" "incentives"
[18003] "given" "take"
[18005] "part" "games"
[18007] "elderly" "woman"
[18009] "village" "Nongpok"
[18011] "Kakching" "said"
[18013] "knew" "shine"
[18015] "one" "day"
[18017] "since" "childhood"
[18019] "strong" "good"
[18021] "natured" "girl"
[18023] "Classification" "Language"
[18025] "ENGLISH" "Publication-Type"
[18027] "Newspaper" "Body"
[18029] "Russian" "wrestler"
[18031] "defeated" "India's"
[18033] "Ravi" "Kumar"
[18035] "Dahiya" "7-4"
[18037] "gold" "medal"
[18039] "match" "men's"
[18041] "wrestling" "57kg"
[18043] "category" "Tokyo"
[18045] "Olympics" "Indian"
[18047] "wrestler" "Ravi"
[18049] "Kumar" "Dahiya"
[18051] "won" "silver"
[18053] "medal" "first"
[18055] "Olympic" "Games"
[18057] "losing" "Russia's"
[18059] "Zavur" "Uguev"
[18061] "gold" "medal"
[18063] "match" "points"
[18065] "Russian" "wrestler's"
[18067] "strong" "defence"
[18069] "kept" "Ravi"
[18071] "Kumar" "bay"
[18073] "latter" "tried"
[18075] "level" "best"
[18077] "break" "defence"
[18079] "pin" "two-pointers"
[18081] "Uguev" "took"
[18083] "early" "lead"
[18085] "first" "sliding"
[18087] "Ravi" "circle"
[18089] "two-pointer" "Ravi"
[18091] "stormed" "back"
[18093] "match" "hanged"
[18095] "balance" "went"
[18097] "second" "round"
[18099] "second" "round"
[18101] "Uguev's" "defence"
[18103] "remained" "decisively"
[18105] "strong" "let"
[18107] "Ravi" "points"
[18109] "despite" "another"
[18111] "two-pointer" "Indian"
[18113] "wrestler" "Russian"
[18115] "three-point" "lead"
[18117] "won" "gold"
[18119] "medal" "points"
[18121] "thereby" "handing"
[18123] "silver" "medal"
[18125] "India" "Ravi"
[18127] "Kumar" "Dahiya"
[18129] "became" "second"
[18131] "Indian" "wrestler"
[18133] "win" "silver"
[18135] "medal" "Sushil"
[18137] "Kumar's" "win"
[18139] "2012" "London"
[18141] "Olympics" "virtue"
[18143] "win" "India"
[18145] "won" "5th"
[18147] "medal" "ongoing"
[18149] "Tokyo" "Olympics"
[18151] "Mirabai" "Chanu's"
[18153] "silver" "weightlifting"
[18155] "PV" "Sindhu's"
[18157] "bronze" "medal"
[18159] "win" "women's"
[18161] "singles" "Badminton"
[18163] "Lovlina" "Borgohain's"
[18165] "bronze" "medal"
[18167] "boxing" "Indian"
[18169] "men's" "hockey"
[18171] "team's" "bronze"
[18173] "medal" "Classification"
[18175] "Language" "ENGLISH"
[18177] "Publication-Type" "Newspaper"
[18179] "Body" "Tokyo"
[18181] "July" "22"
[18183] "moment" "pride"
[18185] "heartbreak" "Japan"
[18187] "favourite" "women's"
[18189] "softball" "team"
[18191] "opened" "action"
[18193] "Tokyo" "Olympics"
[18195] "Wednesday" "victory"
[18197] "Australia" "team's"
[18199] "partisan" "fans"
[18201] "watch" "action"
[18203] "TV" "stadium"
[18205] "Fukushima" "starkly"
[18207] "empty" "Yoshitsugu"
[18209] "Hashimoto" "65"
[18211] "lives" "right"
[18213] "across" "stadium"
[18215] "watched" "match"
[18217] "TV" "home"
[18219] "missed" "loud"
[18221] "cheers" "spectators"
[18223] "used" "hear"
[18225] "whenever" "ball"
[18227] "games" "held"
[18229] "stadium" "believe"
[18231] "people" "Fukushima"
[18233] "encouraged" "athletes"
[18235] "performance" "Hashimoto"
[18237] "quoted" "Kyodo"
[18239] "News" "home"
[18241] "Olympics" "unfold"
[18243] "Japanese" "public"
[18245] "switching" "screen"
[18247] "watch" "Games"
[18249] "happening" "backyard"
[18251] "Tokyo" "Organising"
[18253] "Committee" "holding"
[18255] "Olympics" "without"
[18257] "spectators" "fear"
[18259] "Covid-19" "infections"
[18261] "Instead" "spending"
[18263] "tickets" "events"
[18265] "Japanese" "splurging"
[18267] "new" "TV"
[18269] "sets" "Manufacturers"
[18271] "luring" "customers"
[18273] "cutting" "edge-models"
[18275] "bigger" "50"
[18277] "inches" "offering"
[18279] "high" "quality"
[18281] "sound" "systems"
[18283] "high-definition" "images"
[18285] "big" "TV"
[18287] "companies" "Japan"
[18289] "BIC" "Camera"
[18291] "Nojima" "Yodobashi"
[18293] "Camera" "Panasonic"
[18295] "reporting" "sharp"
[18297] "increase" "sales"
[18299] "Sales" "TVs"
[18301] "stronger" "last"
[18303] "year" "spokesperson"
[18305] "Bic" "Camera"
[18307] "said" "Japan"
[18309] "Times" "Sales"
[18311] "BIC" "Camera"
[18313] "started" "rising"
[18315] "May" "surge"
[18317] "June" "speculation"
[18319] "started" "Olympics"
[18321] "held" "behind"
[18323] "closed" "stadiums"
[18325] "July" "IOC"
[18327] "finally" "declared"
[18329] "Games" "spectator-free"
[18331] "TV" "sales"
[18333] "rose" "Nojima"
[18335] "Corp" "TV"
[18337] "sales" "week"
[18339] "last" "Sunday"
[18341] "increased" "20"
[18343] "percent" "year"
[18345] "earlier" "sales"
[18347] "Yodobashi" "camera"
[18349] "two-fold" "January"
[18351] "June" "choice"
[18353] "watch" "action"
[18355] "unfolding" "TV"
[18357] "said" "Isao"
[18359] "Shigeno" "volunteer"
[18361] "disappointing" "able"
[18363] "go" "stadiums"
[18365] "situation" "right"
[18367] "now" "Fukushima"
[18369] "stadium" "Japan's"
[18371] "softball" "team"
[18373] "lived" "billing"
[18375] "beating" "Australia"
[18377] "8-1" "four-time"
[18379] "Olympic" "gold"
[18381] "winning" "team"
[18383] "became" "rage"
[18385] "Japan" "won"
[18387] "2008" "Beijing"
[18389] "Olympic" "title"
[18391] "beating" "USA"
[18393] "sport" "dropped"
[18395] "next" "two"
[18397] "editions" "Games"
[18399] "Pitcher" "Yukiko"
[18401] "Ueno" "top"
[18403] "star" "team"
[18405] "won" "2008"
[18407] "gold" "still"
[18409] "playing" "Japanese"
[18411] "fans" "eagerly"
[18413] "looking" "forward"
[18415] "taking" "field"
[18417] "Olympics" "moment"
[18419] "poignant" "residents"
[18421] "Fukushima" "northeastern"
[18423] "Japan" "prefecture"
[18425] "ravaged" "2011"
[18427] "earthquake" "led"
[18429] "deadliest" "nuclear"
[18431] "reactor" "accident"
[18433] "since" "Chernobyl"
[18435] "1986" "One"
[18437] "theme" "Tokyo"
[18439] "Olympics" "show"
[18441] "Fukushima" "bounced"
[18443] "back" "disaster"
[18445] "Published" "HT"
[18447] "Digital" "Content"
[18449] "Services" "permission"
[18451] "Hindustan" "Times"
[18453] "query" "respect"
[18455] "article" "content"
[18457] "requirement" "please"
[18459] "contact" "Editor"
[18461] "Classification" "Language"
[18463] "ENGLISH" "Publication-Type"
[18465] "Newswire" "Body"
[18467] "Indore" "time"
[18469] "celebrate" "encash"
[18471] "euphoria" "can"
[18473] "use" "moment"
[18475] "benefit" "hockey"
[18477] "says" "Negi"
[18479] "let" "traumatic"
[18481] "history" "repeat"
[18483] "1998" "bound"
[18485] "lose" "chance"
[18487] "another" "win"
[18489] "decades" "happened"
[18491] "1998" "last"
[18493] "Asian" "Games"
[18495] "20the" "Century"
[18497] "held" "Bangkok"
[18499] "1998" "provided"
[18501] "golden" "moment"
[18503] "Indian" "hockey"
[18505] "tale" "two"
[18507] "tournaments" "1998"
[18509] "May" "1998"
[18511] "India" "floundered"
[18513] "9" "World"
[18515] "Cup" "Utrecht"
[18517] "Netherlands" "finishing"
[18519] "dismal" "ninth"
[18521] "coaching" "team"
[18523] "says" "Negi"
[18525] "Sadly" "legacy"
[18527] "1998" "Asian"
[18529] "Games" "gold"
[18531] "medal" "triumph"
[18533] "last" "long"
[18535] "success" "Bangkok"
[18537] "Dhanraj" "Pillay"
[18539] "senior" "players"
[18541] "requested" "IHF"
[18543] "monetary" "incentives"
[18545] "even" "asked"
[18547] "graded" "payment"
[18549] "playing" "international"
[18551] "matches" "India"
[18553] "request" "money"
[18555] "graded" "payment"
[18557] "seen" "players"
[18559] "revolt" "Pillay"
[18561] "several" "members"
[18563] "victorious" "1998"
[18565] "squad" "suspended"
[18567] "test" "series"
[18569] "vs" "Pakistan"
[18571] "lost" "players"
[18573] "lost" "Olympics"
[18575] "following" "decades"
[18577] "rues" "Negi"
[18579] "save" "moment"
[18581] "ready" "next"
[18583] "Olympics" "Organise"
[18585] "15-20" "exhibition"
[18587] "matches" "Indian"
[18589] "Olympic" "Team"
[18591] "Rest" "India"
[18593] "MP" "team"
[18595] "particular" "state"
[18597] "team" "matches"
[18599] "going" "held"
[18601] "reaching" "every"
[18603] "part" "country"
[18605] "encashing" "win"
[18607] "Reach" "hockey"
[18609] "players" "organise"
[18611] "matches" "local"
[18613] "teams" "Ranchi"
[18615] "Raipur" "Chandigarh"
[18617] "Bhubaneswar" "Bhopal"
[18619] "major" "centres"
[18621] "hockey" "players"
[18623] "procession" "high"
[18625] "magnitude" "organised"
[18627] "celebrate" "win"
[18629] "players" "must"
[18631] "given" "respect"
[18633] "never" "Classification"
[18635] "Language" "ENGLISH"
[18637] "Publication-Type" "Newspaper"
[18639] "Body" "Taapsee"
[18641] "Pannu" "called"
[18643] "PV" "Sindhu"
[18645] "one" "kind"
[18647] "Samantha" "Akkineni"
[18649] "praise" "hardwork"
[18651] "dedication" "PV"
[18653] "Sindhu" "bagged"
[18655] "broze" "Olympics"
[18657] "2020" "became"
[18659] "first" "Indian"
[18661] "female" "Olympian"
[18663] "win" "two"
[18665] "medals" "India's"
[18667] "star" "shuttler"
[18669] "PV" "Sindhu"
[18671] "won" "bronze"
[18673] "Tokyo" "Olympics"
[18675] "Sunday" "Sindhu"
[18677] "defeated" "China's"
[18679] "Bingjiao" "win"
[18681] "second" "consecutive"
[18683] "medal" "win"
[18685] "Sindhu" "became"
[18687] "first" "Indian"
[18689] "female" "sportsperson"
[18691] "win" "two"
[18693] "medals" "Olympics"
[18695] "second" "Indian"
[18697] "Olympian" "two"
[18699] "medals" "wrestler"
[18701] "Sushil" "Kumar"
[18703] "soon" "won"
[18705] "celebrities" "took"
[18707] "respective" "social"
[18709] "media" "handles"
[18711] "congratulate" "Sindhu"
[18713] "Samantha" "Akkineni"
[18715] "Sara" "Ali"
[18717] "Khan" "Dulquer"
[18719] "Salmaan" "Taapsee"
[18721] "Pannu" "Abhishek"
[18723] "Bachchan" "Varun"
[18725] "Dhawan" "Deepika"
[18727] "Padukone" "others"
[18729] "shared" "reactions"
[18731] "PV" "Sindhu's"
[18733] "win" "Samantha"
[18735] "Akkineni" "said"
[18737] "respects" "PV"
[18739] "Sindhu's" "hardwork"
[18741] "called" "special"
[18743] "Instagram" "stories"
[18745] "mentioned" "imagine"
[18747] "takes" "absolutely"
[18749] "love" "respect"
[18751] "hardwork" "dedication"
[18753] "special" "Dulquer"
[18755] "Salmaan" "congratulated"
[18757] "PV" "Sindhu"
[18759] "wrote" "Always"
[18761] "making" "India"
[18763] "proud" "Taapsee"
[18765] "Pannu" "celebrates"
[18767] "birthday" "today"
[18769] "celebrated" "PV"
[18771] "Sindhu's" "win"
[18773] "girl" "getting"
[18775] "home" "bronze"
[18777] "One" "colour"
[18779] "time" "say"
[18781] "Come" "champ"
[18783] "@Pvsindhu1" "calls"
[18785] "celebration" "one"
[18787] "kind" "celebrate"
[18789] "tweeted" "Abhishek"
[18791] "Bachchan" "also"
[18793] "tweeted" "congratulatory"
[18795] "message" "Sindhu"
[18797] "Congratulations" "winning"
[18799] "bronze" "also"
[18801] "becoming" "first"
[18803] "Indian" "woman"
[18805] "win" "two"
[18807] "Olympic" "medals"
[18809] "make" "India"
[18811] "proud" "Junior"
[18813] "Bachchan's" "tweet"
[18815] "read" "Indian"
[18817] "Women" "showing"
[18819] "us" "way"
[18821] "Bravo" "#PVSindhu"
[18823] "1s" "Indian"
[18825] "Woman" "Olympian"
[18827] "win" "2"
[18829] "individual" "medal"
[18831] "#OlympicGames" "#Bronze"
[18833] "Champion" "Randeep"
[18835] "Hooda" "mentioned"
[18837] "via" "Twitter"
[18839] "reactions" "PV"
[18841] "Sindhu's" "win"
[18843] "Yet" "another"
[18845] "historic" "win"
[18847] "one" "India's"
[18849] "best" "Congratulations"
[18851] "winning" "bronze"
[18853] "@Pvsindhu1" "Immensely"
[18855] "happy" "proud"
[18857] "#Tokyo2020" "Mahesh"
[18859] "Babu" "@urstrulyMahesh"
[18861] "August" "1"
[18863] "2021" "amazing"
[18865] "win" "historical"
[18867] "moment" "Congratulations"
[18869] "@Pvsindhu1" "Anil"
[18871] "Kapoor" "@AnilKapoor"
[18873] "August" "1"
[18875] "2021" "team"
[18877] "defeated" "Gold"
[18879] "Medal" "winners"
[18881] "Tokyo" "2020"
[18883] "men's" "doubles"
[18885] "badminton" "boys"
[18887] "like" "see"
[18889] "glass" "half"
[18891] "full" "bright"
[18893] "future" "@Shettychirag04"
[18895] "@satwiksairaj" "congratulations"
[18897] "Chinese" "Taipei"
[18899] "pair" "see"
[18901] "u" "next"
[18903] "Olympics" "taapsee"
[18905] "pannu" "@taapsee"
[18907] "July" "31"
[18909] "2021" "Dearest"
[18911] "@Pvsindhu1" "Congratulations"
[18913] "thank" "#ProudIndian"
[18915] "Anupam" "Kher"
[18917] "@AnupamPKher" "August"
[18919] "1" "2021"
[18921] "love" "India"
[18923] "congratulations" "@Pvsindhu1"
[18925] "winning" "bronze"
[18927] "medal" "@Tokyo2020"
[18929] "Olympics" "making"
[18931] "nation" "proud.#Cheer4India"
[18933] "#Pvsindhu" "BANDLA"
[18935] "GANESH" "@ganeshbandla"
[18937] "August" "1"
[18939] "2021" "Proud"
[18941] "@Pvsindhu1" "First"
[18943] "Indian" "woman"
[18945] "win" "#Olympics"
[18947] "Medal" "Twice"
[18949] "Making" "India"
[18951] "Indians" "proud"
[18953] "#PVSindhu#Bronze" "#Cheer4India"
[18955] "#Tokyo2020" "#Olympics2020"
[18957] "Sunny" "Deol"
[18959] "@iamsunnydeol" "August"
[18961] "1" "2021"
[18963] "Congratulations" "Champion"
[18965] "@Pvsindhu1Proud" "always"
[18967] "#Tokyo2020" "Sudheer"
[18969] "Babu" "@isudheerbabu"
[18971] "August" "1"
[18973] "2021" "game"
[18975] "everything" "utter"
[18977] "court" "dominantion"
[18979] "perfectly" "timed"
[18981] "smashes" "@Pvsindhu1"
[18983] "bags" "home"
[18985] "bronze" "done"
[18987] "Reuters" "Leonhard"
[18989] "Foeger" "Sonali"
[18991] "Bendre" "Behl"
[18993] "@iamsonalibendre" "August"
[18995] "1" "2021"
[18997] "Ive" "never"
[18999] "seen" "Indian"
[19001] "sportsperson" "displaying"
[19003] "phenomenal" "skills"
[19005] "two" "Olympic"
[19007] "medals" "@Pvsindhu1"
[19009] "Badminton" "World"
[19011] "Champion" "best"
[19013] "ever" "athlete"
[19015] "India" "individual"
[19017] "sports" "Congratulations"
[19019] "R" "Sarath"
[19021] "Kumar" "@realsarathkumar"
[19023] "August" "1"
[19025] "2021" "Indian"
[19027] "women" "continue"
[19029] "shine" "Olympics"
[19031] "Congratulations" "@pvsindhu1"
[19033] "go" "girl#Tokoyo2020"
[19035] "Rakul" "Singh"
[19037] "@Rakulpreet" "August"
[19039] "1" "2021"
[19041] "Deepika" "Padukone"
[19043] "Varun" "Dhawan"
[19045] "Sara" "Ali"
[19047] "Khan" "others"
[19049] "also" "shared"
[19051] "reaction" "PV"
[19053] "Sindhu's" "win"
[19055] "Sindhu" "won"
[19057] "silver" "medal"
[19059] "Rio" "Olympics"
[19061] "India's" "second"
[19063] "medal" "ongoing"
[19065] "Tokyo" "Olympics"
[19067] "weightlifter" "Mirabai"
[19069] "Chanu" "won"
[19071] "silver" "women's"
[19073] "49kg" "weightlifting"
[19075] "July" "24"
[19077] "first" "official"
[19079] "day" "action"
[19081] "Games" "Classification"
[19083] "Language" "ENGLISH"
[19085] "Publication-Type" "Newspaper"
[19087] "Body" "Difficult"
[19089] "draining" "Even"
[19091] "Tokyo" "Olympics"
[19093] "began" "lots"
[19095] "speculations" "athletes"
[19097] "fare" "inside"
[19099] "Games" "Village"
[19101] "time" "restrictions"
[19103] "rules" "place"
[19105] "per" "COVID"
[19107] "protocols" "Apart"
[19109] "giving" "athletes"
[19111] "chance" "achieve"
[19113] "pinnacle" "sporting"
[19115] "achievement" "Olympics"
[19117] "also" "known"
[19119] "social" "melting"
[19121] "pot" "Sportspersons"
[19123] "around" "world"
[19125] "stay" "Olympics"
[19127] "Village" "socialising"
[19129] "intermingling" "past"
[19131] "many" "attributed"
[19133] "fun" "atmosphere"
[19135] "Games" "Villages"
[19137] "alleviating" "stress"
[19139] "around" "competitions"
[19141] "fears" "social"
[19143] "distancing" "no-contact"
[19145] "rules" "just"
[19147] "suck" "fun"
[19149] "Games" "put"
[19151] "many" "athletes"
[19153] "mental" "health"
[19155] "risk" "Athletes"
[19157] "Netherlands" "quarantined"
[19159] "hotel" "testing"
[19161] "positive" "COVID-19"
[19163] "went" "strike"
[19165] "protesting" "stay"
[19167] "called" "Olympic"
[19169] "jail" "need"
[19171] "outside" "air"
[19173] "anything" "nothing"
[19175] "opens" "windows"
[19177] "closed" "doors"
[19179] "open" "ever"
[19181] "okay" "outside"
[19183] "air" "inhuman"
[19185] "mentally" "super-draining"
[19187] "said" "Dutch"
[19189] "street" "skateboarder"
[19191] "Candy" "Jacobs"
[19193] "Backing" "athletes"
[19195] "Dutch" "Olympics"
[19197] "federation" "called"
[19199] "quarantine" "conditions"
[19201] "unacceptable" "said"
[19203] "raise" "issue"
[19205] "IOC" "particularly"
[19207] "tougher" "athletes"
[19209] "play" "team"
[19211] "sports" "used"
[19213] "staying" "together"
[19215] "group" "Village"
[19217] "even" "teammates"
[19219] "staying" "separate"
[19221] "rooms" "minimal"
[19223] "contact" "outside"
[19225] "playing" "arenas"
[19227] "difficult" "play"
[19229] "field" "hockey"
[19231] "team" "together"
[19233] "friends" "now"
[19235] "alone" "hotel"
[19237] "best" "team"
[19239] "position" "Argentine"
[19241] "hockey" "player"
[19243] "Emiliano" "Bosso"
[19245] "said" "teams"
[19247] "tried" "avoid"
[19249] "strict" "rules"
[19251] "putting" "athletes"
[19253] "hotels" "close"
[19255] "Games" "Village"
[19257] "many" "away"
[19259] "action" "felt"
[19261] "isolating" "US"
[19263] "women's" "gymnastics"
[19265] "team" "staying"
[19267] "hotel" "instead"
[19269] "Games" "Village"
[19271] "Simon" "Biles"
[19273] "addressed" "affected"
[19275] "ability" "replenish"
[19277] "amidst" "multiple"
[19279] "competitions" "Usually"
[19281] "hang" "village"
[19283] "stuff" "said"
[19285] "adding" "suck"
[19287] "feel" "weight"
[19289] "world" "outlets"
[19291] "amount" "training"
[19293] "saying" "great"
[19295] "set" "chose"
[19297] "COVID" "safe"
[19299] "protocols" "COVID"
[19301] "protocols" "place"
[19303] "meant" "athletes"
[19305] "travel" "Tokyo"
[19307] "family" "members"
[19309] "time" "around"
[19311] "Add" "fact"
[19313] "spectators" "stands"
[19315] "means" "athletes"
[19317] "nobody" "cheering"
[19319] "Swimming" "legend"
[19321] "Michael" "Phelps"
[19323] "said" "causing"
[19325] "anxiety" "stress"
[19327] "among" "athletes"
[19329] "Phelps" "said"
[19331] "Olympic" "athletes"
[19333] "need" "someone"
[19335] "can" "trust"
[19337] "Games" "Even"
[19339] "IOC" "allowed"
[19341] "mothers" "bring"
[19343] "along" "babies"
[19345] "athletes" "complained"
[19347] "rules" "place"
[19349] "makes" "pointless"
[19351] "impossible" "Spanish"
[19353] "synchronised" "swimmer"
[19355] "Ona" "Carbonell"
[19357] "said" "leave"
[19359] "11-month-old" "son"
[19361] "back" "Spain"
[19363] "said" "per"
[19365] "rules" "nursing"
[19367] "mothers" "leave"
[19369] "bubble" "breastfeed"
[19371] "children" "move"
[19373] "felt" "increased"
[19375] "risk" "infection"
[19377] "put" "teammates"
[19379] "risk" "Classification"
[19381] "Language" "ENGLISH"
[19383] "Publication-Type" "Newspaper"
[19385] "Body" "Sunday"
[19387] "August" "1"
[19389] "badminton" "player"
[19391] "PV" "Sindhu"
[19393] "created" "history"
[19395] "defeating" "Bing"
[19397] "Jiao" "China"
[19399] "21-13" "21-15"
[19401] "win" "women's"
[19403] "singles" "bronze"
[19405] "medal" "Tokyo"
[19407] "Olympics" "Sindhu"
[19409] "become" "first"
[19411] "Indian" "woman"
[19413] "win" "two"
[19415] "Olympic" "medals"
[19417] "won" "silver"
[19419] "medal" "2016"
[19421] "Rio" "Olympics"
[19423] "Celebs" "like"
[19425] "Chiranjeevi" "Mahesh"
[19427] "Babu" "Pooja"
[19429] "Hegde" "Kajal"
[19431] "Aggarwal" "Samantha"
[19433] "Akkineni" "took"
[19435] "social" "media"
[19437] "congratulate" "PV"
[19439] "Sindhu" "inspiring"
[19441] "girls" "across"
[19443] "country" "dream"
[19445] "big" "MAHESH"
[19447] "BABU" "CHIRANJEEVI"
[19449] "LAUD" "PV"
[19451] "SINDHU'S" "HISTORIC"
[19453] "BRONZE" "WIN"
[19455] "Celebs" "took"
[19457] "social" "media"
[19459] "congratulate" "women's"
[19461] "singles" "bronze"
[19463] "medal" "Tokyo"
[19465] "Olympics" "Mahesh"
[19467] "Babu" "took"
[19469] "Twitter" "wrote"
[19471] "Yet" "another"
[19473] "historic" "win"
[19475] "one" "India's"
[19477] "best" "Congratulations"
[19479] "winning" "bronze"
[19481] "@Pvsindhu1" "Immensely"
[19483] "happy" "proud"
[19485] "#Tokyo2020" "sic"
[19487] "Yet" "another"
[19489] "historic" "win"
[19491] "one" "India's"
[19493] "best" "Congratulations"
[19495] "winning" "bronze"
[19497] "Immensely" "happy"
[19499] "proud" "Mahesh"
[19501] "Babu" "@urstrulyMahesh"
[19503] "Chiranjeevi" "took"
[19505] "Twitter" "share"
[19507] "picture" "PV"
[19509] "Sindhu" "congratulated"
[19511] "becoming" "first"
[19513] "Indian" "woman"
[19515] "bring" "home"
[19517] "Olympics" "medal"
[19519] "twice" "row"
[19521] "wrote" "Congrats"
[19523] "@Pvsindhu1" "winning"
[19525] "medal" "creating"
[19527] "history" "first"
[19529] "Indian" "woman"
[19531] "bring" "Olympic"
[19533] "medal" "twice"
[19535] "row" "Delighted"
[19537] "medals" "won"
[19539] "far" "Indian"
[19541] "women" "stopping"
[19543] "Women" "Power"
[19545] "make" "India"
[19547] "proud" "#MirabaiChanu"
[19549] "@Pvsindhu1" "#Tokyo2020"
[19551] "sic" "Congrats"
[19553] "winning" "medal"
[19555] "creating" "history"
[19557] "first" "Indian"
[19559] "woman" "bring"
[19561] "Olympic" "medal"
[19563] "twice" "row.Delighted"
[19565] "medals" "won"
[19567] "far" "Indian"
[19569] "women" "stopping"
[19571] "Women" "Power"
[19573] "make" "India"
[19575] "proud" "Chiranjeevi"
[19577] "Konidela" "@KChiruTweets"
[19579] "CELEBS" "CONGRATULATE"
[19581] "PV" "SINDHU"
[19583] "HISTORIC" "WIN"
[19585] "Samantha" "Akkineni"
[19587] "took" "Instagram"
[19589] "stories" "wrote"
[19591] "againI" "imagine"
[19593] "takes" "@pvsindhu1"
[19595] "absolutely" "love"
[19597] "respect" "hardwork"
[19599] "dedication" "special"
[19601] "sic" "Pooja"
[19603] "Hegde" "also"
[19605] "congratulated" "PV"
[19607] "Sindhu" "inspiring"
[19609] "girls" "always"
[19611] "dream" "big"
[19613] "wrote" "takes"
[19615] "lot" "grit"
[19617] "focus" "sacrifice"
[19619] "achieve" "done"
[19621] "big" "reminder"
[19623] "dream" "big"
[19625] "put" "work"
[19627] "goes" "First"
[19629] "Indian" "female"
[19631] "athlete" "win"
[19633] "consecutive" "Olympic"
[19635] "medals" "Take"
[19637] "bow" "Thank"
[19639] "inspiration" "@pvsindhu1"
[19641] "sic" "Kajal"
[19643] "Aggarwal" "shared"
[19645] "video" "Instagram"
[19647] "stories" "wrote"
[19649] "@pvsindhu" "historic"
[19651] "indeed" "#Somuchrespect"
[19653] "#Andpride" "sic"
[19655] "Namrata" "Shirodkar"
[19657] "wrote" "done"
[19659] "India" "proud"
[19661] "@pvsindhu1" "Many"
[19663] "congratulations" "incredible"
[19665] "win" "#Tokyo2020Olympics"
[19667] "#GirlPower" "sic"
[19669] "also" "lauded"
[19671] "PV" "Sindhu's"
[19673] "historic" "win"
[19675] "Tokyo" "Olympics"
[19677] "ALSO" "READ"
[19679] "|" "ALSO"
[19681] "READ" "|"
[19683] "Graphic" "Mahesh"
[19685] "Babu" "Chiranjeevi"
[19687] "celebs" "congratulate"
[19689] "PV" "Sindhu"
[19691] "historic" "bronze"
[19693] "win" "Olympics"
[19695] "Classification" "Language"
[19697] "ENGLISH" "Publication-Type"
[19699] "Web" "Publication"
[19701] "Body" "New"
[19703] "Delhi" "July"
[19705] "31" "something"
[19707] "recent" "battles"
[19709] "Novak" "Djokovic"
[19711] "Pablo" "Carreno"
[19713] "Busta" "evoke"
[19715] "drama" "produce"
[19717] "emotions" "hold"
[19719] "significance" "New"
[19721] "York" "September"
[19723] "2020" "two"
[19725] "met" "US"
[19727] "Open" "Serb"
[19729] "struck" "line"
[19731] "judge" "unintentionally"
[19733] "ball" "moment"
[19735] "rage" "disqualified"
[19737] "Tokyo" "July"
[19739] "2021" "multiple"
[19741] "moments" "frustration"
[19743] "flung" "racquet"
[19745] "stands" "also"
[19747] "net" "exhausted"
[19749] "Djokovic" "exited"
[19751] "Olympics" "defeat"
[19753] "bronze" "medal"
[19755] "match" "world"
[19757] "1" "came"
[19759] "Tokyo" "eyeing"
[19761] "gold" "medal"
[19763] "Golden" "Slam"
[19765] "leaving" "Tokyo"
[19767] "without" "medal"
[19769] "kind" "confidence"
[19771] "completing" "Calendar"
[19773] "Slam" "slightly"
[19775] "shaken" "racquet-smashing"
[19777] "Djokovic" "lost"
[19779] "Spaniard" "4-6"
[19781] "7-6" "6"
[19783] "3-6" "men's"
[19785] "singles" "bronze"
[19787] "medal" "encounter"
[19789] "Saturday" "Shortly"
[19791] "pulled" "mixed"
[19793] "doubles" "bronze"
[19795] "medal" "tie"
[19797] "partner" "Nina"
[19799] "Stojanovic" "citing"
[19801] "shoulder" "injury"
[19803] "Australia's" "Ashley"
[19805] "Barty" "John"
[19807] "Peers" "awarded"
[19809] "medal" "came"
[19811] "day" "Djokovic"
[19813] "saw" "year-long"
[19815] "dream" "becoming"
[19817] "first" "man"
[19819] "achieve" "Golden"
[19821] "Slam" "winning"
[19823] "four" "Grand"
[19825] "Slams" "Olympic"
[19827] "gold" "year"
[19829] "turn" "nightmare"
[19831] "set" "break"
[19833] "Alexander" "Zverev"
[19835] "semi-final" "last"
[19837] "time" "Djokovic"
[19839] "lost" "two"
[19841] "singles" "matches"
[19843] "row" "November"
[19845] "2019" "round"
[19847] "robin" "stage"
[19849] "ATP" "Finals"
[19851] "last" "time"
[19853] "Djokovic" "won"
[19855] "medal" "Olympics"
[19857] "bronze" "2008"
[19859] "Beijing" "Games"
[19861] "losing" "Argentina's"
[19863] "Juan" "Martin"
[19865] "del" "Potro"
[19867] "London" "Rio"
[19869] "first" "round"
[19871] "Tokyo" "also"
[19873] "lost" "significant"
[19875] "volume" "energy"
[19877] "taxing" "heat"
[19879] "forced" "start"
[19881] "tennis" "matches"
[19883] "pushed" "back"
[19885] "Djokovic" "also"
[19887] "signed" "play"
[19889] "mixed" "doubles"
[19891] "34-year-old" "played"
[19893] "two" "matches"
[19895] "Wednesday" "two"
[19897] "Thursday" "two"
[19899] "Friday" "Djokovic"
[19901] "looked" "spent"
[19903] "emotionally" "physically"
[19905] "towards" "end"
[19907] "match" "Carreno"
[19909] "Busta" "US"
[19911] "Open" "Djokovic"
[19913] "bid" "complete"
[19915] "Calendar" "Slam"
[19917] "winning" "Australian"
[19919] "Open" "French"
[19921] "Open" "Wimbledon"
[19923] "year" "begins"
[19925] "less" "month"
[19927] "Tokyo" "experience"
[19929] "potential" "derail"
[19931] "well" "consequences"
[19933] "physically" "hopefully"
[19935] "create" "problem"
[19937] "US" "Open"
[19939] "something" "sure"
[19941] "right" "now"
[19943] "Djokovic" "told"
[19945] "reporters" "match"
[19947] "tying" "Roger"
[19949] "Federer" "Rafael"
[19951] "Nadal" "20"
[19953] "Grand" "Slams"
[19955] "Wimbledon" "meant"
[19957] "Djokovic's" "year"
[19959] "also" "meant"
[19961] "Djokovic's" "Olympics"
[19963] "looked" "every"
[19965] "bit" "like"
[19967] "one" "Serb"
[19969] "cynosure" "eyes"
[19971] "Games" "Village"
[19973] "clicking" "selfies"
[19975] "athletes" "ask"
[19977] "Indians" "working"
[19979] "splits" "Belgian"
[19981] "gymnasts" "cheering"
[19983] "loudest" "fellow"
[19985] "Serb" "competitors"
[19987] "entire" "contingent"
[19989] "watching" "together"
[19991] "TV" "regret"
[19993] "coming" "Olympics"
[19995] "Djokovic" "said"
[19997] "Published" "HT"
[19999] "Digital" "Content"
[20001] "Services" "permission"
[20003] "Hindustan" "Times"
[20005] "query" "respect"
[20007] "article" "content"
[20009] "requirement" "please"
[20011] "contact" "Editor"
[20013] "Classification" "Language"
[20015] "ENGLISH" "Publication-Type"
[20017] "Newswire" "Body"
[20019] "Haryana" "Chief"
[20021] "Minister" "Manohar"
[20023] "Lal" "Khattar"
[20025] "Friday" "congratulated"
[20027] "Indian" "women's"
[20029] "hockey" "team"
[20031] "performance" "Tokyo"
[20033] "Olympics" "announced"
[20035] "reward" "Rs"
[20037] "50" "lakh"
[20039] "nine" "players"
[20041] "state" "Taking"
[20043] "Twitter" "Manohar"
[20045] "Lal" "Khattar"
[20047] "said" "Haryana"
[20049] "Government" "award"
[20051] "Rs" "50"
[20053] "lakhs" "nine"
[20055] "members" "Olympics"
[20057] "women's" "hockey"
[20059] "team" "Haryana"
[20061] "congratulate" "Indian"
[20063] "team" "praiseworthy"
[20065] "performance" "Tokyo"
[20067] "Olympics" "history-making"
[20069] "Indian" "women's"
[20071] "hockey" "team's"
[20073] "dream" "securing"
[20075] "maiden" "Olympic"
[20077] "medal" "remained"
[20079] "unfulfilled" "lost"
[20081] "3-4" "Great"
[20083] "Britain" "hard-fought"
[20085] "bronze" "play-off"
[20087] "match" "ongoing"
[20089] "Games" "Tokyo"
[20091] "Friday" "loss"
[20093] "Indian" "women's"
[20095] "team" "finished"
[20097] "fourth" "Tokyo"
[20099] "2020" "Olympics"
[20101] "meanwhile" "team"
[20103] "Great" "Britain"
[20105] "captured" "third"
[20107] "consecutive" "Olympic"
[20109] "medal" "team"
[20111] "already" "created"
[20113] "history" "surpassed"
[20115] "expectations" "entering"
[20117] "semifinals" "Games"
[20119] "first" "time"
[20121] "maiden" "Olympic"
[20123] "medal" "remained"
[20125] "bounds" "world"
[20127] "4" "Great"
[20129] "Britain" "gold-winners"
[20131] "2016" "Rio"
[20133] "Games" "came"
[20135] "top" "pulsating"
[20137] "encounter" "heartbreak"
[20139] "came" "day"
[20141] "Indian" "men's"
[20143] "team" "ended"
[20145] "41-year-old" "medal"
[20147] "drought" "clinching"
[20149] "bronze" "5-4"
[20151] "win" "Germany"
[20153] "Classification" "Language"
[20155] "ENGLISH" "Publication-Type"
[20157] "Newspaper" "Body"
[20159] "India" "Aug"
[20161] "2" "India"
[20163] "stunned" "Australia"
[20165] "1-0" "reach"
[20167] "semifinals" "women's"
[20169] "hockey" "Tokyo"
[20171] "Olympics" "Oi"
[20173] "Hockey" "Stadium"
[20175] "North" "Pitch"
[20177] "Monday" "India"
[20179] "women's" "hockey"
[20181] "team's" "first"
[20183] "semifinal" "appearance"
[20185] "Olympics" "finished"
[20187] "fourth" "1980"
[20189] "Moscow" "Olympics"
[20191] "format" "different"
[20193] "knockout" "games"
[20195] "India" "face"
[20197] "Argentina" "semifinals"
[20199] "defeated" "Germany"
[20201] "3-0" "first"
[20203] "semifinal" "spot"
[20205] "semifinals" "also"
[20207] "means" "India"
[20209] "guaranteed" "medal"
[20211] "match" "first-time"
[20213] "Olympics" "India"
[20215] "qualified" "knockout"
[20217] "stages" "finishing"
[20219] "fourth" "Pool"
[20221] "started" "positive"
[20223] "note" "Pool"
[20225] "B" "toppers"
[20227] "Australia" "kept"
[20229] "pressure" "throughout"
[20231] "quarters" "India"
[20233] "clearly" "dominant"
[20235] "side" "59"
[20237] "ball" "possession"
[20239] "first" "quarter"
[20241] "big" "moment"
[20243] "came" "second"
[20245] "quarter" "dragflicker"
[20247] "Gurjit" "Kaur"
[20249] "converted" "India's"
[20251] "first" "penalty"
[20253] "corner" "22nd"
[20255] "minute" "put"
[20257] "side" "ahead"
[20259] "India's" "defence"
[20261] "also" "played"
[20263] "part" "let"
[20265] "Australia" "score"
[20267] "despite" "conceding"
[20269] "seven" "penalty"
[20271] "corners" "match"
[20273] "follow" "Published"
[20275] "HT" "Digital"
[20277] "Content" "Services"
[20279] "permission" "Hindustan"
[20281] "Times" "query"
[20283] "respect" "article"
[20285] "content" "requirement"
[20287] "please" "contact"
[20289] "Editor" "Classification"
[20291] "Language" "ENGLISH"
[20293] "Publication-Type" "Newswire"
[20295] "Body" "decade"
[20297] "ago" "Aditi"
[20299] "Ashok" "13"
[20301] "impressed" "city's"
[20303] "veteran" "golfers"
[20305] "temperament" "temperament"
[20307] "world" "got"
[20309] "view" "Aditi"
[20311] "competed" "world's"
[20313] "top" "golfers"
[20315] "three" "days"
[20317] "missing" "Olympic"
[20319] "medal" "whisker"
[20321] "Aditi" "mature"
[20323] "beyond" "years"
[20325] "even" "teenager"
[20327] "bad" "shot"
[20329] "takes" "ruffle"
[20331] "golfer" "nothing"
[20333] "appeared" "unsettle"
[20335] "went" "game"
[20337] "calm" "poise"
[20339] "past" "three"
[20341] "days" "fantastic"
[20343] "temperament" "display"
[20345] "Even" "lost"
[20347] "flinch" "went"
[20349] "formalities" "just"
[20351] "won" "said"
[20353] "former" "twotime"
[20355] "national" "champion"
[20357] "Vandana" "Agarwal"
[20359] "Ashok" "won"
[20361] "Eastern" "India"
[20363] "Tolly" "Ladies"
[20365] "Girls" "Amateur"
[20367] "Golf" "Championship"
[20369] "championship" "2011"
[20371] "2014" "overcame"
[20373] "bizarre" "day"
[20375] "saw" "score"
[20377] "many" "four"
[20379] "double-bogeys" "win"
[20381] "event" "Agarwal"
[20383] "won" "first"
[20385] "national" "title"
[20387] "1997" "year"
[20389] "Ashok" "born"
[20391] "Indrajit" "Bhalotia"
[20393] "India" "1"
[20395] "2000" "Ashok"
[20397] "two" "seen"
[20399] "development" "golfer"
[20401] "years" "said"
[20403] "unlike" "Indian"
[20405] "athletes" "may"
[20407] "lost" "nerve"
[20409] "choked" "finish"
[20411] "Ashok" "lost"
[20413] "simply" "missed"
[20415] "vital" "putt"
[20417] "72" "holes"
[20419] "Driving" "tee"
[20421] "Ashok's" "biggest"
[20423] "strength" "Olympics"
[20425] "drives" "even"
[20427] "weaker" "just"
[20429] "recovering" "Covid"
[20431] "therefore" "always"
[20433] "40" "yards"
[20435] "behind" "leaders"
[20437] "consistently" "excellent"
[20439] "putting" "ensured"
[20441] "second" "position"
[20443] "almost" "entire"
[20445] "duration" "tournament"
[20447] "missed" "putt"
[20449] "17th" "hole"
[20451] "edged" "top-three"
[20453] "spots" "said"
[20455] "Bhalotia" "Gaurav"
[20457] "Pundir" "golf"
[20459] "course" "superintendent"
[20461] "Tollygunge" "Club"
[20463] "said" "Ashok's"
[20465] "remarkable" "play"
[20467] "throughout" "tournament"
[20469] "inspire" "many"
[20471] "young" "golfers"
[20473] "aim" "high"
[20475] "may" "lost"
[20477] "medal" "won"
[20479] "many" "hearts"
[20481] "superb" "fact"
[20483] "done" "well"
[20485] "opening" "day"
[20487] "Rio" "Olympics"
[20489] "well" "recalled"
[20491] "Classification" "Language"
[20493] "ENGLISH" "Publication-Type"
[20495] "Newspaper" "Body"
[20497] "Aditi" "Ashok's"
[20499] "wry" "smile"
[20501] "tap-in" "complete"
[20503] "fourth" "round"
[20505] "Kasumigaseki" "Country"
[20507] "Club" "Japan's"
[20509] "Saitama" "said"
[20511] "smile" "hide"
[20513] "disappointment" "missing"
[20515] "Olympic" "medal"
[20517] "Overnight" "second"
[20519] "leaderboard" "Aditi"
[20521] "carded" "three-under"
[20523] "68" "total"
[20525] "15-under" "269"
[20527] "enough" "Mone"
[20529] "Inami" "Japan"
[20531] "Lydia" "Ko"
[20533] "New" "Zealand"
[20535] "shot" "six-under"
[20537] "last" "day"
[20539] "pip" "Aditi"
[20541] "post" "Inami"
[20543] "won" "silver"
[20545] "play-off" "Indian"
[20547] "football" "team"
[20549] "Melbourne" "1956"
[20551] "Milkha" "Singh"
[20553] "Rome" "1960"
[20555] "PT" "Usha"
[20557] "Los" "Angeles"
[20559] "1984" "Joydeep"
[20561] "Karmakar" "London"
[20563] "2012" "Dipa"
[20565] "Karmakar" "Rio"
[20567] "2016" "women's"
[20569] "hockey" "team"
[20571] "Friday" "Aditi"
[20573] "day" "later"
[20575] "gnawing" "pain"
[20577] "finishing" "fourth"
[20579] "biggest" "stage"
[20581] "just" "refuses"
[20583] "ebb" "Aditi"
[20585] "Bangalore" "girl"
[20587] "said" "finishing"
[20589] "fourth" "kind"
[20591] "sucks" "know"
[20593] "joined" "list"
[20595] "Indian" "athletes"
[20597] "missed" "Olympic"
[20599] "medal" "Obviously"
[20601] "want" "join"
[20603] "club" "yeah"
[20605] "guess" "joined"
[20607] "think" "gave"
[20609] "100" "per"
[20611] "cent" "yeah"
[20613] "fourth" "Olympics"
[20615] "give" "just"
[20617] "three" "medals"
[20619] "kind" "sucks"
[20621] "tournament" "really"
[20623] "happy" "hard"
[20625] "happy" "fourth"
[20627] "place" "Olympics"
[20629] "played" "well"
[20631] "gave" "100"
[20633] "per" "cent"
[20635] "Aditi" "fell"
[20637] "short" "stroke"
[20639] "quoted" "saying"
[20641] "International" "Golf"
[20643] "Federation" "Joydeep"
[20645] "Karmakar" "narrowly"
[20647] "missed" "podium"
[20649] "finish" "said"
[20651] "understands" "Aditi"
[20653] "going" "Obviously"
[20655] "sucks" "difference"
[20657] "Olympian" "Olympic"
[20659] "medal" "winner"
[20661] "feel" "Aditi"
[20663] "smiled" "tap-in"
[20665] "know" "going"
[20667] "mind" "Karmakar"
[20669] "told" "Telegraph"
[20671] "Saturday" "Nine"
[20673] "years" "ago"
[20675] "London" "Olympics"
[20677] "missed" "bronze"
[20679] "whisker" "50m"
[20681] "rifle" "prone"
[20683] "saw" "Vijay"
[20685] "Kumar" "podium"
[20687] "wearing" "silver"
[20689] "medal" "just"
[20691] "broke" "Just"
[20693] "control" "realisation"
[20695] "dawned" "upon"
[20697] "missed" "Karmakar"
[20699] "said" "devastating"
[20701] "feeling" "stark"
[20703] "dark" "see"
[20705] "financial" "benefits"
[20707] "Olympic" "medal"
[20709] "winner" "gets"
[20711] "country" "becomes"
[20713] "depressing" "Aditi"
[20715] "unlucky" "putts"
[20717] "missed" "cup"
[20719] "17th" "18th"
[20721] "holes" "birdie"
[20723] "one" "two"
[20725] "holes" "taken"
[20727] "play-off" "round"
[20729] "Japanese" "Kiwi"
[20731] "Maybe" "made"
[20733] "many" "four"
[20735] "rounds" "golfing"
[20737] "gods" "like"
[20739] "okay" "going"
[20741] "give" "one"
[20743] "23-year-old" "said"
[20745] "just" "tried"
[20747] "best" "even"
[20749] "last" "hole"
[20751] "although" "really"
[20753] "range" "almost"
[20755] "long" "putt"
[20757] "still" "tried"
[20759] "yeah" "think"
[20761] "gave" "best"
[20763] "shot" "Never"
[20765] "mind" "Aditi"
[20767] "Paris" "just"
[20769] "three" "years"
[20771] "away" "Classification"
[20773] "Language" "ENGLISH"
[20775] "Publication-Type" "Newspaper"
[20777] "Body" "said"
[20779] "Indian" "shooters"
[20781] "dominating" "Covid-19"
[20783] "pandemic" "struck"
[20785] "gap" "might"
[20787] "given" "others"
[20789] "chance" "catch"
[20791] "Anjali" "Bhagwat"
[20793] "may" "truly"
[20795] "called" "trail-blazer"
[20797] "Indian" "shooting"
[20799] "first" "make"
[20801] "Olympic" "final"
[20803] "10m" "air"
[20805] "rifle" "2000"
[20807] "Sydney" "Games"
[20809] "though" "never"
[20811] "won" "Olympic"
[20813] "medal" "went"
[20815] "win" "ISSF"
[20817] "World" "Cup"
[20819] "Final" "Commonwealth"
[20821] "Games" "champion"
[20823] "among" "achievements"
[20825] "also" "became"
[20827] "world" "1"
[20829] "shooting" "team"
[20831] "Tokyo" "Olympics"
[20833] "expected" "bring"
[20835] "medals" "Anjali"
[20837] "said" "confident"
[20839] "mixed" "team"
[20841] "events" "10m"
[20843] "air" "pistol"
[20845] "10m" "air"
[20847] "rifle" "go"
[20849] "India's" "way"
[20851] "far" "individual"
[20853] "events" "concerned"
[20855] "really" "feel"
[20857] "whoever" "can"
[20859] "keep" "cool"
[20861] "head" "day"
[20863] "win" "said"
[20865] "Anjali" "part"
[20867] "Sony" "Sports"
[20869] "Olympic" "special"
[20871] "show" "Sports"
[20873] "Extraaa" "virtual"
[20875] "interaction" "Thursday"
[20877] "Asked" "whether"
[20879] "teen" "sensations"
[20881] "Saurabh" "Chaudhary"
[20883] "Manu" "Bhaker"
[20885] "can" "win"
[20887] "individual" "medals"
[20889] "said" "talk"
[20891] "medals" "confident"
[20893] "good" "performance"
[20895] "first" "Olympic"
[20897] "Games" "great"
[20899] "international" "exposure"
[20901] "done" "extremely"
[20903] "well" "won"
[20905] "medals" "consistently"
[20907] "World" "Cups"
[20909] "Asian-level" "meets"
[20911] "Commonwealth" "Games"
[20913] "Youth" "Olympics"
[20915] "talented" "confident"
[20917] "Also" "guided"
[20919] "supported" "well"
[20921] "nothing" "lose"
[20923] "team" "handle"
[20925] "pressure" "Olympics"
[20927] "Pressure" "always"
[20929] "even" "domestic"
[20931] "meets" "Olympic"
[20933] "Games" "aura"
[20935] "different" "atmosphere"
[20937] "responsibility" "towards"
[20939] "nation" "expectations"
[20941] "bringing" "home"
[20943] "medal" "time"
[20945] "make" "Olympics"
[20947] "ready" "Anjali"
[20949] "added" "Indian"
[20951] "shooters" "dominating"
[20953] "Covid-19" "pandemic"
[20955] "struck" "gap"
[20957] "might" "given"
[20959] "others" "chance"
[20961] "catch" "2019"
[20963] "Indians" "winning"
[20965] "everything" "Olympics"
[20967] "taken" "place"
[20969] "2020" "surely"
[20971] "said" "get"
[20973] "four" "six"
[20975] "medals" "pandemic"
[20977] "striking" "rest"
[20979] "world" "got"
[20981] "time" "catch"
[20983] "us" "confident"
[20985] "chances" "mixed"
[20987] "team" "events"
[20989] "India" "pairings"
[20991] "Divyansh" "Singh"
[20993] "Panwar" "Elavenil"
[20995] "Valarivan" "10m"
[20997] "air" "pistol"
[20999] "Saurabh" "Chaudhary"
[21001] "Manu" "Bhaker"
[21003] "10m" "air"
[21005] "rifle" "strong"
[21007] "individual" "events"
[21009] "need" "luck"
[21011] "zone" "positive"
[21013] "thoughts" "feel"
[21015] "Rahi" "Sarnobat"
[21017] "25m" "pistol"
[21019] "good" "chance"
[21021] "shooter" "performs"
[21023] "best" "day"
[21025] "one" "can"
[21027] "rise" "occasion"
[21029] "shooter" "must"
[21031] "positive" "mind"
[21033] "set" "invested"
[21035] "four" "years"
[21037] "special" "day"
[21039] "must" "wake"
[21041] "confidence" "done"
[21043] "best" "prepare"
[21045] "need" "enjoy"
[21047] "performance" "best"
[21049] "good" "enough"
[21051] "medal" "bonus"
[21053] "added" "Look"
[21055] "happened" "Jitu"
[21057] "Rai" "2016"
[21059] "billed" "win"
[21061] "medal" "even"
[21063] "gold" "match"
[21065] "expectations" "depends"
[21067] "happens" "particular"
[21069] "day" "Asked"
[21071] "dangerous" "can"
[21073] "Chinese" "team"
[21075] "said" "keeping"
[21077] "team" "secret"
[21079] "taken" "part"
[21081] "major" "event"
[21083] "since" "pandemic"
[21085] "struck" "also"
[21087] "fantastic" "domestic"
[21089] "set" "idea"
[21091] "good" "right"
[21093] "now" "generally"
[21095] "strong" "Even"
[21097] "Iranians" "can"
[21099] "challenge" "Looking"
[21101] "back" "performance"
[21103] "Sydney" "said"
[21105] "wild" "card"
[21107] "entry" "prepared"
[21109] "enough" "made"
[21111] "final" "idea"
[21113] "handle" "team"
[21115] "members" "now"
[21117] "just" "talented"
[21119] "also" "well"
[21121] "prepared" "trained"
[21123] "taken" "care"
[21125] "well" "made"
[21127] "winning" "habit"
[21129] "hardly" "anyone"
[21131] "look" "now"
[21133] "India" "medals"
[21135] "three" "colours"
[21137] "kitty" "barrier"
[21139] "broken" "new"
[21141] "generation" "started"
[21143] "positive" "note"
[21145] "can" "win"
[21147] "Olympic" "medal"
[21149] "Olympics" "shown"
[21151] "live" "Sony"
[21153] "Six" "Sony"
[21155] "Ten2" "Sony"
[21157] "Ten3" "Classification"
[21159] "Language" "ENGLISH"
[21161] "Publication-Type" "Newspaper"
[21163] "Body" "Tokyo"
[21165] "Olympics" "much"
[21167] "money" "medal-winning"
[21169] "athletes" "earn"
[21171] "Know" "cash"
[21173] "prizes" "announced"
[21175] "different" "countries"
[21177] "Chanu" "Saikhom"
[21179] "Mirabai" "India's"
[21181] "sole" "medal"
[21183] "winner" "Tokyo"
[21185] "Olympics" "2020"
[21187] "till" "now"
[21189] "conferred" "silver"
[21191] "medal" "memorable"
[21193] "podium" "tribute"
[21195] "achievement" "medal"
[21197] "accompany" "official"
[21199] "cash" "prize"
[21201] "International" "Olympic"
[21203] "Committee" "custom"
[21205] "nations" "send"
[21207] "athletes" "Olympics"
[21209] "Chanu's" "effort"
[21211] "rewarded" "cash"
[21213] "prize" "home"
[21215] "country" "Union"
[21217] "Minister" "Railways"
[21219] "Ashwini" "Viashnaw"
[21221] "announced" "Rs"
[21223] "2" "crore"
[21225] "reward" "Chanu"
[21227] "Manipur" "Chief"
[21229] "Minister" "M"
[21231] "Biren" "Singh"
[21233] "announced" "Rs"
[21235] "1" "crore"
[21237] "reward" "Indian"
[21239] "Olympics" "Association"
[21241] "added" "Rs"
[21243] "10" "lakh"
[21245] "reward" "Olympian's"
[21247] "winnings" "converted"
[21249] "USD" "Chanu's"
[21251] "combined" "cash"
[21253] "reward" "excess"
[21255] "US" "$"
[21257] "400,000" "Indian"
[21259] "Olympic" "medalist's"
[21261] "earnings" "compare"
[21263] "winners" "countries"
[21265] "Tokyo" "Olympics"
[21267] "2020" "Cash"
[21269] "rewards" "Olympic"
[21271] "medalists" "different"
[21273] "countries" "Cash"
[21275] "rewards" "allocated"
[21277] "gold" "silver"
[21279] "bronze" "medals"
[21281] "Olympics" "varied"
[21283] "across" "countries"
[21285] "list" "cash"
[21287] "rewards" "Olympic"
[21289] "medalists" "12"
[21291] "countries" "compiled"
[21293] "CNBC" "Money"
[21295] "30" "shows"
[21297] "American" "athletes"
[21299] "conferred" "much"
[21301] "less" "cash"
[21303] "rewards" "compared"
[21305] "Indian" "winners"
[21307] "U.S" "Olympic"
[21309] "Paralympic" "Committee"
[21311] "set" "cash"
[21313] "prize" "$"
[21315] "37,500" "$"
[21317] "22,500" "$"
[21319] "15,000" "winning"
[21321] "gold" "silver"
[21323] "bronze" "respectively"
[21325] "hand" "one"
[21327] "highest" "rewarding"
[21329] "countries" "Singapore"
[21331] "pay" "medalists"
[21333] "around" "$"
[21335] "737,000" "gold"
[21337] "$" "369,000"
[21339] "silver" "$"
[21341] "184,000" "bronze"
[21343] "Another" "high"
[21345] "cash" "prize"
[21347] "paying" "country"
[21349] "Kazakhstan" "rewards"
[21351] "$" "250,000"
[21353] "G" "$"
[21355] "150,000" "S"
[21357] "75,000" "B"
[21359] "countries" "rewarding"
[21361] "excess" "$"
[21363] "200,000" "winners"
[21365] "Malaysia" "Italy"
[21367] "Philippines" "Countries"
[21369] "perform" "well"
[21371] "higher" "placed"
[21373] "Olympics" "tally"
[21375] "Japan" "South"
[21377] "Africa" "Brazil"
[21379] "pay" "lesser"
[21381] "range" "$"
[21383] "50,000" "rewards"
[21385] "amounting" "closer"
[21387] "USA" "Canada"
[21389] "Australia" "pay"
[21391] "just" "$"
[21393] "16,000" "$"
[21395] "15,000" "gold"
[21397] "medalists" "respectively"
[21399] "Rewards" "announced"
[21401] "India" "Indian"
[21403] "Olympic" "Association"
[21405] "set" "cash"
[21407] "prizes" "Rs"
[21409] "75" "lakh"
[21411] "gold" "medalists"
[21413] "Rs" "40"
[21415] "lakh" "Rs"
[21417] "25" "lakh"
[21419] "silver" "bronze"
[21421] "respectively" "However"
[21423] "prize" "escalated"
[21425] "steep" "cash"
[21427] "rewards" "offered"
[21429] "several" "states"
[21431] "spur" "athletes"
[21433] "medals" "Tokyo"
[21435] "Olympics" "Highest"
[21437] "rewards" "announced"
[21439] "Uttar" "Pradesh"
[21441] "Haryana" "Odisha"
[21443] "Rs" "6"
[21445] "crore" "gold"
[21447] "winners" "Rs"
[21449] "4" "crore"
[21451] "silver" "Rs"
[21453] "2" "crore"
[21455] "Rs" "1.5"
[21457] "crore" "Rs"
[21459] "2.5" "crore"
[21461] "respectively" "bronze"
[21463] "states" "announced"
[21465] "cash" "rewards"
[21467] "gold" "medal"
[21469] "earn" "athletes"
[21471] "Rs" "1-3"
[21473] "crore" "lowest"
[21475] "cash" "prize"
[21477] "announced" "reportedly"
[21479] "West" "Bengal"
[21481] "Rs" "25"
[21483] "lakh" "G"
[21485] "Rs" "15"
[21487] "lakh" "S"
[21489] "Rs" "10"
[21491] "lakh" "B"
[21493] "Apart" "cash"
[21495] "rewards" "winning"
[21497] "medals" "Olympians"
[21499] "also" "bag"
[21501] "sponsorship" "endorsement"
[21503] "deals" "back"
[21505] "success" "games"
[21507] "deals" "still"
[21509] "rare" "medalists"
[21511] "Olympic" "sports"
[21513] "Classification" "Language"
[21515] "ENGLISH" "Publication-Type"
[21517] "Newspaper" "Body"
[21519] "terms" "medals"
[21521] "2012" "London"
[21523] "Olympics" "India's"
[21525] "best" "show"
[21527] "Olympics" "far"
[21529] "6" "medals"
[21531] "2" "silver"
[21533] "4" "bronze"
[21535] "total" "83"
[21537] "athletes" "60"
[21539] "men" "23"
[21541] "women" "competed"
[21543] "across" "13"
[21545] "sports" "edition"
[21547] "Neeraj" "Chopra"
[21549] "Bajrang" "Punia"
[21551] "still" "contention"
[21553] "India" "far"
[21555] "5" "medals"
[21557] "name" "chance"
[21559] "better" "best"
[21561] "Olympics" "far"
[21563] "7" "medals"
[21565] "However" "many"
[21567] "close" "shaves"
[21569] "Indian" "athletes"
[21571] "missed" "whisker"
[21573] "tally" "India's"
[21575] "medal" "list"
[21577] "much" "impressive"
[21579] "five" "instances"
[21581] "edition" "Olympics"
[21583] "India" "missed"
[21585] "possible" "medal"
[21587] "Kamalpreet" "Kaur"
[21589] "Kamalpreet" "Kaur"
[21591] "finished" "commendable"
[21593] "sixth" "women's"
[21595] "discus" "throw"
[21597] "final" "best"
[21599] "attempt" "63.70m"
[21601] "However" "qualification"
[21603] "Kamalpreet" "Kaur"
[21605] "produced" "one"
[21607] "strongest" "performances"
[21609] "Indian" "finishing"
[21611] "second" "Inexperience"
[21613] "playing" "Olympics"
[21615] "pressure" "situation"
[21617] "likely" "came"
[21619] "undoing" "Saurabh"
[21621] "Chaudhary" "Nineteen-year-old"
[21623] "Saurabh" "Chaudhary"
[21625] "India" "topped"
[21627] "10m" "air"
[21629] "pistol" "shooting"
[21631] "qualifier" "2020"
[21633] "Tokyo" "Olympics"
[21635] "scored" "586"
[21637] "600" "raise"
[21639] "hope" "gold"
[21641] "medal" "However"
[21643] "main" "round"
[21645] "Saurabh" "Chaudhary"
[21647] "finished" "seventh"
[21649] "men's" "10m"
[21651] "air" "pistol"
[21653] "final" "Tokyo"
[21655] "Olympics" "disappointing"
[21657] "one" "pinned"
[21659] "hopes" "sharp"
[21661] "shooter" "Deepak"
[21663] "Punia" "Wrestling"
[21665] "Deepak" "Punia"
[21667] "stormed" "semi-finals"
[21669] "two" "wins"
[21671] "just" "two"
[21673] "wins" "away"
[21675] "clinching" "gold"
[21677] "medal" "However"
[21679] "semis" "Olympic"
[21681] "debutant" "just"
[21683] "22" "ran"
[21685] "eventual" "gold"
[21687] "medal" "winner"
[21689] "David" "Taylor"
[21691] "USA" "Deepak"
[21693] "lost" "bout"
[21695] "technical" "superiority"
[21697] "still" "shot"
[21699] "bronze" "medal"
[21701] "led" "bout"
[21703] "San" "Marino's"
[21705] "Myles" "Amine"
[21707] "lost" "lead"
[21709] "final" "ten"
[21711] "seconds" "giving"
[21713] "away" "takedown"
[21715] "lose" "bronze"
[21717] "medal" "match"
[21719] "barely" "time"
[21721] "left" "Women's"
[21723] "hockey" "team"
[21725] "women's" "hockey"
[21727] "team's" "story"
[21729] "straight" "Bollywood"
[21731] "flick" "Captained"
[21733] "Rani" "Rampal"
[21735] "India" "delivered"
[21737] "best-ever" "performance"
[21739] "Olympic" "Games"
[21741] "making" "first-ever"
[21743] "semi-finals" "India"
[21745] "ranked" "ninth"
[21747] "coming" "tournament"
[21749] "punched" "weight"
[21751] "reach" "semi-finals"
[21753] "stunned" "higher-ranked"
[21755] "Australia" "quarter-finals"
[21757] "suffered" "close"
[21759] "2-1" "defeat"
[21761] "Argentina" "semi-final"
[21763] "Still" "contention"
[21765] "bronze" "India"
[21767] "endure" "another"
[21769] "narrow" "loss"
[21771] "Great" "Britain"
[21773] "time" "5-4"
[21775] "inspirational" "campaign"
[21777] "Sjoerd" "Marijne"
[21779] "coached" "team"
[21781] "repeatedly" "punched"
[21783] "collective" "weight"
[21785] "Aditi" "Ashok"
[21787] "Golf" "Indian"
[21789] "golfer" "Aditi"
[21791] "Ashok" "ranked"
[21793] "200th" "world"
[21795] "went" "Tokyo"
[21797] "Olympics" "without"
[21799] "expectations" "However"
[21801] "Aditi's" "turned"
[21803] "surprise" "package"
[21805] "came" "agonisingly"
[21807] "close" "clinching"
[21809] "historic" "Olympic"
[21811] "medal" "Tokyo"
[21813] "2020" "women's"
[21815] "individual" "strokeplay"
[21817] "Aditi" "finished"
[21819] "15" "hit"
[21821] "birdie" "72nd"
[21823] "hole" "force"
[21825] "bronze" "medal"
[21827] "playoff" "Lydia"
[21829] "Ko" "However"
[21831] "failed" "rain"
[21833] "interrupted" "momentum"
[21835] "Classification" "Language"
[21837] "ENGLISH" "Publication-Type"
[21839] "Newspaper" "Body"
[21841] "Difficult" "draining"
[21843] "Even" "Tokyo"
[21845] "Olympics" "began"
[21847] "lots" "speculations"
[21849] "athletes" "fare"
[21851] "inside" "Games"
[21853] "Village" "time"
[21855] "restrictions" "rules"
[21857] "place" "per"
[21859] "COVID" "protocols"
[21861] "Apart" "giving"
[21863] "athletes" "chance"
[21865] "achieve" "pinnacle"
[21867] "sporting" "achievement"
[21869] "Olympics" "also"
[21871] "known" "social"
[21873] "melting" "pot"
[21875] "Sportspersons" "around"
[21877] "world" "stay"
[21879] "Olympics" "Village"
[21881] "socialising" "intermingling"
[21883] "past" "many"
[21885] "attributed" "fun"
[21887] "atmosphere" "Games"
[21889] "Villages" "alleviating"
[21891] "stress" "around"
[21893] "competitions" "fears"
[21895] "social" "distancing"
[21897] "no-contact" "rules"
[21899] "just" "suck"
[21901] "fun" "Games"
[21903] "put" "many"
[21905] "athletes" "mental"
[21907] "health" "risk"
[21909] "Athletes" "Netherlands"
[21911] "quarantined" "hotel"
[21913] "testing" "positive"
[21915] "COVID-19" "went"
[21917] "strike" "protesting"
[21919] "stay" "called"
[21921] "Olympic" "jail"
[21923] "need" "outside"
[21925] "air" "anything"
[21927] "nothing" "opens"
[21929] "windows" "closed"
[21931] "doors" "open"
[21933] "ever" "okay"
[21935] "outside" "air"
[21937] "inhuman" "mentally"
[21939] "super-draining" "said"
[21941] "Dutch" "street"
[21943] "skateboarder" "Candy"
[21945] "Jacobs" "Backing"
[21947] "athletes" "Dutch"
[21949] "Olympics" "federation"
[21951] "called" "quarantine"
[21953] "conditions" "unacceptable"
[21955] "said" "raise"
[21957] "issue" "IOC"
[21959] "particularly" "tougher"
[21961] "athletes" "play"
[21963] "team" "sports"
[21965] "used" "staying"
[21967] "together" "group"
[21969] "Village" "even"
[21971] "teammates" "staying"
[21973] "separate" "rooms"
[21975] "minimal" "contact"
[21977] "outside" "playing"
[21979] "arenas" "difficult"
[21981] "play" "field"
[21983] "hockey" "team"
[21985] "together" "friends"
[21987] "now" "alone"
[21989] "hotel" "best"
[21991] "team" "position"
[21993] "Argentine" "hockey"
[21995] "player" "Emiliano"
[21997] "Bosso" "said"
[21999] "teams" "tried"
[22001] "avoid" "strict"
[22003] "rules" "putting"
[22005] "athletes" "hotels"
[22007] "close" "Games"
[22009] "Village" "many"
[22011] "away" "action"
[22013] "felt" "isolating"
[22015] "US" "women's"
[22017] "gymnastics" "team"
[22019] "staying" "hotel"
[22021] "instead" "Games"
[22023] "Village" "Simon"
[22025] "Biles" "addressed"
[22027] "affected" "ability"
[22029] "replenish" "amidst"
[22031] "multiple" "competitions"
[22033] "Usually" "hang"
[22035] "village" "stuff"
[22037] "said" "adding"
[22039] "suck" "feel"
[22041] "weight" "world"
[22043] "outlets" "amount"
[22045] "training" "saying"
[22047] "great" "set"
[22049] "chose" "COVID"
[22051] "safe" "protocols"
[22053] "COVID" "protocols"
[22055] "place" "meant"
[22057] "athletes" "travel"
[22059] "Tokyo" "family"
[22061] "members" "time"
[22063] "around" "Add"
[22065] "fact" "spectators"
[22067] "stands" "means"
[22069] "athletes" "nobody"
[22071] "cheering" "Swimming"
[22073] "legend" "Michael"
[22075] "Phelps" "said"
[22077] "causing" "anxiety"
[22079] "stress" "among"
[22081] "athletes" "Phelps"
[22083] "said" "Olympic"
[22085] "athletes" "need"
[22087] "someone" "can"
[22089] "trust" "Games"
[22091] "Even" "IOC"
[22093] "allowed" "mothers"
[22095] "bring" "along"
[22097] "babies" "athletes"
[22099] "complained" "rules"
[22101] "place" "makes"
[22103] "pointless" "impossible"
[22105] "Spanish" "synchronised"
[22107] "swimmer" "Ona"
[22109] "Carbonell" "said"
[22111] "leave" "11-month-old"
[22113] "son" "back"
[22115] "Spain" "said"
[22117] "per" "rules"
[22119] "nursing" "mothers"
[22121] "leave" "bubble"
[22123] "breastfeed" "children"
[22125] "move" "felt"
[22127] "increased" "risk"
[22129] "infection" "put"
[22131] "teammates" "risk"
[22133] "Classification" "Language"
[22135] "ENGLISH" "Publication-Type"
[22137] "Newspaper" "Body"
[22139] "India's" "golden"
[22141] "boy" "Neeraj"
[22143] "Chopra" "dedicated"
[22145] "Gold" "medal"
[22147] "win" "Tokyo"
[22149] "Olympics" "late"
[22151] "legendary" "sprinter"
[22153] "Milkha" "Singh"
[22155] "Neeraj" "Chopra"
[22157] "became" "first"
[22159] "Indian" "athlete"
[22161] "win" "medal"
[22163] "let" "alone"
[22165] "gold" "Track"
[22167] "Field" "country"
[22169] "Olympic" "Games"
[22171] "Neeraj" "throw"
[22173] "87.58" "metres"
[22175] "men's" "javelin"
[22177] "throw" "final"
[22179] "won" "gold"
[22181] "medal" "first"
[22183] "India" "Tokyo"
[22185] "Olympics" "win"
[22187] "23-year" "old"
[22189] "dedicated" "medal"
[22191] "country's" "legendary"
[22193] "sprinter" "Milkha"
[22195] "Singh" "died"
[22197] "June" "18"
[22199] "year" "due"
[22201] "COVID-19" "hoping"
[22203] "watching" "wherever"
[22205] "Neeraj" "Chopra"
[22207] "win" "also"
[22209] "became" "second"
[22211] "Indian" "win"
[22213] "individual" "Gold"
[22215] "medal" "India"
[22217] "Abhinav" "Bindra"
[22219] "Talking" "media"
[22221] "win" "Neeraj"
[22223] "said" "dedicate"
[22225] "medal" "Milkha"
[22227] "Singh" "hope"
[22229] "watching" "upon"
[22231] "wherever" "Chopra"
[22233] "finally" "fulfilled"
[22235] "India's" "long"
[22237] "dream" "winning"
[22239] "medal" "athletics"
[22241] "likes" "Milkha"
[22243] "Singh" "finished"
[22245] "fourth" "1960"
[22247] "Rome" "Olympics"
[22249] "PT" "Usha"
[22251] "Anju" "Bobby"
[22253] "Geroge" "nearly"
[22255] "missed" "one"
[22257] "Neeraj" "unbelievable"
[22259] "feeling" "winning"
[22261] "medal" "gold"
[22263] "athletics" "just"
[22265] "first" "appearance"
[22267] "Games" "feels"
[22269] "unbelievable" "first"
[22271] "time" "India"
[22273] "won" "gold"
[22275] "athletics" "feel"
[22277] "good" "just"
[22279] "one" "gold"
[22281] "sports" "first"
[22283] "Olympic" "medal"
[22285] "long" "time"
[22287] "athletics" "first"
[22289] "time" "gold"
[22291] "proud" "moment"
[22293] "country" "said"
[22295] "Neeraj" "later"
[22297] "congratulated" "PM"
[22299] "Narendra" "Modi"
[22301] "cricketers" "actors"
[22303] "celebrities" "fans"
[22305] "journalists" "alike"
[22307] "medal" "meant"
[22309] "India" "also"
[22311] "achieved" "best-ever"
[22313] "medal" "tally"
[22315] "history" "Olympic"
[22317] "Games" "seven"
[22319] "Classification" "Language"
[22321] "ENGLISH" "Publication-Type"
[22323] "Newspaper" "Body"
[22325] "India" "Aug"
[22327] "7" "Neeraj"
[22329] "Chopra" "Saturday"
[22331] "scripted" "history"
[22333] "winning" "India's"
[22335] "first-ever" "gold"
[22337] "medal" "athletics"
[22339] "Tokyo" "Olympics"
[22341] "anyone" "knows"
[22343] "feels" "like"
[22345] "win" "individual"
[22347] "gold" "medal"
[22349] "India" "none"
[22351] "2008" "Olympic"
[22353] "champion" "Abhinav"
[22355] "Bindra" "Fittingly"
[22357] "enough" "special"
[22359] "message" "India's"
[22361] "second" "individual"
[22363] "gold" "medallist"
[22365] "thread" "Twitter"
[22367] "Bindra" "congratulated"
[22369] "Chopra" "won"
[22371] "top" "prize"
[22373] "throw" "87.58m"
[22375] "men's" "javelin"
[22377] "throw" "event"
[22379] "third" "tweet"
[22381] "video" "Bindra"
[22383] "said" "Full"
[22385] "Tokyo" "2020"
[22387] "Coverage" ">"
[22389] "Dearest" "Neeraj"
[22391] "know" "much"
[22393] "effort" "belief"
[22395] "gone" "quest"
[22397] "best" "win"
[22399] "gold" "medal"
[22401] "first" "Olympics"
[22403] "emotional" "moment"
[22405] "every" "Indian"
[22407] "world" "playground"
[22409] "achievement" "symbol"
[22411] "experience" "always"
[22413] "treasure" "sincerest"
[22415] "congratulations" "respect"
[22417] "another" "tweet"
[22419] "Bindra" "uploaded"
[22421] "signed" "letter"
[22423] "Tokyo" "2020"
[22425] "men's" "javelin"
[22427] "champion" "TOKYO"
[22429] "2020" "OLYMPICS"
[22431] "DAY" "15"
[22433] "BLOG" "Neeraj"
[22435] "first" "Indian"
[22437] "120" "years"
[22439] "first" "athlete"
[22441] "independent" "India"
[22443] "win" "Olympic"
[22445] "medal" "track-and-field"
[22447] "discipline" "Neeraj"
[22449] "won" "gold"
[22451] "medal" "men's"
[22453] "javelin" "throw"
[22455] "event" "throw"
[22457] "87.58m" "second"
[22459] "attempt" "medal"
[22461] "India" "won"
[22463] "track-and-field" "events"
[22465] "back" "1900"
[22467] "British-Indian" "Norman"
[22469] "Pritchard" "won"
[22471] "two" "silver"
[22473] "medals" "Paris"
[22475] "International" "Olympic"
[22477] "Committee" "still"
[22479] "credits" "Norman"
[22481] "Pritchard's" "medals"
[22483] "India" "though"
[22485] "various" "research"
[22487] "including" "records"
[22489] "IAAF" "now"
[22491] "World" "Athletics"
[22493] "showed" "competed"
[22495] "Great" "Britain"
[22497] "Neeraj" "Chopra's"
[22499] "gold" "took"
[22501] "India's" "medal"
[22503] "count" "seven"
[22505] "Tokyo" "Olympics"
[22507] "best" "ever"
[22509] "bettering" "tally"
[22511] "six" "medals"
[22513] "London" "Olympics"
[22515] "2012" "Chopra"
[22517] "also" "became"
[22519] "sixth" "Indian"
[22521] "athlete" "win"
[22523] "individual" "medal"
[22525] "Tokyo" "2020"
[22527] "joining" "weightlifter"
[22529] "Mirabai" "Chanu"
[22531] "shuttler" "PV"
[22533] "Sindhu" "boxer"
[22535] "Lovlina" "Borgohain"
[22537] "wrestlers" "Ravi"
[22539] "Kumar" "Dahiya"
[22541] "Bajrang" "Punia"
[22543] "Published" "HT"
[22545] "Digital" "Content"
[22547] "Services" "permission"
[22549] "Hindustan" "Times"
[22551] "query" "respect"
[22553] "article" "content"
[22555] "requirement" "please"
[22557] "contact" "Editor"
[22559] "Classification" "Language"
[22561] "ENGLISH" "Publication-Type"
[22563] "Newswire" "Body"
[22565] "Readers" "write"
[22567] "Calcutta" "Chennai"
[22569] "Fall" "short"
[22571] "Sir" "heartening"
[22573] "P.V" "Sindhu"
[22575] "managed" "bag"
[22577] "bronze" "Tokyo"
[22579] "Olympics" "sad"
[22581] "see" "slip"
[22583] "semi-final" "seemed"
[22585] "bit" "sluggish"
[22587] "court" "win"
[22589] "quarter-finals" "look"
[22591] "like" "determination"
[22593] "fight" "go"
[22595] "gold" "Encouragingly"
[22597] "hat-trick" "goals"
[22599] "Vandana" "Kataria"
[22601] "enabled" "Indian"
[22603] "women's" "hockey"
[22605] "team" "qualify"
[22607] "quarter-finals" "Olympics"
[22609] "four" "decades"
[22611] "Now" "men's"
[22613] "hockey" "team"
[22615] "won" "quarter-final"
[22617] "Great" "Britain"
[22619] "fans" "hoping"
[22621] "women's" "team"
[22623] "play" "aggression"
[22625] "confidence" "taking"
[22627] "Australia" "upcoming"
[22629] "game" "wish"
[22631] "best" "Indians"
[22633] "desperate" "medals"
[22635] "N" "Mahadevan"
[22637] "Chennai" "Sir"
[22639] "Every" "four"
[22641] "years" "forecasts"
[22643] "made" "many"
[22645] "medals" "India"
[22647] "win" "Olympics"
[22649] "practice" "leads"
[22651] "widely" "polarized"
[22653] "opinions" "leading"
[22655] "data" "technology"
[22657] "company" "Gracenote"
[22659] "foretold" "India"
[22661] "finish" "Tokyo"
[22663] "Olympics" "19"
[22665] "medals" "four"
[22667] "gold" "hopes"
[22669] "seem" "little"
[22671] "chance" "fulfilled"
[22673] "faulty" "rifle"
[22675] "poor" "judging"
[22677] "loss" "focus"
[22679] "majority" "Indian"
[22681] "athletes" "able"
[22683] "gain" "toehold"
[22685] "far" "Olympics"
[22687] "concerned" "different"
[22689] "year" "Olympics"
[22691] "pointless" "blame"
[22693] "athletes" "India"
[22695] "encourage" "sports"
[22697] "take" "brave"
[22699] "insurmountable" "odds"
[22701] "One" "can"
[22703] "hardly" "play"
[22705] "well" "one"
[22707] "bears" "burden"
[22709] "perform" "just"
[22711] "live" "decent"
[22713] "life" "Players"
[22715] "must" "given"
[22717] "assurance" "irrespective"
[22719] "perform" "livelihood"
[22721] "options" "enable"
[22723] "take" "care"
[22725] "families" "important"
[22727] "sports" "must"
[22729] "made" "integral"
[22731] "education" "school"
[22733] "level" "physical"
[22735] "training" "classes"
[22737] "pass" "sport"
[22739] "education" "prepare"
[22741] "students" "next"
[22743] "nothing" "schools"
[22745] "one" "measly"
[22747] "PT" "period"
[22749] "week" "taken"
[22751] "lightly" "since"
[22753] "grades" "impact"
[22755] "student's" "promotion"
[22757] "end" "year"
[22759] "India" "wishes"
[22761] "win" "medals"
[22763] "sports" "must"
[22765] "taken" "seriously"
[22767] "early" "life"
[22769] "taught" "par"
[22771] "curriculum" "Riya"
[22773] "Ghosh" "Calcutta"
[22775] "fun" "games"
[22777] "Sir" "Cricket"
[22779] "may" "India's"
[22781] "popular" "sport"
[22783] "nothing" "matches"
[22785] "ability" "football"
[22787] "tug" "Bengali's"
[22789] "heartstrings" "huge"
[22791] "part" "emotionally"
[22793] "high-strung" "club"
[22795] "games" "Maidan"
[22797] "tents" "Salt"
[22799] "Lake" "stadium"
[22801] "snacks" "sweets"
[22803] "ferried" "around"
[22805] "supporters" "football"
[22807] "fans" "now"
[22809] "missing" "snacks"
[22811] "much" "games"
[22813] "thinking" "fate"
[22815] "vendors" "whose"
[22817] "livelihoods" "disrupted"
[22819] "drastically" "Fans"
[22821] "come" "together"
[22823] "help" "Kallol"
[22825] "Pramanik" "Calcutta"
[22827] "Classification" "Language"
[22829] "ENGLISH" "Publication-Type"
[22831] "Newspaper" "Body"
[22833] "PV" "Sindhu"
[22835] "defeated" "eighth"
[22837] "seed" "China's"
[22839] "Bingjiao" "bronze"
[22841] "medal" "match"
[22843] "straight" "sets"
[22845] "Tokyo" "Olympics"
[22847] "Indian" "shuttler"
[22849] "PV" "Sindhu"
[22851] "defeated" "eighth"
[22853] "seed" "China's"
[22855] "Bingjiao" "bronze"
[22857] "medal" "match"
[22859] "straight" "sets"
[22861] "Tokyo" "Olympics"
[22863] "win" "second"
[22865] "consecutive" "medal"
[22867] "Games" "following"
[22869] "Silver" "medal"
[22871] "win" "Rio"
[22873] "Olympics" "2016"
[22875] "Sindhu" "beat"
[22877] "Bingjiao" "21-13"
[22879] "21-15" "match"
[22881] "lasted" "52"
[22883] "minutes" "theMusashino"
[22885] "Forest" "Sport"
[22887] "Plaza" "BDM"
[22889] "Court" "1"
[22891] "became" "first"
[22893] "Indian" "woman"
[22895] "win" "two"
[22897] "medals" "Olympic"
[22899] "Games" "second"
[22901] "Indian" "athlete"
[22903] "Sushil" "Kumar"
[22905] "won" "bronze"
[22907] "medal" "Beijing"
[22909] "Olympic" "2008"
[22911] "silver" "medal"
[22913] "London" "Olympics"
[22915] "2012" "26-year"
[22917] "old" "dominant"
[22919] "start" "give"
[22921] "opponent" "chance"
[22923] "Bingjiao" "little"
[22925] "slow" "movement"
[22927] "Sindhu" "used"
[22929] "full" "effect"
[22931] "used" "height"
[22933] "fact" "Bingjiao"
[22935] "southpaw" "attacked"
[22937] "right" "side"
[22939] "court" "Sindhu"
[22941] "continued" "left"
[22943] "first" "set"
[22945] "overcame" "close"
[22947] "moments" "keep"
[22949] "relentless" "pursuit"
[22951] "finished" "game"
[22953] "21-15" "Earlier"
[22955] "Sindhu" "lost"
[22957] "semi-final" "second"
[22959] "seed" "World"
[22961] "1" "Tai"
[22963] "Tzu-Ying" "straight"
[22965] "sets" "gold"
[22967] "medal" "contention"
[22969] "ensured" "bronze"
[22971] "grasp" "throughout"
[22973] "game" "look"
[22975] "discomfort" "Classification"
[22977] "Language" "ENGLISH"
[22979] "Publication-Type" "Newspaper"
[22981] "Body" "India"
[22983] "Aug" "7"
[22985] "Neeraj" "Chopra"
[22987] "created" "history"
[22989] "Saturday" "won"
[22991] "gold" "medal"
[22993] "ongoing" "Tokyo"
[22995] "Olympics" "men's"
[22997] "javelin" "throw"
[22999] "event" "Several"
[23001] "Bollywood" "stars"
[23003] "Akshay" "Kumar"
[23005] "Taapsee" "Pannu"
[23007] "shared" "congratulatory"
[23009] "messages" "win"
[23011] "Neeraj" "Chopra"
[23013] "became" "first"
[23015] "athlete" "India"
[23017] "win" "track-and-field"
[23019] "medal" "Olympics"
[23021] "throw" "87.58"
[23023] "m" "second"
[23025] "round" "23-year-old"
[23027] "also" "second"
[23029] "Indian" "win"
[23031] "Olympic" "gold"
[23033] "medal" "individual"
[23035] "sport" "shooter"
[23037] "Abhinav" "Bindra"
[23039] "Ajay" "Devgn"
[23041] "wrote" "Twitter"
[23043] "Congratulations" "Neeraj"
[23045] "Chopra" "win"
[23047] "Tokyo" "Olympics"
[23049] "power" "made"
[23051] "parents" "India"
[23053] "proud" "tell"
[23055] "happy" "awesome"
[23057] "#NeerajChopra" "#TokyoOlympics"
[23059] "Emraan" "Hashmi"
[23061] "John" "Abraham"
[23063] "called" "Neeraj's"
[23065] "achievement" "historic"
[23067] "Akshay" "Kumar"
[23069] "wrote" "GOLD"
[23071] "Heartiest" "Congratulations"
[23073] "@Neeraj_chopra1" "creating"
[23075] "history" "responsible"
[23077] "billion" "tears"
[23079] "joy" "Well"
[23081] "done" "#NeerajChopra"
[23083] "#Tokyo2020" "Taapsee"
[23085] "Pannu" "tweeted"
[23087] "gold" "jumping"
[23089] "Joy" "young"
[23091] "man" "Neeraj"
[23093] "Chopra" "created"
[23095] "history" "Diana"
[23097] "Penty" "wrote"
[23099] "man" "GOLDen"
[23101] "arm" "Congratulations"
[23103] "@Neeraj_chopra1" "Superrrr"
[23105] "proud" "happy"
[23107] "Prime" "Minister"
[23109] "Narendra" "Modi"
[23111] "President" "Ram"
[23113] "Nath" "Kovind"
[23115] "also" "lauded"
[23117] "Neeraj" "Chopra"
[23119] "Unprecedented" "win"
[23121] "Neeraj" "Chopra"
[23123] "javelin" "gold"
[23125] "breaks" "barriers"
[23127] "creates" "history"
[23129] "bring" "home"
[23131] "first" "ever"
[23133] "track" "field"
[23135] "medal" "India"
[23137] "first" "Olympics"
[23139] "feat" "inspire"
[23141] "youth" "India"
[23143] "elated" "Heartiest"
[23145] "congratulations" "President"
[23147] "Kovind" "wrote"
[23149] "Twitter" "History"
[23151] "scripted" "Tokyo"
[23153] "@Neeraj_chopra1" "achieved"
[23155] "today" "remembered"
[23157] "forever" "young"
[23159] "Neeraj" "done"
[23161] "exceptionally" "well"
[23163] "played" "remarkable"
[23165] "passion" "showed"
[23167] "unparalleled" "grit"
[23169] "Congratulations" "winning"
[23171] "Gold" "#Tokyo2020"
[23173] "PM" "Modi"
[23175] "tweeted" "Published"
[23177] "HT" "Digital"
[23179] "Content" "Services"
[23181] "permission" "Hindustan"
[23183] "Times" "query"
[23185] "respect" "article"
[23187] "content" "requirement"
[23189] "please" "contact"
[23191] "Editor" "Classification"
[23193] "Language" "ENGLISH"
[23195] "Publication-Type" "Newswire"
[23197] "Body" "Belgium"
[23199] "overpowered" "India"
[23201] "skill" "power"
[23203] "Olympic" "Games"
[23205] "hockey" "semi-final"
[23207] "Tuesday" "However"
[23209] "India" "proud"
[23211] "performance" "5-2"
[23213] "scoreline" "may"
[23215] "look" "embarrassing"
[23217] "Manpreet" "Singh"
[23219] "Co" "match"
[23221] "throughout" "just"
[23223] "superior" "clinical"
[23225] "side" "Belgium"
[23227] "also" "homework"
[23229] "regarding" "PR"
[23231] "Sreejesh" "India"
[23233] "goalkeeper" "amongst"
[23235] "best" "business"
[23237] "comfortable" "dealing"
[23239] "groundballs" "Belgium"
[23241] "capitalised" "five"
[23243] "goals" "scored"
[23245] "three" "came"
[23247] "penalty" "corners"
[23249] "said" "last"
[23251] "column" "Alexander"
[23253] "Hendrickx" "19th"
[23255] "49th" "53rd"
[23257] "minutes" "became"
[23259] "decisive" "factor"
[23261] "netting" "hat-trick"
[23263] "goal" "tally"
[23265] "Tokyo" "Olympics"
[23267] "now" "reads"
[23269] "14" "player"
[23271] "scored" "men's"
[23273] "Olympic" "hockey"
[23275] "tournament" "since"
[23277] "Juan" "Amat"
[23279] "netted" "16"
[23281] "goals" "Spain"
[23283] "1980" "Olympics"
[23285] "ace" "drag-flicker"
[23287] "scored" "two"
[23289] "penalty" "corners"
[23291] "last" "penalty"
[23293] "stroke" "deserving"
[23295] "final" "two"
[23297] "top" "teams"
[23299] "Belgium" "final"
[23301] "second" "successive"
[23303] "time" "Australia"
[23305] "two" "best"
[23307] "teams" "eager"
[23309] "see" "clash"
[23311] "India" "play"
[23313] "Germany" "lost"
[23315] "1-3" "Australia"
[23317] "50-50" "chance"
[23319] "Yes" "think"
[23321] "Germany" "easy"
[23323] "prey" "Graham"
[23325] "Reid's" "men"
[23327] "compact" "defensively"
[23329] "Belgians" "play"
[23331] "open" "game"
[23333] "surprising" "put"
[23335] "Indian" "defence"
[23337] "pressure" "Fourteen"
[23339] "penalty" "corners"
[23341] "bore" "testimony"
[23343] "game" "plan"
[23345] "clear" "onset"
[23347] "Enter" "Indian"
[23349] "circle" "earn"
[23351] "penalty" "corners"
[23353] "Hendrickx" "Loick"
[23355] "Luypaert" "scored"
[23357] "first" "goal"
[23359] "penalty" "corner"
[23361] "ranks" "India"
[23363] "refused" "bow"
[23365] "without" "fight"
[23367] "one" "point"
[23369] "time" "India"
[23371] "leading" "2-1"
[23373] "thanks" "strikes"
[23375] "Harmanpreet" "Singh"
[23377] "Mandeep" "Singh"
[23379] "nice" "see"
[23381] "Mandeep's" "name"
[23383] "scoresheet" "needed"
[23385] "goal" "boost"
[23387] "confidence" "India"
[23389] "match" "three"
[23391] "quarters" "last"
[23393] "15" "minutes"
[23395] "conceded" "many"
[23397] "three" "goals"
[23399] "answer" "Belgian"
[23401] "onslaught" "women's"
[23403] "semi-final" "India"
[23405] "Argentina" "slated"
[23407] "Wednesday" "afternoon"
[23409] "India" "high"
[23411] "upset" "1-0"
[23413] "win" "Australia"
[23415] "Argentines" "pushovers"
[23417] "India" "play"
[23419] "way" "turned"
[23421] "Australians" "yielding"
[23423] "even" "inch"
[23425] "rivals" "lot"
[23427] "depend" "Savita"
[23429] "Punia" "classy"
[23431] "goalkeeper" "brilliant"
[23433] "day" "India's"
[23435] "best" "performance"
[23437] "Olympics" "came"
[23439] "way" "back"
[23441] "1980" "Moscow"
[23443] "Games" "finished"
[23445] "fourth" "six"
[23447] "teams" "edition"
[23449] "women's" "hockey"
[23451] "made" "debut"
[23453] "Olympics" "played"
[23455] "round-robin" "format"
[23457] "top" "two"
[23459] "teams" "qualified"
[23461] "final" "Wednesday"
[23463] "Rani" "Rampal"
[23465] "gang" "chance"
[23467] "better" "historic"
[23469] "moment" "former"
[23471] "India" "captain"
[23473] "Gurbux" "Singh"
[23475] "amember" "1964gold"
[23477] "medal-winninghockey" "team"
[23479] "Classification" "Language"
[23481] "ENGLISH" "Publication-Type"
[23483] "Newspaper" "Body"
[23485] "India" "Aug"
[23487] "5" "Indian"
[23489] "Men's" "Hockey"
[23491] "team" "created"
[23493] "history" "Thursday"
[23495] "winning" "Bronze"
[23497] "medal" "Olympics"
[23499] "Germany" "team"
[23501] "Women's" "team"
[23503] "far" "behind"
[23505] "set" "play"
[23507] "match" "Bronze"
[23509] "2016" "Rio"
[23511] "Olympics" "gold"
[23513] "medallists" "Great"
[23515] "Britain" "Men's"
[23517] "team" "brought"
[23519] "medal" "India"
[23521] "Hockey" "41"
[23523] "years" "entire"
[23525] "country" "celebrating"
[23527] "talk" "team"
[23529] "Gold" "2018"
[23531] "revolved" "around"
[23533] "journey" "India's"
[23535] "first" "national"
[23537] "hockey" "team"
[23539] "1948" "Summer"
[23541] "Olympics" "Soorma"
[23543] "2018" "glorious"
[23545] "moment" "VINEET"
[23547] "KUMAR" "SINGH"
[23549] "following" "Olympics"
[23551] "always" "special"
[23553] "connect" "sports"
[23555] "done" "three"
[23557] "films" "based"
[23559] "sports" "cricket"
[23561] "hockey" "boxing"
[23563] "something" "uplifts"
[23565] "needs" "discipline"
[23567] "consistency" "dedication"
[23569] "waiting" "match"
[23571] "happy" "win"
[23573] "used" "play"
[23575] "hockey" "childhood"
[23577] "Olympians" "used"
[23579] "play" "watch"
[23581] "play" "seniors"
[23583] "ecstatic" "win"
[23585] "want" "congratulate"
[23587] "entire" "country"
[23589] "Hamare" "players"
[23591] "ki" "jitni"
[23593] "tareef" "ki"
[23595] "jaaye" "kam"
[23597] "hai" "har"
[23599] "player" "ki"
[23601] "tareef" "karni"
[23603] "chahiye" "Hockey"
[23605] "national" "sport"
[23607] "past" "41"
[23609] "years" "get"
[23611] "medal" "big"
[23613] "moment" "REEMA"
[23615] "KAGTI" "Director"
[23617] "delighted" "lovely"
[23619] "watch" "boys"
[23621] "play" "think"
[23623] "whole" "team"
[23625] "came" "together"
[23627] "really" "well"
[23629] "great" "think"
[23631] "anything" "film"
[23633] "Gold" "laughs"
[23635] "indeed" "golden"
[23637] "moment" "Like"
[23639] "said" "delightful"
[23641] "glad" "way"
[23643] "reclaiming" "tradition"
[23645] "hockey" "certainly"
[23647] "hope" "start"
[23649] "old" "days"
[23651] "KUNAL" "KAPOOR"
[23653] "exciting" "course"
[23655] "nation" "waited"
[23657] "41" "years"
[23659] "historic" "moment"
[23661] "Gold" "chance"
[23663] "play" "character"
[23665] "lived" "golden"
[23667] "era" "Indian"
[23669] "hockey" "winning"
[23671] "back" "back"
[23673] "Gold" "medals"
[23675] "dominating" "team"
[23677] "world" "Seeing"
[23679] "spirit" "determination"
[23681] "team" "makes"
[23683] "believe" "direction"
[23685] "headed" "ANGAD"
[23687] "BEDI" "Well"
[23689] "done" "team"
[23691] "India" "proud"
[23693] "boys" "blue"
[23695] "special" "mention"
[23697] "great" "wall"
[23699] "Sreejesh" "even"
[23701] "amazing" "see"
[23703] "sport" "watched"
[23705] "ardently" "individual"
[23707] "team" "players"
[23709] "well" "Olympics"
[23711] "jump-start" "every"
[23713] "child" "dreams"
[23715] "well" "sport"
[23717] "Published" "HT"
[23719] "Digital" "Content"
[23721] "Services" "permission"
[23723] "Hindustan" "Times"
[23725] "query" "respect"
[23727] "article" "content"
[23729] "requirement" "please"
[23731] "contact" "Editor"
[23733] "Classification" "Language"
[23735] "ENGLISH" "Publication-Type"
[23737] "Newswire" "Body"
[23739] "India" "July"
[23741] "31" "PV"
[23743] "Sindhu" "received"
[23745] "support" "Taapsee"
[23747] "Pannu" "Neha"
[23749] "Dhupia" "lost"
[23751] "Badminton" "Women's"
[23753] "Singles" "Semifinal"
[23755] "Tai" "Tzu"
[23757] "Ying" "ongoing"
[23759] "Olympics" "Tokyo"
[23761] "Saturday" "evening"
[23763] "Taapsee" "took"
[23765] "Twitter" "expressed"
[23767] "heartbreak" "Sindhu's"
[23769] "loss" "tweet"
[23771] "Haseen" "Dillruba"
[23773] "star" "also"
[23775] "shared" "thoughts"
[23777] "Indian" "boxer"
[23779] "Pooja" "Rani"
[23781] "lost" "quarterfinals"
[23783] "Taapsee" "Pannu"
[23785] "wrote" "heartbreak"
[23787] "emojis" "Pooja"
[23789] "Rani" "Sindhu"
[23791] "going" "come"
[23793] "back" "stronger"
[23795] "Neha" "Dhupia"
[23797] "addressing" "PV"
[23799] "Sindhu" "tweeted"
[23801] "Well" "played"
[23803] "@Pvsindhu1" "still"
[23805] "stand" "chance"
[23807] "best" "@WeAreTeamIndia"
[23809] "#olympics" "#TeamIndia"
[23811] "#Tokyo2020" "Earlier"
[23813] "day" "actor"
[23815] "Varun" "Dhawan"
[23817] "seen" "cheering"
[23819] "Sindhu" "shared"
[23821] "picture" "match"
[23823] "streaming" "television"
[23825] "wrote" "go"
[23827] "@pvsindhu1" "adding"
[23829] "Indian" "flag"
[23831] "emoji" "Saturday"
[23833] "PV" "Sindhu"
[23835] "faced" "Tai"
[23837] "Tzu-Ying" "Chinese"
[23839] "Taipei" "Badminton"
[23841] "Women's" "Singles"
[23843] "Semi-final" "Tokyo"
[23845] "Olympics" "Sindhu"
[23847] "lost" "semifinals"
[23849] "18-21,12-21" "40"
[23851] "minutes" "Tai"
[23853] "Tzu-Ying" "Sindhu"
[23855] "now" "face"
[23857] "Bingjiao" "Bronze"
[23859] "Medal" "match"
[23861] "Sunday" "Pooja"
[23863] "Rani" "hand"
[23865] "lost" "quarterfinal"
[23867] "match" "China's"
[23869] "Li" "Qian"
[23871] "unanimous" "decision"
[23873] "women's" "middleweight"
[23875] "75" "kg"
[23877] "category" "Taapsee"
[23879] "also" "tweeted"
[23881] "Indian" "shuttlers"
[23883] "Chirag" "Shetty"
[23885] "Satwiksairaj" "Rankireddy"
[23887] "team" "defeated"
[23889] "Gold" "Medal"
[23891] "winners" "Tokyo"
[23893] "2020" "men's"
[23895] "doubles" "badminton"
[23897] "boys" "like"
[23899] "see" "glass"
[23901] "half" "full"
[23903] "bright" "future"
[23905] "@Shettychirag04" "@satwiksairaj"
[23907] "congratulations" "Chinese"
[23909] "Taipei" "pair"
[23911] "see" "u"
[23913] "next" "Olympics"
[23915] "India" "far"
[23917] "won" "one"
[23919] "medal" "far"
[23921] "Last" "week"
[23923] "Indian" "weightlifter"
[23925] "Mirabai" "Chanu"
[23927] "won" "silver"
[23929] "medal" "49"
[23931] "kg" "category"
[23933] "Published" "HT"
[23935] "Digital" "Content"
[23937] "Services" "permission"
[23939] "Hindustan" "Times"
[23941] "query" "respect"
[23943] "article" "content"
[23945] "requirement" "please"
[23947] "contact" "Editor"
[23949] "Classification" "Language"
[23951] "ENGLISH" "Publication-Type"
[23953] "Newswire" "Body"
[23955] "Celebrities" "shared"
[23957] "congratulatory" "messages"
[23959] "Bajrang" "Punia"
[23961] "heaped" "praise"
[23963] "comprehensive" "win"
[23965] "Celebrities" "India"
[23967] "took" "social"
[23969] "media" "celebrate"
[23971] "Bajrang" "Punia's"
[23973] "win" "Tokyo"
[23975] "Olympics" "Punia"
[23977] "competing" "men's"
[23979] "freestyle" "65kg"
[23981] "category" "defeated"
[23983] "Kazakhstan's" "Daulet"
[23985] "Niyazbekov" "8-0"
[23987] "bag" "bronze"
[23989] "medal" "Celebrities"
[23991] "shared" "congratulatory"
[23993] "messages" "sportsman"
[23995] "heaped" "praise"
[23997] "comprehensive" "win"
[23999] "Ali" "Fazal"
[24001] "tweeted" "Bajrang"
[24003] "MATCH" "#Tokyo2020"
[24005] "Congratulations" "@BajrangPunia"
[24007] "debut" "#Olympics"
[24009] "made" "us"
[24011] "proud" "#TeamIndia"
[24013] "#Wrestling" "#Cheer4India"
[24015] "#Tokyo2020" "#Olympics2020"
[24017] "Nivin" "Pauly"
[24019] "@NivinOfficial" "August"
[24021] "7" "2021"
[24023] "Nivin" "Pauly"
[24025] "wrote" "Twitter"
[24027] "Congratulations" "@BajrangPunia"
[24029] "debut" "#Olympics"
[24031] "made" "us"
[24033] "proud" "#TeamIndia"
[24035] "#Wrestling" "#Cheer4India"
[24037] "#Tokyo2020" "#Olympics2020"
[24039] "Rajeev" "Khandelwal"
[24041] "posted" "Twitter"
[24043] "win" "#BajrangPunia"
[24045] "display" "humility"
[24047] "end" "true"
[24049] "Indian" "spirit"
[24051] "Rahul" "Ravindran"
[24053] "shared" "Twitter"
[24055] "Yessssss" "Bajrangbali"
[24057] "ki" "jai"
[24059] "Bajrang" "Punia"
[24061] "Olympic" "Medalist"
[24063] "probably" "Christ"
[24065] "coach" "kissing"
[24067] "talisman" "Randeep"
[24069] "Hooda" "@RandeepHooda"
[24071] "August" "7"
[24073] "2021" "Randeep"
[24075] "Hooda" "tweeted"
[24077] "probably" "Christ"
[24079] "coach" "kissing"
[24081] "talisman" "Gold"
[24083] "Medal" "player"
[24085] "just" "one"
[24087] "bad" "bout"
[24089] "got" "#Bronze"
[24091] "#BajrangPunia" "@BajrangPunia"
[24093] "#Olympics" "#wrestling"
[24095] "Neha" "Dhupia"
[24097] "also" "hailed"
[24099] "Bajrang" "Punia's"
[24101] "victory" "Congratulations"
[24103] "#BajrangPunia" "glorious"
[24105] "next" "#NeerajChopra"
[24107] "#ftw" "wrote"
[24109] "Twitter" "Madhur"
[24111] "Bhandarkar" "posted"
[24113] "Twitter" "Heartiest"
[24115] "congratulations" "@BajrangPunia"
[24117] "winning" "Bronze"
[24119] "Sports" "medal"
[24121] "Men's" "freestyle"
[24123] "Wrestling" "65"
[24125] "kg" "category"
[24127] "Super" "proud"
[24129] "#JaiHind" "Classification"
[24131] "Language" "ENGLISH"
[24133] "Publication-Type" "Newspaper"
[24135] "Body" "Bajrang"
[24137] "Punia" "beat"
[24139] "Kazakhstan's" "Daulet"
[24141] "Niyazbekov" "bronze"
[24143] "medal" "match"
[24145] "India" "earned"
[24147] "sixth" "medal"
[24149] "Tokyo" "Olympics"
[24151] "Indian" "wrestler"
[24153] "Bajrang" "Punia"
[24155] "beatKazakhstan'sDaulet" "Niyazbekov"
[24157] "bronze" "medal"
[24159] "match" "men's"
[24161] "65kg" "freestyle"
[24163] "category" "one-sided"
[24165] "game" "overcame"
[24167] "opponent's" "strong"
[24169] "defence" "gain"
[24171] "two-pointers" "one"
[24173] "another" "give"
[24175] "India" "6th"
[24177] "medal" "Tokyo"
[24179] "Olympics" "Bajrang"
[24181] "gained" "early"
[24183] "lead" "one"
[24185] "point" "activity"
[24187] "clock" "one"
[24189] "point" "first"
[24191] "three" "minutes"
[24193] "took" "Niyazbekov"
[24195] "outside" "circle"
[24197] "However" "2-0"
[24199] "lead" "mean"
[24201] "anything" "just"
[24203] "one" "move"
[24205] "away" "Bajrang"
[24207] "however" "threatening"
[24209] "dominant" "second"
[24211] "round" "Overcoming"
[24213] "opponent's" "several"
[24215] "attempts" "defending"
[24217] "leg-hold" "Bajrang"
[24219] "leave" "chance"
[24221] "kept" "hbay"
[24223] "eventually" "won"
[24225] "match" "points"
[24227] "8-0" "Bajrang"
[24229] "lost" "semi-final"
[24231] "bout" "Azerbaijan's"
[24233] "Haji" "Aliyev"
[24235] "5-12" "go"
[24237] "medal" "match"
[24239] "bout" "win"
[24241] "bronze" "Bajrang's"
[24243] "win" "India"
[24245] "levelled" "London"
[24247] "2012" "medal"
[24249] "tally" "following"
[24251] "Mirabai" "Chanu's"
[24253] "silver" "weightlifting"
[24255] "Lovlina" "Borgohain's"
[24257] "bronze" "Boxing"
[24259] "PV" "Sindhu's"
[24261] "bronze" "Badminton"
[24263] "women's" "singles"
[24265] "Indian" "men's"
[24267] "hockey" "team's"
[24269] "bronze" "Ravi"
[24271] "Kumar" "Dahiya's"
[24273] "silver" "wrestling"
[24275] "Classification" "Language"
[24277] "ENGLISH" "Publication-Type"
[24279] "Newspaper" "Body"
[24281] "India's" "Neeraj"
[24283] "Chopra" "threw"
[24285] "javelin" "86.65"
[24287] "metres" "first"
[24289] "attempt" "qualifying"
[24291] "round" "advanced"
[24293] "final" "Tokyo"
[24295] "Olympics" "India's"
[24297] "final" "medal"
[24299] "hope" "gold"
[24301] "medal" "hope"
[24303] "Neeraj" "Chopra"
[24305] "taking" "part"
[24307] "men's" "javelin"
[24309] "throw" "final"
[24311] "ongoing" "Tokyo"
[24313] "Olympics" "Neeraj"
[24315] "qualified" "final"
[24317] "first" "attempt"
[24319] "threw" "javelin"
[24321] "86.65" "metres"
[24323] "Gold" "medal"
[24325] "contender" "Neerja's"
[24327] "biggest" "threat"
[24329] "Germany's" "Johannes"
[24331] "Vetter" "qualified"
[24333] "third" "attempt"
[24335] "throws" "85.64"
[24337] "metres" "Vetter"
[24339] "followed" "Pakistan's"
[24341] "Arshad" "Nadeem"
[24343] "85.16-metre" "throw"
[24345] "Finland's" "Lassi"
[24347] "Etelatalo" "threw"
[24349] "84.5" "metres"
[24351] "details" "final"
[24353] "Neeraj" "Chopra's"
[24355] "Javelin" "throw"
[24357] "final" "start"
[24359] "Neeraj" "Chopra's"
[24361] "Javelin" "throw"
[24363] "final" "begin"
[24365] "4.30" "PM"
[24367] "IST" "Saturday"
[24369] "August" "7"
[24371] "Neeraj" "Chopra's"
[24373] "Javelin" "throw"
[24375] "final" "played"
[24377] "Neeraj" "Chopra's"
[24379] "Javelin" "throw"
[24381] "final" "played"
[24383] "Olympics" "Stadium"
[24385] "Tokyo" "TV"
[24387] "channels" "broadcast"
[24389] "Neeraj" "Chopra's"
[24391] "Javelin" "throw"
[24393] "final" "Neeraj"
[24395] "Chopra's" "Javelin"
[24397] "throw" "finalwill"
[24399] "broadcast" "Sony"
[24401] "Sports" "Network"
[24403] "India" "watch"
[24405] "live" "streaming"
[24407] "Neeraj" "Chopra's"
[24409] "Javelin" "throw"
[24411] "final" "Fans"
[24413] "can" "catch"
[24415] "live" "streaming"
[24417] "Neeraj" "Chopra's"
[24419] "Javelin" "throw"
[24421] "finalon" "SonyLIV"
[24423] "website" "SonyLIV"
[24425] "app" "India"
[24427] "Classification" "Language"
[24429] "ENGLISH" "Publication-Type"
[24431] "Newspaper" "Body"
[24433] "India's" "players"
[24435] "showing" "strength"
[24437] "Tokyo" "Olympics"
[24439] "Prime" "Minister"
[24441] "Narendra" "Modi"
[24443] "planned" "special"
[24445] "surprise" "According"
[24447] "information" "August"
[24449] "15" "Prime"
[24451] "Minister" "Narendra"
[24453] "Modi" "invite"
[24455] "entire" "Indian"
[24457] "Olympic" "contingent"
[24459] "Red" "Fort"
[24461] "special" "guests"
[24463] "PM" "also"
[24465] "personally" "meet"
[24467] "Olympic" "team"
[24469] "may" "recalled"
[24471] "PM" "Modi"
[24473] "talked" "players"
[24475] "going" "Tokyo"
[24477] "Olympics" "encouraged"
[24479] "July" "13"
[24481] "Earlier" "Tuesday"
[24483] "Indian" "men's"
[24485] "hockey" "team"
[24487] "faced" "defeat"
[24489] "semi-finals" "Tokyo"
[24491] "Olympics" "world"
[24493] "champions" "Belgium"
[24495] "Prime" "Minister"
[24497] "Narendra" "Modi"
[24499] "took" "Twitter"
[24501] "encouraged" "team"
[24503] "stressing" "victory"
[24505] "defeat" "part"
[24507] "life" "India"
[24509] "takes" "pride"
[24511] "players" "Wins"
[24513] "losses" "part"
[24515] "life" "Men's"
[24517] "Hockey" "Team"
[24519] "#Tokyo2020" "gave"
[24521] "best" "counts"
[24523] "Wishing" "Team"
[24525] "best" "next"
[24527] "match" "future"
[24529] "endeavours" "India"
[24531] "proud" "players"
[24533] "PM" "tweeted"
[24535] "another" "tweet"
[24537] "PM" "said"
[24539] "rising" "spirit"
[24541] "self-confidence" "India"
[24543] "seeing" "glimpses"
[24545] "#Tokyo2020" "athletes"
[24547] "putting" "spirited"
[24549] "performances" "making"
[24551] "130" "crore"
[24553] "Indians" "proud"
[24555] "Classification" "Language"
[24557] "ENGLISH" "Publication-Type"
[24559] "Newspaper" "Body"
[24561] "India" "Aug"
[24563] "5" "India's"
[24565] "Ravi" "Kumar"
[24567] "Dahiya" "defeated"
[24569] "Kazakhistan's" "Nurislam"
[24571] "Sanayev" "57kg"
[24573] "semifinal" "Tokyo"
[24575] "Olympics" "match"
[24577] "Wednesday" "thrilling"
[24579] "fashion" "big"
[24581] "comeback" "win"
[24583] "Indian" "wrestler"
[24585] "trailing" "2-9"
[24587] "one" "point"
[24589] "went" "win"
[24591] "five" "points"
[24593] "trot" "close"
[24595] "gap" "Ravi"
[24597] "Kumar" "Dahiya"
[24599] "put" "Sanayev"
[24601] "lock" "hold"
[24603] "pinned" "Kazakh"
[24605] "wrestler" "mat"
[24607] "three-count" "thus"
[24609] "winning" "bout"
[24611] "Tokyo" "Olympics"
[24613] "Day" "13"
[24615] "LIVE" "reports"
[24617] "Ravi" "Kumar"
[24619] "Dahiya" "apparently"
[24621] "bitten" "Sanayev"
[24623] "bout" "complained"
[24625] "match" "Later"
[24627] "several" "videos"
[24629] "posted" "social"
[24631] "media" "looked"
[24633] "Dahiya" "attempting"
[24635] "pin" "Sanayev"
[24637] "Kazakh" "wrestler"
[24639] "fact" "dug"
[24641] "teeth" "opponent's"
[24643] "right" "arm"
[24645] "win" "Ravi"
[24647] "Kumar" "Dahiya"
[24649] "booked" "spot"
[24651] "gold" "medal"
[24653] "match" "face"
[24655] "ROC's" "Zavur"
[24657] "Uguev" "57kg"
[24659] "final" "Thursday"
[24661] "India's" "Deepak"
[24663] "Punia" "also"
[24665] "action" "bronze"
[24667] "medal" "bout"
[24669] "San" "Marino's"
[24671] "Myles" "Nazem"
[24673] "Amine" "Vinesh"
[24675] "Phogat" "loses"
[24677] "Vinesh" "Phogat"
[24679] "suffered" "massive"
[24681] "upset" "defeat"
[24683] "Olympic" "Games"
[24685] "pinned" "Belarus"
[24687] "Vanesa" "Kaladzinskaya"
[24689] "53kg" "quarterfinals"
[24691] "go" "gold"
[24693] "medal" "race"
[24695] "also" "face"
[24697] "risk" "getting"
[24699] "eliminated" "Thursday"
[24701] "Young" "Anshu"
[24703] "Malik" "bowed"
[24705] "57kg" "competition"
[24707] "losing" "repechage"
[24709] "round" "1-5"
[24711] "Russia's" "Valeria"
[24713] "Koblova" "Rio"
[24715] "Olympics" "silver"
[24717] "medallist" "Anshu"
[24719] "never" "looked"
[24721] "intimidated" "stronger"
[24723] "opponent" "leading"
[24725] "bout" "one"
[24727] "stage" "criteria"
[24729] "towards" "end"
[24731] "Russian" "pulled"
[24733] "two-pointer" "nose"
[24735] "ahead" "agency"
[24737] "inputs" "Published"
[24739] "HT" "Digital"
[24741] "Content" "Services"
[24743] "permission" "Hindustan"
[24745] "Times" "query"
[24747] "respect" "article"
[24749] "content" "requirement"
[24751] "please" "contact"
[24753] "Editor" "Classification"
[24755] "Language" "ENGLISH"
[24757] "Publication-Type" "Newswire"
[24759] "Body" "Neeraj"
[24761] "Chopra" "won"
[24763] "Gold" "medal"
[24765] "men's" "javelin"
[24767] "throw" "event"
[24769] "87.58" "metres"
[24771] "throw" "second"
[24773] "attempt" "happened"
[24775] "finally" "happened"
[24777] "India" "rued"
[24779] "years" "Olympic"
[24781] "medal" "Track"
[24783] "Field" "finally"
[24785] "happened" "India'sNeeraj"
[24787] "Chopra" "won"
[24789] "Gold" "medal"
[24791] "men's" "javelin"
[24793] "throw" "event"
[24795] "87.58-metre" "throw"
[24797] "second" "attempt"
[24799] "Neeraj" "second"
[24801] "position" "chronology"
[24803] "started" "event"
[24805] "stupendous" "throw"
[24807] "87.02" "metres"
[24809] "Olympics" "Stadium"
[24811] "final" "Saturday"
[24813] "two" "throws"
[24815] "Neeraj" "almost"
[24817] "confirmed" "medal"
[24819] "India" "bettered"
[24821] "86.6-metre" "throw"
[24823] "qualifying" "round"
[24825] "many" "believed"
[24827] "equals" "mark"
[24829] "final" "win"
[24831] "medal" "just"
[24833] "start" "However"
[24835] "felt" "like"
[24837] "Neeraj's" "day"
[24839] "anyone" "else"
[24841] "themedal" "favourite"
[24843] "Germany's" "Johannes"
[24845] "Vetter" "couple"
[24847] "throws" "sub-82"
[24849] "failed" "throw"
[24851] "remained" "9"
[24853] "failed" "qualify"
[24855] "top" "eight"
[24857] "Finland's" "Lassi"
[24859] "Etelatalo" "started"
[24861] "two" "throws"
[24863] "around" "79"
[24865] "metres" "qualified"
[24867] "next" "round"
[24869] "83.28-metre" "throw"
[24871] "go" "beyond"
[24873] "Pakistan's" "Arshad"
[24875] "Nadeem" "another"
[24877] "top-scorer" "qualifying"
[24879] "round" "decent"
[24881] "start" "82.40"
[24883] "even" "come"
[24885] "hand" "liked"
[24887] "bettered" "84.62"
[24889] "third" "throw"
[24891] "qualified" "top"
[24893] "8" "fifth"
[24895] "position" "go"
[24897] "beyond" "However"
[24899] "Czech" "Republic"
[24901] "duo" "ofJakub"
[24903] "Vadlejch" "Vtezslav"
[24905] "Vesel" "took"
[24907] "silver" "bronze"
[24909] "medals" "respectively.Vesel"
[24911] "qualified" "second"
[24913] "position" "Top"
[24915] "8" "throw"
[24917] "85.44" "better"
[24919] "however" "Vadlejch"
[24921] "superbthrow" "86.67"
[24923] "metres" "final"
[24925] "round" "confirm"
[24927] "second" "place"
[24929] "end" "Neeraj"
[24931] "Chopra" "just"
[24933] "second" "attempt"
[24935] "ensured" "Gold"
[24937] "medal" "India"
[24939] "first" "Track"
[24941] "field" "second"
[24943] "overall" "Abhinav"
[24945] "Bindra's" "medal"
[24947] "2008" "Beijing"
[24949] "Olympics" "shooting"
[24951] "virtue" "win"
[24953] "also" "India's"
[24955] "best-ever" "Olympics"
[24957] "far" "medal"
[24959] "tally" "concerned"
[24961] "seventh" "medal"
[24963] "Tokyo" "Olympics.India"
[24965] "surpassed" "London"
[24967] "2012" "medal"
[24969] "tally" "six"
[24971] "medals" "following"
[24973] "Mirabai" "Chanu's"
[24975] "silver" "weightlifting"
[24977] "Lovlina" "Borgohain's"
[24979] "bronze" "Boxing"
[24981] "PV" "Sindhu's"
[24983] "bronze" "Badminton"
[24985] "women's" "singles"
[24987] "Indian" "men's"
[24989] "hockey" "team's"
[24991] "bronze" "Ravi"
[24993] "Kumar" "Dahiya's"
[24995] "silver" "wrestling"
[24997] "Classification" "Language"
[24999] "ENGLISH" "Publication-Type"
[25001] "Newspaper" "Body"
[25003] "India" "Aug"
[25005] "1" "PV"
[25007] "Sindhu" "Sunday"
[25009] "scripted" "history"
[25011] "becoming" "first"
[25013] "Indian" "woman"
[25015] "win" "two"
[25017] "individual" "medals"
[25019] "clinching" "bronze"
[25021] "medal" "Tokyo"
[25023] "Olympics" "father"
[25025] "PV" "Ramana"
[25027] "expressed" "happiness"
[25029] "win" "saying"
[25031] "impressed" "daughter's"
[25033] "offensive" "games"
[25035] "Sindhu" "defeat"
[25037] "China's" "Bingjiao"
[25039] "21-13,21-15" "53"
[25041] "minutes" "clinch"
[25043] "second" "medal"
[25045] "first" "silver"
[25047] "medal" "Rio"
[25049] "Olympics" "FULL"
[25051] "TOKYO" "2020"
[25053] "COVERAGE" "Sindhu"
[25055] "Sunday" "became"
[25057] "first" "Indian"
[25059] "woman" "win"
[25061] "two" "Olympic"
[25063] "medals" "Sindhu"
[25065] "defeated" "China's"
[25067] "Bing" "Jiao"
[25069] "bronze" "medal"
[25071] "match" "ongoing"
[25073] "Tokyo" "Olympics"
[25075] "Musashino" "Forest"
[25077] "Plaza" "Court"
[25079] "1" "HIGHLIGHTS"
[25081] "SINDHU" "CLINCHES"
[25083] "BRONZE" "BEATS"
[25085] "BINGJIAO" "want"
[25087] "thank" "Government"
[25089] "India" "Sports"
[25091] "Authority" "India"
[25093] "grateful" "giving"
[25095] "encouragement" "happy"
[25097] "won" "medal"
[25099] "country" "Playing"
[25101] "bronze" "medal"
[25103] "match" "can"
[25105] "painful" "yesterday"
[25107] "motivated" "lot"
[25109] "thank" "God"
[25111] "blessings" "everyone"
[25113] "brought" "medal"
[25115] "happy" "first"
[25117] "Indian" "woman"
[25119] "win" "two"
[25121] "consecutive" "medals"
[25123] "Olympics" "brought"
[25125] "name" "fame"
[25127] "country" "Sindhu's"
[25129] "father" "Ramana"
[25131] "told" "reporters"
[25133] "press" "conference"
[25135] "Yesterday" "told"
[25137] "given" "best"
[25139] "just" "think"
[25141] "giving" "gift"
[25143] "play" "court"
[25145] "tears" "eyes"
[25147] "good" "recovered"
[25149] "come" "back"
[25151] "Overall" "aggressive"
[25153] "court" "just"
[25155] "told" "keep"
[25157] "attacking" "added"
[25159] "Sindhu's" "father"
[25161] "PV" "Ramana"
[25163] "also" "disclosed"
[25165] "daughter" "arriving"
[25167] "August" "3"
[25169] "told" "come"
[25171] "Delhi" "think"
[25173] "coming" "Delhi"
[25175] "August" "3"
[25177] "Olympics" "small"
[25179] "event" "get"
[25181] "medal" "medal"
[25183] "medal" "happy"
[25185] "way" "worked"
[25187] "confident" "play"
[25189] "next" "Olympics"
[25191] "also" "get"
[25193] "many" "medals"
[25195] "country" "Sindhu"
[25197] "focused" "hunger"
[25199] "enjoys" "game"
[25201] "Sindhu" "26"
[25203] "age" "get"
[25205] "experience" "seen"
[25207] "entire" "Tokyo"
[25209] "Olympics" "said"
[25211] "Ramana" "26-year-old"
[25213] "Sindhu" "now"
[25215] "just" "second"
[25217] "Indian" "athlete"
[25219] "win" "two"
[25221] "individual" "Olympic"
[25223] "medals" "Wrestler"
[25225] "Sushil" "Kumar"
[25227] "also" "two"
[25229] "medals" "returned"
[25231] "bronze" "medal"
[25233] "Beijing" "Olympics"
[25235] "2008" "silver"
[25237] "London" "Olympics"
[25239] "2012" "Published"
[25241] "HT" "Digital"
[25243] "Content" "Services"
[25245] "permission" "Hindustan"
[25247] "Times" "query"
[25249] "respect" "article"
[25251] "content" "requirement"
[25253] "please" "contact"
[25255] "Editor" "Classification"
[25257] "Language" "ENGLISH"
[25259] "Publication-Type" "Newswire"
[25261] "Body" "Tokyo"
[25263] "one" "thing"
[25265] "favourite" "king"
[25267] "expectations" "part"
[25269] "actually" "deliver"
[25271] "field" "Calm"
[25273] "composed" "Neeraj"
[25275] "Chopra" "seems"
[25277] "mastered" "eyes"
[25279] "Neeraj" "Chopra"
[25281] "deliver" "India's"
[25283] "elusive" "Olympic"
[25285] "medal" "athletics"
[25287] "end" "wait"
[25289] "100" "years"
[25291] "men's" "javelin"
[25293] "throw" "final"
[25295] "Saturday" "certainly"
[25297] "pre-tournament" "medal"
[25299] "contender" "23-year-old"
[25301] "Chopra" "fuelled"
[25303] "country's" "expectations"
[25305] "topping" "qualification"
[25307] "round" "stunning"
[25309] "first" "round"
[25311] "throw" "86.59m"
[25313] "D-day" "Neeraj"
[25315] "Chopra" "delivered"
[25317] "twice" "first"
[25319] "throw" "87.03"
[25321] "bettered" "87.58"
[25323] "Enough" "bag"
[25325] "gold" "closest"
[25327] "someone" "came"
[25329] "threaten" "Neeraj"
[25331] "Chopra's" "throw"
[25333] "Czech" "Republic's"
[25335] "Jakub" "Vadlejch"
[25337] "enormous" "86.67"
[25339] "almost" "breached"
[25341] "Neeraj" "Chopra's"
[25343] "87.58m" "Three"
[25345] "track" "field"
[25347] "athletes" "part"
[25349] "five-member" "Indian"
[25351] "team" "1920"
[25353] "Olympics" "Antwerp"
[25355] "Belgium" "two"
[25357] "wrestlers" "Since"
[25359] "Indian" "won"
[25361] "medal" "athletics"
[25363] "farmer's" "son"
[25365] "Khandra" "village"
[25367] "near" "Panipat"
[25369] "Haryana" "took"
[25371] "athletics" "shed"
[25373] "flab" "Chopra"
[25375] "scripted" "history"
[25377] "winning" "elusive"
[25379] "medal" "likes"
[25381] "late" "Milkha"
[25383] "Singh" "P"
[25385] "T" "Usha"
[25387] "let" "slip"
[25389] "grasp" "1964"
[25391] "1984" "editions"
[25393] "first" "Olympic"
[25395] "Games" "feel"
[25397] "good" "warm-up"
[25399] "performance" "good"
[25401] "qualifying" "round"
[25403] "first" "throw"
[25405] "good" "angle"
[25407] "perfect" "throw"
[25409] "Chopra" "said"
[25411] "qualifying" "round"
[25413] "Wednesday" "Chopra's"
[25415] "performance" "Saturday"
[25417] "one" "best"
[25419] "performances" "Indian"
[25421] "Olympics" "finished"
[25423] "ahead" "gold"
[25425] "medal" "favourite"
[25427] "2017" "world"
[25429] "champion" "Johannes"
[25431] "Vetter" "Germany"
[25433] "Classification" "Language"
[25435] "ENGLISH" "Publication-Type"
[25437] "Newspaper" "Body"
[25439] "New" "Delhi"
[25441] "Aug" "5"
[25443] "Tokyo" "Olympics"
[25445] "Day" "10"
[25447] "Full" "Schedule"
[25449] "13th" "day"
[25451] "Tokyo" "Olympics"
[25453] "2020" "action-packed"
[25455] "men's" "hockey"
[25457] "team" "grappler"
[25459] "Ravi" "Dahiya"
[25461] "look" "win"
[25463] "medals" "Thursday"
[25465] "Manpreet" "Singh"
[25467] "Co" "lock"
[25469] "horns" "Germany"
[25471] "bronze" "medal"
[25473] "match" "Dahiya"
[25475] "compete" "final"
[25477] "match" "57kg"
[25479] "men's" "freestyle"
[25481] "category" "Golfers"
[25483] "Aditi" "Ashok"
[25485] "Diksha" "Dagar"
[25487] "also" "action"
[25489] "women's" "individual"
[25491] "stroke" "play"
[25493] "Round" "2"
[25495] "Vinesh" "Phogat"
[25497] "start" "campaign"
[25499] "Sweden's" "Sofia"
[25501] "Mattinson" "women's"
[25503] "53kg" "freestyle"
[25505] "event" "Sandeep"
[25507] "Kumar" "Rahul"
[25509] "Rohilla" "Irfan"
[25511] "K" "Thodi"
[25513] "action" "men's"
[25515] "20km" "race"
[25517] "walk" "final"
[25519] "Wrestler" "Deepak"
[25521] "Punia" "also"
[25523] "square" "bronze"
[25525] "medal" "match"
[25527] "India's" "schedule"
[25529] "Day" "13"
[25531] "Tokyo" "Olympics"
[25533] "timings" "IST"
[25535] "4" "00"
[25537] "IST" "Aditi"
[25539] "Ashok" "golf"
[25541] "women's" "round"
[25543] "2" "5"
[25545] "44" "IST"
[25547] "Diksha" "Dagar"
[25549] "golf" "women's"
[25551] "round" "2"
[25553] "7" "00"
[25555] "IST" "India"
[25557] "vs" "Germany"
[25559] "men's" "hockey"
[25561] "bronze" "medal"
[25563] "match" "7"
[25565] "37" "IST"
[25567] "Anshu" "Malik"
[25569] "vs" "Valeria"
[25571] "Koblova" "ROC"
[25573] "repechage" "round"
[25575] "women's" "freestyle"
[25577] "wrestling" "57kg"
[25579] "8" "00"
[25581] "IST" "Vinesh"
[25583] "Phogat" "vs"
[25585] "Sofia" "Magdalena"
[25587] "Mattsson" "Sweden"
[25589] "women's" "freestyle"
[25591] "wrestling" "53kg"
[25593] "8" "56"
[25595] "IST" "Vinesh"
[25597] "Phogat" "women's"
[25599] "freestyle" "53kg"
[25601] "quarter-final" "Subject"
[25603] "qualification" "1"
[25605] "00" "PM"
[25607] "IST" "KT"
[25609] "Irfan" "Rahul"
[25611] "Rohilla" "Sandeep"
[25613] "Kumar" "men's"
[25615] "20km" "race"
[25617] "walk" "event"
[25619] "3" "25"
[25621] "PM" "IST"
[25623] "Vinesh" "Phogat"
[25625] "women's" "freestyle"
[25627] "53kg" "semi-final"
[25629] "Subject" "qualification"
[25631] "4" "20"
[25633] "PM" "IST"
[25635] "Ravi" "Dahiya"
[25637] "vs" "Zavur"
[25639] "Uguev" "Russian"
[25641] "Olympic" "Committee"
[25643] "men's" "freestyle"
[25645] "57kg" "final"
[25647] "4" "40"
[25649] "PM" "IST"
[25651] "Deepak" "Punia"
[25653] "men's" "freestyle"
[25655] "wrestling" "bronze"
[25657] "medal" "match"
[25659] "5" "35"
[25661] "PM" "IST"
[25663] "Anshu" "Malik"
[25665] "women's" "freestyle"
[25667] "wrestling" "57kg"
[25669] "bronze" "medal"
[25671] "match" "Subject"
[25673] "qualification" "Published"
[25675] "HT" "Digital"
[25677] "Content" "Services"
[25679] "permission" "Hindustan"
[25681] "Times" "query"
[25683] "respect" "article"
[25685] "content" "requirement"
[25687] "please" "contact"
[25689] "Editor" "Classification"
[25691] "Language" "ENGLISH"
[25693] "Publication-Type" "Newswire"
[25695] "Body" "2020"
[25697] "Tokyo" "Olympics"
[25699] "335" "sportspersons"
[25701] "Russia" "competing"
[25703] "athletes" "around"
[25705] "world" "Yet"
[25707] "unlike" "counterparts"
[25709] "Russians" "allowed"
[25711] "use" "country's"
[25713] "name" "flag"
[25715] "anthem" "competing"
[25717] "acronym" "ROC"
[25719] "meaning" "Russian"
[25721] "Olympic" "Committee"
[25723] "2020" "medals"
[25725] "tally" "medals"
[25727] "listed" "next"
[25729] "name" "ROC"
[25731] "flag" "different"
[25733] "Russia's" "official"
[25735] "Russia" "historically"
[25737] "among" "world's"
[25739] "top" "sporting"
[25741] "nations" "banned"
[25743] "Tokyo" "Olympics"
[25745] "led" "Russia"
[25747] "banned" "Tokyo"
[25749] "2020" "December"
[25751] "2019" "World"
[25753] "Anti-Doping" "Agency"
[25755] "WADA" "banned"
[25757] "Russia" "four"
[25759] "years" "competing"
[25761] "international" "events"
[25763] "including" "Tokyo"
[25765] "Olympics" "FIFA"
[25767] "World" "Cup"
[25769] "2022" "ban"
[25771] "enacted" "new"
[25773] "revelations" "came"
[25775] "doping" "programme"
[25777] "Russia" "accused"
[25779] "many" "years"
[25781] "whistleblowers" "investigators"
[25783] "accused" "Russia"
[25785] "running" "doping"
[25787] "programme" "sophisticated"
[25789] "forced" "international"
[25791] "federations" "stop"
[25793] "athletes" "competing"
[25795] "major" "events"
[25797] "September" "2018"
[25799] "multiple" "investigations"
[25801] "WADA" "lifted"
[25803] "sanctions" "condition"
[25805] "Russia" "hand"
[25807] "athlete" "data"
[25809] "Moscow" "laboratory"
[25811] "doping" "regulators"
[25813] "help" "identify"
[25815] "hundreds" "athletes"
[25817] "may" "cheated"
[25819] "across" "various"
[25821] "sports" "Russia"
[25823] "accused" "manipulating"
[25825] "database" "leading"
[25827] "WADA" "panel"
[25829] "suggesting" "four-year"
[25831] "ban" "Russia"
[25833] "originally" "accused"
[25835] "2014" "800m"
[25837] "runner" "Yulia"
[25839] "Stepanova" "husband"
[25841] "Vitaly" "former"
[25843] "employee" "Russian"
[25845] "Anti-Doping" "Agency"
[25847] "RUSADA" "appeared"
[25849] "German" "documentary"
[25851] "lifted" "lid"
[25853] "later" "described"
[25855] "one" "sophisticated"
[25857] "doping" "programmes"
[25859] "sports" "history"
[25861] "Two" "years"
[25863] "later" "another"
[25865] "whistleblower" "Grigory"
[25867] "Rodchenkov" "former"
[25869] "head" "RUSADA"
[25871] "told" "New"
[25873] "York" "Times"
[25875] "Russia" "ran"
[25877] "carefully" "planned"
[25879] "state-sponsored" "doping"
[25881] "scheme" "Rodchenkov's"
[25883] "claims" "damning"
[25885] "alleged" "wider"
[25887] "conspiracy" "country's"
[25889] "anti-doping" "members"
[25891] "intelligence" "services"
[25893] "substituted" "urine"
[25895] "samples" "athletes"
[25897] "hidden" "hole"
[25899] "wall" "agency's"
[25901] "laboratory" "2014"
[25903] "Sochi" "Winter"
[25905] "Olympics" "lab"
[25907] "according" "investigations"
[25909] "guarded" "members"
[25911] "Russia's" "state"
[25913] "security" "services"
[25915] "Subsequently" "International"
[25917] "Olympic" "Committee"
[25919] "IOC" "WADA"
[25921] "global" "federations"
[25923] "launched" "series"
[25925] "investigations" "authorities"
[25927] "Immediately" "allegations"
[25929] "surfaced" "accreditation"
[25931] "Russia's" "anti-doping"
[25933] "lab" "suspended"
[25935] "2015" "preliminary"
[25937] "investigations" "IOC"
[25939] "removed" "111"
[25941] "athletes" "including"
[25943] "entire" "track"
[25945] "field" "team"
[25947] "Russia's" "389-member"
[25949] "contingent" "Rio"
[25951] "Olympics" "Following"
[25953] "deeper" "inquiry"
[25955] "IOC" "suggested"
[25957] "complete" "ban"
[25959] "Russia's" "participation"
[25961] "2018" "Winter"
[25963] "Olympics" "Pyeongchang"
[25965] "South" "Korea"
[25967] "Ultimately" "168"
[25969] "athletes" "participated"
[25971] "special" "dispensations"
[25973] "international" "federations"
[25975] "Russian" "Olympic"
[25977] "Committee" "barred"
[25979] "attending" "event"
[25981] "country's" "flag"
[25983] "officially" "displayed"
[25985] "venues" "Russian"
[25987] "athletes" "forced"
[25989] "wear" "neutral"
[25991] "uniforms" "Olympic"
[25993] "Athlete" "Russia"
[25995] "printed" "happened"
[25997] "2020" "Court"
[25999] "Arbitration" "Sport"
[26001] "CAS" "reduced"
[26003] "initial" "ban"
[26005] "four" "years"
[26007] "two" "ensured"
[26009] "official" "Russian"
[26011] "team" "can"
[26013] "participate" "events"
[26015] "organised" "WADA"
[26017] "signatory" "sanction"
[26019] "term" "ends"
[26021] "December" "16"
[26023] "2022" "means"
[26025] "official" "Russian"
[26027] "teams" "2020"
[26029] "Summer" "Olympics"
[26031] "next" "year's"
[26033] "Paralympics" "Tokyo"
[26035] "well" "Beijing"
[26037] "Winter" "Olympics"
[26039] "Even" "2022"
[26041] "World" "Cup"
[26043] "Qatar" "Russia"
[26045] "compete" "neutral"
[26047] "name" "qualifies"
[26049] "Russia" "also"
[26051] "allowed" "host"
[26053] "world" "sporting"
[26055] "event" "whose"
[26057] "governing" "body"
[26059] "registered" "WADA"
[26061] "ban" "period"
[26063] "According" "report"
[26065] "Independent" "Russia"
[26067] "reinstated" "ban"
[26069] "term" "ends"
[26071] "respects" "observes"
[26073] "imposed" "sanctions"
[26075] "pays" "fines"
[26077] "contributions" "starts"
[26079] "adhering" "WADA"
[26081] "regulations" "ban"
[26083] "effectively" "mean"
[26085] "ban" "outright"
[26087] "335" "athletes"
[26089] "Russia" "still"
[26091] "playing" "Tokyo"
[26093] "name" "ROC"
[26095] "meaning" "Russian"
[26097] "Olympic" "Committee"
[26099] "team" "sends"
[26101] "Russian" "athletes"
[26103] "Games" "effect"
[26105] "punishment" "consists"
[26107] "forcing" "use"
[26109] "Russia's" "name"
[26111] "flag" "national"
[26113] "anthem" "WADA"
[26115] "President" "Witold"
[26117] "Banka" "said"
[26119] "case" "USA"
[26121] "Today" "WADA"
[26123] "remain" "disappointed"
[26125] "CAS" "decreased"
[26127] "level" "sanctions"
[26129] "four" "years"
[26131] "two" "years"
[26133] "CAS" "allows"
[26135] "compete" "Russian"
[26137] "athletes" "colours"
[26139] "flag" "uniforms"
[26141] "ROC" "players"
[26143] "able" "prove"
[26145] "part" "doping"
[26147] "scam" "per"
[26149] "IOC" "public"
[26151] "displays" "organisation's"
[26153] "participant" "name"
[26155] "use" "acronym"
[26157] "ROC" "full"
[26159] "name" "Russian"
[26161] "Olympic" "Committee"
[26163] "kit" "athlete"
[26165] "name" "Russia"
[26167] "written" "words"
[26169] "neutral" "athlete"
[26171] "must" "also"
[26173] "written" "However"
[26175] "athletes" "still"
[26177] "wearing" "uniforms"
[26179] "country's" "colours"
[26181] "per" "IOC"
[26183] "guidance" "Independent"
[26185] "report" "said"
[26187] "Classification" "Language"
[26189] "ENGLISH" "Publication-Type"
[26191] "Newspaper" "Body"
[26193] "Even" "though"
[26195] "Lovlina" "Borgohain"
[26197] "lost" "semifinal"
[26199] "bout" "reigning"
[26201] "world" "champion"
[26203] "Busenaz" "Srmeneli"
[26205] "celebrities" "hailed"
[26207] "bronze" "medal-winning"
[26209] "performance" "Bollywood"
[26211] "celebrities" "Wednesday"
[26213] "took" "social"
[26215] "media" "congratulate"
[26217] "Indian" "boxer"
[26219] "Lovlina" "Borgohain"
[26221] "winning" "bronze"
[26223] "medal" "Olympics"
[26225] "Tokyo" "23-year-old"
[26227] "sportswoman" "lost"
[26229] "semifinal" "bout"
[26231] "reigning" "world"
[26233] "champion" "Busenaz"
[26235] "Srmeneli" "Turkey"
[26237] "5-0" "women's"
[26239] "69kg" "category"
[26241] "first" "Olympics"
[26243] "medallist" "Assam"
[26245] "boxing" "medal"
[26247] "winner" "India"
[26249] "Tokyo" "Olympics"
[26251] "entire" "nation"
[26253] "cheering" "Bollywood"
[26255] "star" "Kareena"
[26257] "Kapoor" "Khan"
[26259] "shared" "Lovlina's"
[26261] "photo" "Instagram"
[26263] "story" "adding"
[26265] "heart" "high-five"
[26267] "emojis" "Deepika"
[26269] "Padukone" "also"
[26271] "congratulated" "sports"
[26273] "champ" "sharing"
[26275] "creative" "Lovlina"
[26277] "featuring" "Queen"
[26279] "deck" "cards"
[26281] "Family" "Man"
[26283] "actor" "Samantha"
[26285] "Prabhu" "also"
[26287] "shared" "news"
[26289] "adding" "dancing"
[26291] "girl" "GIF"
[26293] "Insta" "story"
[26295] "Abhishek" "Bachchan"
[26297] "sports" "enthusiast"
[26299] "took" "Twitter"
[26301] "congratulate" "boxer"
[26303] "Manmarziyaan" "actor"
[26305] "shared" "Congratulations"
[26307] "@LovlinaBorgohai" "bringing"
[26309] "home" "bronze"
[26311] "debut" "Olympics"
[26313] "proud" "#TokyoOlympics"
[26315] "@WeAreTeamIndia" "@WeAreTeamIndia"
[26317] "Congratulations" "@LovlinaBorgohai"
[26319] "bringing" "home"
[26321] "bronze" "debut"
[26323] "Olympics" "proud"
[26325] "#TokyoOlympics" "@WeAreTeamIndia"
[26327] "Abhishek" "Bachchan"
[26329] "@juniorbachchan" "August"
[26331] "4" "2021"
[26333] "Calling" "super"
[26335] "achievement" "Randeep"
[26337] "Hooda" "posted"
[26339] "Twitter" "Super"
[26341] "achievement" "#Lovlina"
[26343] "whole" "country"
[26345] "proud" "bringing"
[26347] "bronze" "#boxing"
[26349] "#Olympics2020" "#Olympics"
[26351] "Super" "achievement"
[26353] "#Lovlina" "whole"
[26355] "country" "proud"
[26357] "bringing" "bronze#boxing"
[26359] "#Olympics2020" "#Olympics"
[26361] "Randeep" "Hooda"
[26363] "@RandeepHooda" "August"
[26365] "4" "2021"
[26367] "Malayalam" "actor"
[26369] "Nivin" "Pauly"
[26371] "also" "posted"
[26373] "tweet" "sharing"
[26375] "Lovlina" "Borgohain"
[26377] "made" "country"
[26379] "proud" "Congratulations"
[26381] "@lovlinaborgohai" "making"
[26383] "us" "proud"
[26385] "#TeamIndia" "#Tokyo2020"
[26387] "#LovlinaBorgohain" "#Cheer4India"
[26389] "wrote" "Nivin"
[26391] "Congratulations" "@lovlinaborgohai"
[26393] "making" "us"
[26395] "proud" "#TeamIndia"
[26397] "#Tokyo2020" "#LovlinaBorgohain"
[26399] "#Cheer4India" "Nivin"
[26401] "Pauly" "@NivinOfficial"
[26403] "August" "4"
[26405] "2021" "Check"
[26407] "posts" "congratulating"
[26409] "Lovlina" "Borgohain"
[26411] "bronze" "medal"
[26413] "Kritika" "Kamra"
[26415] "@Kritika_Kamra" "August"
[26417] "4" "2021"
[26419] "Heartiest" "congratulations"
[26421] "@LovlinaBorgohai" "proud"
[26423] "see" "podium"
[26425] "#WomenPower" "#TeamIndia"
[26427] "pic.twitter.com" "wMtaxFzfIf"
[26429] "Diana" "Penty"
[26431] "@DianaPenty" "August"
[26433] "4" "2021"
[26435] "stellar" "performance"
[26437] "inspiration" "many"
[26439] "#lovlinaborgohai" "Bronze"
[26441] "Boxing" "first"
[26443] "olympic" "participation"
[26445] "equal" "GOLD"
[26447] "#Cheer4India" "#Tokyo2020"
[26449] "#Bronze" "#TeamIndia"
[26451] "R" "Sarath"
[26453] "Kumar" "@realsarathkumar"
[26455] "August" "4"
[26457] "2021" "Even"
[26459] "though" "Lovlina"
[26461] "Borgohain" "outplayed"
[26463] "became" "India's"
[26465] "second" "woman"
[26467] "boxer" "Olympic"
[26469] "bronze" "medal"
[26471] "Mary" "Kom"
[26473] "2012" "London"
[26475] "Games" "Lovlina's"
[26477] "bronze" "medal"
[26479] "takes" "India's"
[26481] "medal" "tally"
[26483] "three" "Mirabai"
[26485] "Chanu's" "bronze"
[26487] "medal" "women's"
[26489] "weightlifting" "July"
[26491] "24" "PV"
[26493] "Sindhu's" "bronze"
[26495] "badminton" "women's"
[26497] "singles" "August"
[26499] "1" "Classification"
[26501] "Language" "ENGLISH"
[26503] "Publication-Type" "Newspaper"
[26505] "Body" "15th"
[26507] "August" "India"
[26509] "celebrates" "Independence"
[26511] "Day" "Prime"
[26513] "Minister" "Narendra"
[26515] "Modi" "invite"
[26517] "entire" "Olympics"
[26519] "contingent" "Red"
[26521] "Fort" "special"
[26523] "guests" "Aside"
[26525] "programme" "also"
[26527] "inviting" "residence"
[26529] "personal" "meeting"
[26531] "interaction" "time"
[26533] "highest" "number"
[26535] "players" "India"
[26537] "qualified" "Olympics"
[26539] "Remember" "done"
[26541] "battling" "biggest"
[26543] "disaster" "100"
[26545] "years" "many"
[26547] "games" "qualified"
[26549] "first" "time"
[26551] "qualified" "also"
[26553] "giving" "tough"
[26555] "competition" "zeal"
[26557] "passion" "spirit"
[26559] "Indian" "players"
[26561] "highest" "level"
[26563] "Modi" "said"
[26565] "virtual" "address"
[26567] "earlier" "today"
[26569] "India" "represented"
[26571] "228-strong" "contingent"
[26573] "including" "120"
[26575] "athletes" "ongoing"
[26577] "Tokyo" "Olympics"
[26579] "last" "days"
[26581] "delayed" "Games"
[26583] "began" "Prime"
[26585] "Minister" "followed"
[26587] "events" "alongside"
[26589] "much" "nation"
[26591] "Early" "Tuesday"
[26593] "morning" "example"
[26595] "taken" "Twitter"
[26597] "cheering" "Indian"
[26599] "men's" "hockey"
[26601] "team" "took"
[26603] "Belgium" "semifinal"
[26605] "match" "Videos"
[26607] "shared" "online"
[26609] "last" "week"
[26611] "also" "shown"
[26613] "prime" "minister"
[26615] "watching" "events"
[26617] "television" "players"
[26619] "won" "lost"
[26621] "also" "tweeted"
[26623] "congratulatory" "supportive"
[26625] "messages" "mark"
[26627] "efforts" "details"
[26629] "awaited" "Classification"
[26631] "Language" "ENGLISH"
[26633] "Publication-Type" "Newspaper"
[26635] "Body" "New"
[26637] "Delhi" "Aug"
[26639] "7" "23-year-"
[26641] "old" "golfer"
[26643] "Aditi" "Ashok"
[26645] "today" "put"
[26647] "brilliant" "display"
[26649] "finished" "fourth"
[26651] "finishes" "fourth"
[26653] "Olympic" "Games"
[26655] "carding" "3-under"
[26657] "68" "final"
[26659] "round" "heartbreaking"
[26661] "end" "Aditi's"
[26663] "campaign" "considering"
[26665] "started" "day"
[26667] "2nd" "nonetheless"
[26669] "major" "improvement"
[26671] "finished" "tied"
[26673] "41st" "2016"
[26675] "edition" "golf"
[26677] "made" "comeback"
[26679] "Olympics" "final"
[26681] "round" "fired"
[26683] "five" "birdies"
[26685] "5th" "6th"
[26687] "8th" "13th"
[26689] "14th" "holes"
[26691] "two" "bogeys"
[26693] "9th" "11th"
[26695] "Overnight" "leader"
[26697] "world" "number"
[26699] "one" "Nelly"
[26701] "Korda" "clinched"
[26703] "gold" "medal"
[26705] "2-under" "69"
[26707] "left" "17-under"
[26709] "overall" "shot"
[26711] "ahead" "Japan's"
[26713] "Mone" "Inami"
[26715] "65" "New"
[26717] "Zealand's" "Lydia"
[26719] "Ko" "65"
[26721] "Aditi" "medal"
[26723] "contention" "major"
[26725] "part" "day"
[26727] "two" "bogeys"
[26729] "pulled" "back"
[26731] "Ko" "surged"
[26733] "ahead" "sensational"
[26735] "nine" "birdies"
[26737] "just" "three"
[26739] "dropped" "shots"
[26741] "final" "round"
[26743] "Aditi's" "second"
[26745] "Olympic" "appearance"
[26747] "finished" "tied"
[26749] "41st" "2016"
[26751] "Rio" "de"
[26753] "Janeiro" "edition"
[26755] "final" "round"
[26757] "women's" "Tokyo"
[26759] "Olympics" "golf"
[26761] "tournament" "resumed"
[26763] "Saturday" "leaders"
[26765] "two" "holes"
[26767] "complete" "49-minute"
[26769] "interruption" "passing"
[26771] "thunderstorm" "Play"
[26773] "restarted" "1"
[26775] "15" "pm"
[26777] "0415" "GMT"
[26779] "American" "world"
[26781] "number" "one"
[26783] "Nelly" "Korda"
[26785] "leading" "17-under"
[26787] "par" "one"
[26789] "shot" "ahead"
[26791] "Japan's" "Mone"
[26793] "Inami" "India's"
[26795] "Aditi" "Ashok"
[26797] "Lydia" "Ko"
[26799] "New" "Zealand"
[26801] "tied" "third"
[26803] "stroke" "back"
[26805] "final" "group"
[26807] "Korda" "Ashok"
[26809] "Ko" "just"
[26811] "played" "tee"
[26813] "shots" "driveable"
[26815] "par-four" "17th"
[26817] "play" "suspended"
[26819] "12" "26"
[26821] "pm" "Aditi"
[26823] "said" "since"
[26825] "played" "tournaments"
[26827] "May-June" "also"
[26829] "got" "infected"
[26831] "coronavirus" "probably"
[26833] "lost" "distance"
[26835] "tee" "Yet"
[26837] "short" "game"
[26839] "helped" "really"
[26841] "best" "especially"
[26843] "long" "holes"
[26845] "long" "approaches"
[26847] "consistent" "yeah"
[26849] "definitely" "good"
[26851] "day" "make"
[26853] "many" "bogeys"
[26855] "said" "putting"
[26857] "good" "today"
[26859] "first" "two"
[26861] "days" "couple"
[26863] "par" "putts"
[26865] "like" "one"
[26867] "12" "one"
[26869] "18" "helped"
[26871] "knew" "putting"
[26873] "good" "today"
[26875] "compared" "first"
[26877] "two" "Aditi"
[26879] "said" "recoeverd"
[26881] "COVID-19" "affect"
[26883] "health" "took"
[26885] "little" "bit"
[26887] "strength" "never"
[26889] "short" "always"
[26891] "short" "like"
[26893] "50" "behind"
[26895] "Nelly" "50"
[26897] "behind" "Nanna"
[26899] "apart" "distance"
[26901] "year" "kind"
[26903] "best" "short"
[26905] "game" "Aditi"
[26907] "also" "candid"
[26909] "following" "golf"
[26911] "back" "home"
[26913] "Nobody" "really"
[26915] "follows" "golf"
[26917] "much" "know"
[26919] "follow" "just"
[26921] "know" "much"
[26923] "sport" "know"
[26925] "major" "prestigious"
[26927] "Olympics" "whenever"
[26929] "Olympics" "comes"
[26931] "around" "always"
[26933] "lot" "sports"
[26935] "actually" "really"
[26937] "good" "like"
[26939] "hockey" "used"
[26941] "win" "gold"
[26943] "medals" "time"
[26945] "golf" "Olympics"
[26947] "second" "time"
[26949] "think" "people"
[26951] "lot" "aware"
[26953] "trying" "follow"
[26955] "lot" "Published"
[26957] "HT" "Digital"
[26959] "Content" "Services"
[26961] "permission" "MINT"
[26963] "query" "respect"
[26965] "article" "content"
[26967] "requirement" "please"
[26969] "contact" "Editor"
[26971] "Classification" "Language"
[26973] "ENGLISH" "Publication-Type"
[26975] "Newspaper" "Body"
[26977] "New" "Delhi"
[26979] "July" "25"
[26981] "Prime" "Minister"
[26983] "Narendra" "Modi"
[26985] "Sunday" "urged"
[26987] "Indians" "support"
[26989] "athletes" "participating"
[26991] "Tokyo" "Olympics"
[26993] "Victory" "Punch"
[26995] "campaign" "social"
[26997] "media" "incredible"
[26999] "images" "moments"
[27001] "two" "days"
[27003] "still" "front"
[27005] "eyes" "start"
[27007] "Mann" "Ki"
[27009] "Baat" "moments"
[27011] "Seeing" "athletes"
[27013] "carrying" "Tiranga"
[27015] "whole" "nation"
[27017] "got" "excited"
[27019] "like" "entire"
[27021] "nation" "got"
[27023] "together" "said"
[27025] "Vijayi" "Bhava"
[27027] "players" "said"
[27029] "PM" "Modi"
[27031] "monthly" "radio"
[27033] "programme" "Prime"
[27035] "Minister" "said"
[27037] "talked" "athletes"
[27039] "left" "Tokyo"
[27041] "Olympics" "got"
[27043] "opportunity" "know"
[27045] "players" "overcome"
[27047] "several" "adversities"
[27049] "life" "reach"
[27051] "place" "Today"
[27053] "power" "support"
[27055] "love" "come"
[27057] "forward" "wishing"
[27059] "encouraging" "said"
[27061] "support" "Olympics"
[27063] "team" "social"
[27065] "media" "Victory"
[27067] "Punch" "Campaign"
[27069] "already" "begun"
[27071] "can" "also"
[27073] "share" "victory"
[27075] "punch" "along"
[27077] "team" "cheer"
[27079] "India" "added"
[27081] "Saturday" "PM"
[27083] "Modi" "led"
[27085] "country" "congratulating"
[27087] "weightlifter" "Mirabai"
[27089] "Chanu" "clinched"
[27091] "silver" "49kg"
[27093] "category" "Tokyo"
[27095] "Olympics" "ended"
[27097] "India's" "21-year"
[27099] "wait" "weightlifting"
[27101] "medal" "Games"
[27103] "26-year-old" "lifted"
[27105] "total" "202kg"
[27107] "87kg" "snatch"
[27109] "115kg" "clean"
[27111] "jerk" "better"
[27113] "Karnam" "Malleswari's"
[27115] "bronze" "2000"
[27117] "Sydney" "Olympics"
[27119] "PM" "Modi"
[27121] "wished" "Mirabai"
[27123] "Chanu" "success"
[27125] "saying" "feat"
[27127] "inspire" "future"
[27129] "generations" "country"
[27131] "asked" "happier"
[27133] "start" "@Tokyo2020"
[27135] "India" "elated"
[27137] "@mirabai_chanu" "s"
[27139] "stupendous" "performance"
[27141] "Congratulations" "winning"
[27143] "Silver" "medal"
[27145] "weightlifting" "success"
[27147] "motivates" "every"
[27149] "Indian" "#Cheer4India"
[27151] "#Tokyo2020" "PM"
[27153] "Modi" "tweeted"
[27155] "Published" "HT"
[27157] "Digital" "Content"
[27159] "Services" "permission"
[27161] "Hindustan" "Times"
[27163] "query" "respect"
[27165] "article" "content"
[27167] "requirement" "please"
[27169] "contact" "Editor"
[27171] "Classification" "Language"
[27173] "ENGLISH" "Publication-Type"
[27175] "Newswire" "Body"
[27177] "Gold" "winner"
[27179] "Zhihui" "Hou"
[27181] "asked" "stay"
[27183] "back" "Japan"
[27185] "necessary" "formalities"
[27187] "Mirabai" "Chanu's"
[27189] "Tokyo" "Olympics"
[27191] "saga" "probably"
[27193] "yet" "26-year-old"
[27195] "Manipuri" "won"
[27197] "silver" "weightlifting"
[27199] "Tokyo" "Olympics"
[27201] "Saturday" "might"
[27203] "medal" "upgrade"
[27205] "Yes" "end"
[27207] "gold" "According"
[27209] "news" "agency"
[27211] "ANI" "anti-doping"
[27213] "authorities" "Tokyo"
[27215] "test" "China's"
[27217] "Zhihui" "Hou"
[27219] "won" "gold"
[27221] "49kg" "category"
[27223] "Tokyo" "International"
[27225] "Forum" "Hou"
[27227] "fails" "scrutiny"
[27229] "Chanu" "awarded"
[27231] "coveted" "yellow"
[27233] "metal" "Hou"
[27235] "reportedly" "asked"
[27237] "stay" "back"
[27239] "Tokyo" "tests"
[27241] "Chanu" "ended"
[27243] "India's" "21-year"
[27245] "wait" "weightlifting"
[27247] "medal" "Olympics"
[27249] "lifted" "total"
[27251] "202kg" "87kg"
[27253] "+" "115kg"
[27255] "better" "Karnam"
[27257] "Malleswari's" "bronze"
[27259] "2000" "Sydney"
[27261] "Olympics" "exorcised"
[27263] "ghosts" "2016"
[27265] "Games" "failed"
[27267] "log" "single"
[27269] "legitimate" "lift"
[27271] "China's" "Hou"
[27273] "Zhihui" "lifted"
[27275] "210kg" "94kg"
[27277] "+" "116kg"
[27279] "Aisah" "Windy"
[27281] "Cantika" "Indonesia"
[27283] "took" "home"
[27285] "bronze" "effort"
[27287] "194kg" "84kg"
[27289] "+" "110kg"
[27291] "Considered" "weakness"
[27293] "run" "marquee"
[27295] "event" "Chanu"
[27297] "attempted" "84kg"
[27299] "first" "snatch"
[27301] "attempt" "Manipuri"
[27303] "took" "time"
[27305] "cleanly" "heaved"
[27307] "barbell" "lifted"
[27309] "87kg" "next"
[27311] "attempt" "raised"
[27313] "weight" "89kg"
[27315] "one" "1kg"
[27317] "personal" "best"
[27319] "88kg" "lifted"
[27321] "national" "championship"
[27323] "last" "year"
[27325] "However" "unable"
[27327] "better" "personal"
[27329] "best" "settled"
[27331] "87kg" "snatch"
[27333] "event" "behind"
[27335] "leader" "Zhihui"
[27337] "created" "new"
[27339] "Olympic" "record"
[27341] "effort" "94kg"
[27343] "Classification" "Language"
[27345] "ENGLISH" "Publication-Type"
[27347] "Newspaper" "Body"
[27349] "Athletics" "Neeraj"
[27351] "Chopra" "India's"
[27353] "biggest" "gold"
[27355] "medal" "hope"
[27357] "Tokyo" "Olympics"
[27359] "prepares" "take"
[27361] "field" "men's"
[27363] "javelin" "throw"
[27365] "final" "today"
[27367] "Saturday" "23-year-old"
[27369] "kept" "India's"
[27371] "hopes" "elusive"
[27373] "Olympic" "medal"
[27375] "track" "field"
[27377] "events" "alive"
[27379] "direct" "qualification"
[27381] "finals" "stunning"
[27383] "throw" "86.65m"
[27385] "throw" "put"
[27387] "top" "Group"
[27389] "contest" "Wednesday"
[27391] "Neeraj" "Chopra"
[27393] "final" "men's"
[27395] "javelin" "throw"
[27397] "4" "30pm"
[27399] "IST" "Golf"
[27401] "Golfer" "Diksha"
[27403] "Dagar" "kick-started"
[27405] "Day" "15"
[27407] "India" "ongoing"
[27409] "Tokyo" "Olympics"
[27411] "eyes" "Aditi"
[27413] "Ashok" "aims"
[27415] "medal" "Golfer"
[27417] "Aditi" "currently"
[27419] "ranked" "second"
[27421] "another" "stellar"
[27423] "performance" "Round"
[27425] "3" "women's"
[27427] "individual" "stroke"
[27429] "play" "23-year-old"
[27431] "rolled" "five"
[27433] "birdies" "placed"
[27435] "second" "twelve-under"
[27437] "201" "ahead"
[27439] "New" "Zealander"
[27441] "Australian" "Japanese"
[27443] "Danish" "golfer"
[27445] "203" "tied"
[27447] "third" "place"
[27449] "Indian" "finished"
[27451] "round" "three"
[27453] "68" "-3"
[27455] "Day" "3"
[27457] "Kasumigaseki" "Country"
[27459] "Club" "Aditi"
[27461] "Ashok" "Diksha"
[27463] "Dagar" "women's"
[27465] "individual" "stroke"
[27467] "play" "round"
[27469] "4" "3"
[27471] "00am" "IST"
[27473] "Wrestling" "Wrestler"
[27475] "Bajrang" "Punia"
[27477] "beginning" "Tokyo"
[27479] "2020" "campaign"
[27481] "won" "games"
[27483] "comprehensively" "Indian"
[27485] "wrestler" "first"
[27487] "defeated" "Ernazar"
[27489] "Akmataliev" "Kyrgyzstan"
[27491] "1" "8"
[27493] "Final" "beat"
[27495] "Iran's" "Morteza"
[27497] "Ghiasi" "Cheka"
[27499] "pinning" "mat"
[27501] "victory" "fall"
[27503] "1" "4"
[27505] "Final" "However"
[27507] "Bajrang" "face"
[27509] "crushing" "defeat"
[27511] "semifinals" "Tokyo"
[27513] "Olympics" "hands"
[27515] "Haji" "Aliyev"
[27517] "Azerbaijan" "men's"
[27519] "freestyle" "65kg"
[27521] "event" "Bajrang"
[27523] "Punia" "men's"
[27525] "65kg" "freestyle"
[27527] "bronze" "medal"
[27529] "match" "either"
[27531] "second" "third"
[27533] "bout" "3"
[27535] "15pm" "IST"
[27537] "start" "Classification"
[27539] "Language" "ENGLISH"
[27541] "Publication-Type" "Newspaper"
[27543] "Body" "23-year"
[27545] "old" "placed"
[27547] "second" "ahead"
[27549] "big" "names"
[27551] "first" "round"
[27553] "one" "Indian"
[27555] "golfer" "Aditi"
[27557] "Ashok" "got"
[27559] "brilliant" "start"
[27561] "Tokyo" "Olympics"
[27563] "Golf" "competition"
[27565] "carding" "four-under"
[27567] "67" "opening"
[27569] "round" "Kasumigaseki"
[27571] "Country" "Club"
[27573] "Wednesday" "Aditi"
[27575] "caught" "golfing"
[27577] "world's" "attention"
[27579] "five" "years"
[27581] "ago" "Rio"
[27583] "Olympics" "shared"
[27585] "second" "place"
[27587] "World" "1"
[27589] "Nelly" "Korda"
[27591] "one" "shot"
[27593] "behind" "leader"
[27595] "Madalene" "Sagstrom"
[27597] "Sweden" "shot"
[27599] "66" "Aditi"
[27601] "may" "well"
[27603] "share" "lead"
[27605] "bogey" "18th"
[27607] "hole" "Sagstrom"
[27609] "shot" "bogey"
[27611] "free" "five-under"
[27613] "66" "Aditi"
[27615] "five" "birdies"
[27617] "one" "bogey"
[27619] "closing" "hole"
[27621] "placed" "well"
[27623] "ahead" "big"
[27625] "names" "women's"
[27627] "golf" "including"
[27629] "formidable" "defending"
[27631] "champion" "Inbee"
[27633] "Park" "69"
[27635] "India's" "entrant"
[27637] "field" "Diksha"
[27639] "Dagar" "76"
[27641] "rough" "start"
[27643] "maiden" "Olympics"
[27645] "five" "bogeys"
[27647] "birdies" "lie"
[27649] "tied" "56th"
[27651] "spot" "60-player"
[27653] "field" "play"
[27655] "18" "holes"
[27657] "day" "cut"
[27659] "players" "get"
[27661] "play" "72"
[27663] "holes" "Aditi"
[27665] "birdied" "fifth"
[27667] "ninth" "15"
[27669] "feet" "seven"
[27671] "feet" "respectively"
[27673] "back" "nine"
[27675] "added" "birdies"
[27677] "13th" "15"
[27679] "feet" "another"
[27681] "almost" "18"
[27683] "feet" "17th"
[27685] "another" "birdie"
[27687] "14th" "three"
[27689] "feet" "superb"
[27691] "approach" "Placed"
[27693] "5-under" "bogeyed"
[27695] "last" "missing"
[27697] "par" "seven"
[27699] "feet" "think"
[27701] "played" "better"
[27703] "expected" "today"
[27705] "lot" "hybrids"
[27707] "greens" "really"
[27709] "expect" "like"
[27711] "5-under" "17"
[27713] "Aditi" "said"
[27715] "kind" "holed"
[27717] "good" "putts"
[27719] "holed" "important"
[27721] "par" "putts"
[27723] "well" "kept"
[27725] "momentum" "yeah"
[27727] "good" "day"
[27729] "Five" "years"
[27731] "ago" "Aditi"
[27733] "got" "Olympics"
[27735] "father" "Ashok"
[27737] "bag" "time"
[27739] "around" "mother"
[27741] "Maheshwari" "big"
[27743] "influence" "Yeah"
[27745] "mom" "caddying"
[27747] "Last" "time"
[27749] "dad" "bag"
[27751] "experience" "just"
[27753] "incredible" "like"
[27755] "want" "mom"
[27757] "next" "time"
[27759] "made" "good"
[27761] "promise" "Aditi"
[27763] "said" "Aditi"
[27765] "said" "rookie"
[27767] "last" "time"
[27769] "now" "wealth"
[27771] "experience" "just"
[27773] "finished" "high"
[27775] "school" "exams"
[27777] "Olympics" "two"
[27779] "months" "time"
[27781] "think" "definitely"
[27783] "lot" "experience"
[27785] "just" "playing"
[27787] "LPGA" "last"
[27789] "five" "years"
[27791] "makes" "way"
[27793] "better" "player"
[27795] "Rio" "think"
[27797] "Olympic" "experience"
[27799] "finish" "well"
[27801] "wanted" "last"
[27803] "time" "just"
[27805] "seeing" "effect"
[27807] "golf" "India"
[27809] "inspiring" "kind"
[27811] "motivated" "one"
[27813] "well" "23-year-old"
[27815] "Bengaluru" "18"
[27817] "Major" "appearances"
[27819] "attracted" "global"
[27821] "attention" "start"
[27823] "68-68" "first"
[27825] "two" "rounds"
[27827] "Rio" "faded"
[27829] "T-41st" "Among"
[27831] "others" "South"
[27833] "Korea's" "world"
[27835] "number" "two"
[27837] "Ko" "Jin-young"
[27839] "Finland's" "Matilda"
[27841] "Castren" "Spaniard"
[27843] "Carlota" "Ciganda"
[27845] "tied" "fourth"
[27847] "three" "carded"
[27849] "3-under" "68"
[27851] "South" "Korean"
[27853] "team" "also"
[27855] "boasts" "reigning"
[27857] "Olympic" "champion"
[27859] "Park" "Inbee"
[27861] "69" "World"
[27863] "4" "Kim"
[27865] "Sei-young" "69"
[27867] "Tied-7th" "sixth-ranked"
[27869] "Kim" "Hyo-joo"
[27871] "70" "T-16th"
[27873] "New" "Zealand's"
[27875] "former" "World"
[27877] "number" "one"
[27879] "Lydia" "Ko"
[27881] "70" "four"
[27883] "behind" "leader"
[27885] "Thailand's" "Ariya"
[27887] "Jutanugarn" "double"
[27889] "major" "winner"
[27891] "stumbled" "77"
[27893] "six" "bogeys"
[27895] "tied" "58th"
[27897] "60-player" "field"
[27899] "Major" "winners"
[27901] "Feng" "Shanshan"
[27903] "China" "Canadian"
[27905] "Brooke" "Henderson"
[27907] "shot" "74"
[27909] "Classification" "Language"
[27911] "ENGLISH" "Publication-Type"
[27913] "Newspaper" "Body"
[27915] "Facebook" "banned"
[27917] "Jamaican" "gold"
[27919] "medal" "winning"
[27921] "sprinter" "Elaine"
[27923] "Thompson-Herah" "Instagram"
[27925] "two" "days"
[27927] "invoking" "fury"
[27929] "fans" "fastest"
[27931] "woman" "history"
[27933] "Olympics" "banned"
[27935] "Instagram" "days"
[27937] "winning" "gold"
[27939] "100m" "200m"
[27941] "Tokyo" "2020"
[27943] "sparked" "enormous"
[27945] "uproar" "among"
[27947] "sports" "fans"
[27949] "sprinter's" "admirers"
[27951] "Wednesday" "Elaine"
[27953] "Thompson-Herah" "broke"
[27955] "Olympics" "record"
[27957] "women's" "100m"
[27959] "race" "announced"
[27961] "Instagram" "account"
[27963] "blocked" "posted"
[27965] "short" "clips"
[27967] "gold-medal" "winning"
[27969] "races" "blocked"
[27971] "Facebook-owned" "Instagram"
[27973] "copyright" "infringement"
[27975] "Thompson-Herah" "took"
[27977] "Twitter" "share"
[27979] "news" "world"
[27981] "posted" "blocked"
[27983] "Instagram" "posting"
[27985] "races" "Olympic"
[27987] "sic" "right"
[27989] "see" "y'all"
[27991] "2" "days"
[27993] "Thompson" "300,000"
[27995] "followers" "Instagram"
[27997] "fans" "sports"
[27999] "commentators" "used"
[28001] "words" "like"
[28003] "disgusting" "insulting"
[28005] "referring" "ban"
[28007] "Confronted" "social"
[28009] "media" "outrage"
[28011] "Facebook" "clarified"
[28013] "Thompson-Herah's" "account"
[28015] "wrongly" "suspended"
[28017] "reinstated" "add"
[28019] "content" "put"
[28021] "Olympian" "correctly"
[28023] "removed" "per"
[28025] "International" "Olympics"
[28027] "Committee" "IOC"
[28029] "athletes" "can"
[28031] "post" "content"
[28033] "Rights" "Holding"
[28035] "Broadcasters" "RHBs"
[28037] "exclusive" "rights"
[28039] "broadcast" "Tokyo"
[28041] "Olympic" "2020"
[28043] "share" "social"
[28045] "media" "accounts"
[28047] "However" "athletes"
[28049] "share" "content"
[28051] "competitions" "natively"
[28053] "Thompson-Herah" "also"
[28055] "confirmed" "unblocking"
[28057] "account" "Instagram"
[28059] "Story" "later"
[28061] "posted" "pic"
[28063] "200m" "semi-finals"
[28065] "captioning" "Elaine"
[28067] "Thompson" "200m"
[28069] "semifinals" "don"
[28071] "rights" "video"
[28073] "Jamaican" "speed"
[28075] "queen" "completed"
[28077] "remarkable" "double-double"
[28079] "Tokyo" "2020"
[28081] "also" "picked"
[28083] "gold" "medals"
[28085] "100m" "200m"
[28087] "Rio" "Olympics"
[28089] "2016" "feat"
[28091] "Thompson-Herah" "emulated"
[28093] "countryman" "Usain"
[28095] "Bolt" "Bolt"
[28097] "achieved" "sprinting"
[28099] "double-double" "2008"
[28101] "2012" "go"
[28103] "better" "triple-double"
[28105] "winning" "gold"
[28107] "100m" "200m"
[28109] "2016" "well"
[28111] "Classification" "Language"
[28113] "ENGLISH" "Publication-Type"
[28115] "Newspaper" "Body"
[28117] "Abhinav" "Bindra"
[28119] "broke" "glass"
[28121] "ceiling" "Indian"
[28123] "sports" "winning"
[28125] "gold" "2008"
[28127] "Beijing" "Olympics"
[28129] "congratulated" "23-year-old"
[28131] "Javelin" "thrower"
[28133] "Neeraj" "Chopra"
[28135] "clinched" "gold"
[28137] "men's" "javelin"
[28139] "throw" "best"
[28141] "throw" "87.58m"
[28143] "second" "attempt"
[28145] "thus" "becoming"
[28147] "first" "country"
[28149] "since" "Independence"
[28151] "win" "athletics"
[28153] "medal" "Olympics"
[28155] "spectacular" "fashion"
[28157] "Bindra" "wrote"
[28159] "Gold" "@Neeraj_chopra1"
[28161] "Take" "bow"
[28163] "young" "man"
[28165] "fulfilled" "nation's"
[28167] "dream" "Thank"
[28169] "Also" "welcome"
[28171] "club" "much"
[28173] "needed" "addition"
[28175] "Extremely" "proud"
[28177] "delighted" "Bindra"
[28179] "also" "posted"
[28181] "letter" "Neeraj"
[28183] "one" "Olympic"
[28185] "gold" "medallist"
[28187] "another" "congratulating"
[28189] "becoming" "India's"
[28191] "second" "gold"
[28193] "medallist" "2020"
[28195] "Tokyo" "Olympics"
[28197] "Javelin" "throw"
[28199] "might" "followed"
[28201] "sporting" "discipline"
[28203] "India" "historic"
[28205] "achievement" "brought"
[28207] "limelight" "capturing"
[28209] "imagination" "billions"
[28211] "watching" "home"
[28213] "impact" "victory"
[28215] "create" "promoting"
[28217] "sport" "amongst"
[28219] "country's" "youth"
[28221] "immeasurable" "Bindra"
[28223] "wrote" "letter"
[28225] "Thanks" "finished"
[28227] "Tokyo" "endeavor"
[28229] "great" "high"
[28231] "performance" "elevated"
[28233] "evident" "throughout"
[28235] "Games" "athletes"
[28237] "capable" "going"
[28239] "toe" "toe"
[28241] "best" "firmly"
[28243] "establishing" "favorites"
[28245] "Bindra" "said"
[28247] "signing" "admiration"
[28249] "respect" "Neeraj"
[28251] "Chopra's" "first"
[28253] "appearance" "Olympics"
[28255] "journey" "towards"
[28257] "clinching" "Olympic"
[28259] "berth" "easy"
[28261] "amid" "injury"
[28263] "setbacks" "hindering"
[28265] "goal" "Neeraj"
[28267] "now" "gold"
[28269] "medal" "Asian"
[28271] "Games" "Commonwealth"
[28273] "Games" "Olympics"
[28275] "Classification" "Language"
[28277] "ENGLISH" "Publication-Type"
[28279] "Newspaper" "Body"
[28281] "Difficult" "draining"
[28283] "Even" "Tokyo"
[28285] "Olympics" "began"
[28287] "lots" "speculations"
[28289] "athletes" "fare"
[28291] "inside" "Games"
[28293] "Village" "time"
[28295] "restrictions" "rules"
[28297] "place" "per"
[28299] "COVID" "protocols"
[28301] "Apart" "giving"
[28303] "athletes" "chance"
[28305] "achieve" "pinnacle"
[28307] "sporting" "achievement"
[28309] "Olympics" "also"
[28311] "known" "social"
[28313] "melting" "pot"
[28315] "Sportspersons" "around"
[28317] "world" "stay"
[28319] "Olympic" "Village"
[28321] "socialising" "intermingling"
[28323] "past" "many"
[28325] "attributed" "fun"
[28327] "atmosphere" "Games"
[28329] "Villages" "alleviating"
[28331] "stress" "around"
[28333] "competitions" "fears"
[28335] "social" "distancing"
[28337] "no-contact" "rules"
[28339] "just" "suck"
[28341] "fun" "Games"
[28343] "concluded" "yesterday"
[28345] "put" "many"
[28347] "athletes" "mental"
[28349] "health" "risk"
[28351] "particularly" "tougher"
[28353] "athletes" "play"
[28355] "team" "sports"
[28357] "used" "staying"
[28359] "together" "group"
[28361] "Village" "even"
[28363] "teammates" "staying"
[28365] "separate" "rooms"
[28367] "minimal" "contact"
[28369] "outside" "playing"
[28371] "arenas" "difficult"
[28373] "play" "field"
[28375] "hockey" "team"
[28377] "together" "friends"
[28379] "now" "alone"
[28381] "hotel" "best"
[28383] "team" "position"
[28385] "Argentine" "hockey"
[28387] "player" "Emiliano"
[28389] "Bosso" "said"
[28391] "teams" "tried"
[28393] "avoid" "strict"
[28395] "rules" "putting"
[28397] "athletes" "hotels"
[28399] "close" "Games"
[28401] "Village" "many"
[28403] "away" "action"
[28405] "felt" "isolating"
[28407] "US" "women's"
[28409] "gymnastics" "team"
[28411] "staying" "hotel"
[28413] "instead" "Games"
[28415] "Village" "Simone"
[28417] "Biles" "addressed"
[28419] "affected" "ability"
[28421] "replenish" "amidst"
[28423] "multiple" "competitions"
[28425] "Usually" "hang"
[28427] "village" "stuff"
[28429] "said" "adding"
[28431] "suck" "feel"
[28433] "weight" "world"
[28435] "outlets" "amount"
[28437] "training" "saying"
[28439] "great" "set"
[28441] "chose" "COVID"
[28443] "safe" "protocols"
[28445] "COVID" "protocols"
[28447] "place" "meant"
[28449] "athletes" "travel"
[28451] "Tokyo" "family"
[28453] "members" "time"
[28455] "around" "Add"
[28457] "fact" "spectators"
[28459] "stands" "meant"
[28461] "athletes" "nobody"
[28463] "cheering" "Swimming"
[28465] "legend" "Michael"
[28467] "Phelps" "said"
[28469] "caused" "anxiety"
[28471] "stress" "among"
[28473] "athletes" "Phelps"
[28475] "said" "Olympic"
[28477] "athletes" "needed"
[28479] "someone" "can"
[28481] "trust" "Games"
[28483] "Even" "IOC"
[28485] "allowed" "mothers"
[28487] "bring" "along"
[28489] "babies" "athletes"
[28491] "complained" "rules"
[28493] "place" "made"
[28495] "pointless" "impossible"
[28497] "Spanish" "synchronised"
[28499] "swimmer" "Ona"
[28501] "Carbonell" "said"
[28503] "leave" "11-month-old"
[28505] "son" "back"
[28507] "Spain" "said"
[28509] "per" "rules"
[28511] "nursing" "mothers"
[28513] "leave" "bubble"
[28515] "breastfeed" "children"
[28517] "move" "felt"
[28519] "increased" "risk"
[28521] "infection" "put"
[28523] "teammates" "risk"
[28525] "Athletes" "Netherlands"
[28527] "quarantined" "hotel"
[28529] "testing" "positive"
[28531] "COVID-19" "went"
[28533] "strike" "protesting"
[28535] "stay" "called"
[28537] "Olympic" "jail"
[28539] "need" "outside"
[28541] "air" "anything"
[28543] "nothing" "opens"
[28545] "windows" "closed"
[28547] "doors" "open"
[28549] "ever" "okay"
[28551] "outside" "air"
[28553] "inhuman" "mentally"
[28555] "super-draining" "said"
[28557] "Dutch" "street"
[28559] "skateboarder" "Candy"
[28561] "Jacobs" "Dutch"
[28563] "Olympics" "federation"
[28565] "called" "quarantine"
[28567] "conditions" "unacceptable"
[28569] "said" "raise"
[28571] "issue" "IOC"
[28573] "Classification" "Language"
[28575] "ENGLISH" "Publication-Type"
[28577] "Newspaper" "Body"
[28579] "Abdullah" "Al-Rashidi"
[28581] "58" "seven-time"
[28583] "Olympian" "won"
[28585] "second" "straight"
[28587] "skeet-shooting" "bronze"
[28589] "Monday" "Olympics"
[28591] "nothing" "impossible"
[28593] "age" "old"
[28595] "young" "Olympic"
[28597] "glory" "Ask"
[28599] "Abdullah" "Al-Rashidi"
[28601] "seven-time" "Olympian"
[28603] "58" "years"
[28605] "won" "second"
[28607] "straight" "skeet-shooting"
[28609] "bronze" "Monday"
[28611] "difference" "Rio"
[28613] "2016" "considered"
[28615] "independent" "athlete"
[28617] "Kuwaiti" "Kuwait's"
[28619] "national" "Olympic"
[28621] "committee" "suspended"
[28623] "IOC" "government"
[28625] "interference" "Al-Rashidi"
[28627] "compatriots" "Rio"
[28629] "Games" "compete"
[28631] "part" "independent"
[28633] "team" "meant"
[28635] "team" "uniform"
[28637] "wore" "Arsenal"
[28639] "football" "jersey"
[28641] "Kuwaiti" "flag"
[28643] "national" "anthem"
[28645] "anyone" "win"
[28647] "gold" "time"
[28649] "made" "sure"
[28651] "Kuwaiti" "flag"
[28653] "first" "draping"
[28655] "shoulders" "even"
[28657] "medal" "presented"
[28659] "happy" "see"
[28661] "Kuwaiti" "flag"
[28663] "second" "Olympic"
[28665] "medal" "Al-Rashidi"
[28667] "said" "promising"
[28669] "return" "2024"
[28671] "Paris" "Games"
[28673] "sprightly" "61"
[28675] "Hours" "Al-Rashidi's"
[28677] "feat" "Japan's"
[28679] "Momiji" "Nishiya"
[28681] "became" "second"
[28683] "youngest" "champion"
[28685] "summer" "Olympic"
[28687] "history" "aged"
[28689] "13" "years"
[28691] "330" "days"
[28693] "winning" "inaugural"
[28695] "women's" "skateboarding"
[28697] "street" "competition"
[28699] "Marjorie" "Gestring"
[28701] "13" "years"
[28703] "268" "days"
[28705] "winning" "women's"
[28707] "3m" "springboard"
[28709] "diving" "1936"
[28711] "Berlin" "Olympics"
[28713] "secured" "gold"
[28715] "summer" "Games"
[28717] "younger" "age"
[28719] "Nishiya" "came"
[28721] "top" "unusually"
[28723] "young" "field"
[28725] "competitors" "three"
[28727] "medallists" "teens"
[28729] "Brazilian" "silver"
[28731] "medallist" "Rayssa"
[28733] "Leal" "also"
[28735] "13" "bronze"
[28737] "medallist" "Funa"
[28739] "Nakayama" "also"
[28741] "Japan" "16"
[28743] "Olympics" "anything"
[28745] "possible" "Classification"
[28747] "Language" "ENGLISH"
[28749] "Publication-Type" "Newspaper"
[28751] "Body" "Expectations"
[28753] "sky-high" "men's"
[28755] "women's" "teams"
[28757] "final" "whistle"
[28759] "blew" "India"
[28761] "versus" "Great"
[28763] "Britain" "bronze"
[28765] "medal" "playoff"
[28767] "match" "Tokyo"
[28769] "Olympic" "Games"
[28771] "Friday" "likes"
[28773] "Rani" "Rampal"
[28775] "Savita" "Punia"
[28777] "slumped" "ground"
[28779] "tears" "lost"
[28781] "match" "4-3"
[28783] "ended" "dream"
[28785] "winning" "medal"
[28787] "first" "time"
[28789] "women's" "hockey"
[28791] "feel" "disheartened"
[28793] "defeat" "though"
[28795] "nerves" "calm"
[28797] "realise" "achieved"
[28799] "Tokyo" "beyond"
[28801] "anybody's" "imagination"
[28803] "team" "rank"
[28805] "outsiders" "stunned"
[28807] "world" "playing"
[28809] "bronze" "playoff"
[28811] "fought" "valiantly"
[28813] "sent" "message"
[28815] "rival" "teams"
[28817] "Henceforth" "ignore"
[28819] "us" "peril"
[28821] "Friday" "even"
[28823] "0-2" "came"
[28825] "back" "strongly"
[28827] "score" "three"
[28829] "goals" "Gurjit"
[28831] "Kaur" "25th"
[28833] "26th" "minutes"
[28835] "Vandana" "Katariya"
[28837] "29th" "Grace"
[28839] "Baldson" "scored"
[28841] "fourth" "goal"
[28843] "penalty" "corner"
[28845] "Indian" "women"
[28847] "gave" "restore"
[28849] "parity" "Unfortunately"
[28851] "day" "Salima"
[28853] "Tete" "Savita"
[28855] "Rani" "Gurjit"
[28857] "Vandana" "made"
[28859] "us" "proud"
[28861] "brilliant" "display"
[28863] "shame" "heartbreaking"
[28865] "defeat" "One"
[28867] "reasons" "success"
[28869] "men's" "women's"
[28871] "teams" "fact"
[28873] "superstar" "prima"
[28875] "donna" "past"
[28877] "seen" "one"
[28879] "two" "players"
[28881] "thinking" "bigger"
[28883] "team" "let"
[28885] "team" "Tokyo"
[28887] "saw" "completely"
[28889] "different" "teams"
[28891] "believed" "teamwork"
[28893] "much" "credit"
[28895] "goes" "two"
[28897] "coaches" "Australian"
[28899] "Graham" "Reid"
[28901] "Dutchman" "Sjoerd"
[28903] "Marijne" "inculcated"
[28905] "team" "bonding"
[28907] "place" "ego"
[28909] "USP" "Tokyo"
[28911] "Now" "teams"
[28913] "caught" "imagination"
[28915] "country" "players"
[28917] "get" "lot"
[28919] "attention" "wherever"
[28921] "go" "accolades"
[28923] "constant" "media"
[28925] "attention" "may"
[28927] "make" "believe"
[28929] "larger" "life"
[28931] "interesting" "see"
[28933] "Reid" "Marijne's"
[28935] "successor" "announced"
[28937] "Friday's" "match"
[28939] "last" "deal"
[28941] "situation" "Tokyo"
[28943] "happy" "hunting"
[28945] "ground" "Indian"
[28947] "hockey" "1964"
[28949] "got" "back"
[28951] "gold" "lost"
[28953] "Rome" "Olympics"
[28955] "beating" "Pakistan"
[28957] "2021" "41"
[28959] "years" "since"
[28961] "Moscow" "triumph"
[28963] "men" "won"
[28965] "Olympic" "medal"
[28967] "city" "women"
[28969] "finished" "fourth"
[28971] "women's" "hockey"
[28973] "India's" "best"
[28975] "performance" "Olympics"
[28977] "fourth-place" "finish"
[28979] "Moscow" "semi-finals"
[28981] "edition" "six"
[28983] "teams" "competed"
[28985] "round-robin" "format"
[28987] "top" "two"
[28989] "featured" "final"
[28991] "future" "looks"
[28993] "bright" "sport"
[28995] "India" "Commonwealth"
[28997] "Games" "Birmingham"
[28999] "Asian" "Games"
[29001] "Hangzhou" "China"
[29003] "lined" "next"
[29005] "year" "Expectations"
[29007] "sky-high" "resurrection"
[29009] "Tokyo" "Classification"
[29011] "Language" "ENGLISH"
[29013] "Publication-Type" "Newspaper"
[29015] "Body" "action-packed"
[29017] "Saturday" "Indian"
[29019] "team" "Day"
[29021] "2" "Tokyo"
[29023] "Olympics" "hockey"
[29025] "team" "Mirabai"
[29027] "Chanu" "boxer"
[29029] "Vikas" "Krishnan"
[29031] "action" "much-awaited"
[29033] "32nd" "Olympic"
[29035] "Gamescommenced" "Friday"
[29037] "shadow" "COVID-19"
[29039] "pandemic" "However"
[29041] "dream" "start"
[29043] "Indian" "contingent"
[29045] "Tokyo" "Olympics"
[29047] "2020" "ArcherDeepika"
[29049] "Kumari" "ranked"
[29051] "top" "position"
[29053] "world" "rankingsfinished"
[29055] "ninth" "spot"
[29057] "qualifying" "round"
[29059] "Meanwhile" "action-packed"
[29061] "Saturday" "Indian"
[29063] "Olympics" "team"
[29065] "Day" "2"
[29067] "theTokyo" "Olympics"
[29069] "2020" "hockey"
[29071] "team" "weightlifter"
[29073] "Mirabai" "Chanu"
[29075] "boxer" "Vikas"
[29077] "Krishnan" "shuttler"
[29079] "Sai" "Praneeth"
[29081] "Shooter" "Apurvi"
[29083] "Chandela" "action"
[29085] "Manika" "Batra"
[29087] "India's" "table"
[29089] "tennis" "star"
[29091] "also" "play"
[29093] "first" "match"
[29095] "Saturday" "look"
[29097] "schedule" "Indian"
[29099] "athletes" "Day"
[29101] "2" "Tokyo"
[29103] "Olympics" "2020"
[29105] "Mixed" "Team"
[29107] "Eliminations" "Atanu"
[29109] "Das" "Deepika"
[29111] "Kumari" "-6"
[29113] "00" "Men's"
[29115] "Doubles" "Group"
[29117] "Stage" "Group"
[29119] "Satwiksairaj" "Rankireddy"
[29121] "Chirag" "Shetty"
[29123] "vs" "Lee"
[29125] "Yang" "Wang"
[29127] "Chi-Lin" "-8"
[29129] "50" "Men's"
[29131] "Singles" "Group"
[29133] "Stage" "Group"
[29135] "D" "Sai"
[29137] "Praneeth" "vs"
[29139] "Zilberman" "Misha"
[29141] "-9" "30"
[29143] "Women's" "Welterweight"
[29145] "Round" "32"
[29147] "Lovlina" "Borgohain"
[29149] "-8" "00"
[29151] "Men's" "Welterweight"
[29153] "Round" "32"
[29155] "Vikas" "Krishan"
[29157] "-9" "54"
[29159] "Men's" "Pool"
[29161] "India" "vs"
[29163] "New" "Zealand"
[29165] "-6" "30"
[29167] "Women's" "Pool"
[29169] "India" "vs"
[29171] "Netherlands" "-5"
[29173] "15" "PM"
[29175] "Women's" "-48kg"
[29177] "Elimination" "Round"
[29179] "32" "Sushila"
[29181] "Devi" "7"
[29183] "30" "Men's"
[29185] "lightweight" "double"
[29187] "sculls" "Heats"
[29189] "Arjun" "Lal"
[29191] "Arvind" "Singh"
[29193] "7" "50"
[29195] "Women's" "10m"
[29197] "Air" "Rifle"
[29199] "Qualification" "Elavenil"
[29201] "Valarivan" "Apurvi"
[29203] "Chandela" "5"
[29205] "00" "Women's"
[29207] "10m" "Air"
[29209] "Rifle" "Final"
[29211] "Elavenil" "Valarivan"
[29213] "Apurvi" "Chandela"
[29215] "qualify" "7"
[29217] "15" "Men's"
[29219] "10m" "Air"
[29221] "Pistol" "Qualification"
[29223] "Saurabh" "Chaudhary"
[29225] "Abhishek" "Verma"
[29227] "9" "30"
[29229] "Men's" "10m"
[29231] "Air" "Pistol"
[29233] "Final" "Saurabh"
[29235] "Chaudhary" "Abhishek"
[29237] "Verma" "qualify"
[29239] "12" "00"
[29241] "PM" "Men's"
[29243] "Women's" "Singles"
[29245] "Round" "1"
[29247] "G" "Sathiyan"
[29249] "Sharath" "Kamal"
[29251] "Manika" "Batra"
[29253] "Sutirtha" "Mukherjee"
[29255] "-5" "30"
[29257] "Mixed" "Doubles"
[29259] "Round" "16"
[29261] "Sharath" "Kamal"
[29263] "Manika" "Batra"
[29265] "-7" "45"
[29267] "Women's" "Doubles"
[29269] "Sania" "Mirza"
[29271] "Ankita" "RainaSumit"
[29273] "Nagal" "Men's"
[29275] "Singles" "Women's"
[29277] "49kg" "Medal"
[29279] "Round" "Mirabai"
[29281] "Chanu" "-10"
[29283] "20" "Classification"
[29285] "Language" "ENGLISH"
[29287] "Publication-Type" "Newspaper"
[29289] "Body" "India"
[29291] "scripted" "history"
[29293] "athlete" "Neeraj"
[29295] "Chopra's" "win"
[29297] "Tokyo" "Olympics"
[29299] "2020" "23-year-old"
[29301] "won" "Men's"
[29303] "Javelin" "Gold"
[29305] "medal" "heart"
[29307] "every" "Indian"
[29309] "brimming" "pride"
[29311] "took" "social"
[29313] "media" "congratulate"
[29315] "athlete" "Smriti"
[29317] "Irani" "Union"
[29319] "Cabinet" "Minister"
[29321] "Textiles" "Women"
[29323] "Child" "Development"
[29325] "also" "shared"
[29327] "special" "message"
[29329] "golden" "boy"
[29331] "Neeraj" "Chopra"
[29333] "social" "media"
[29335] "Smriti" "Irani"
[29337] "shared" "Neeraj"
[29339] "Chopra's" "video"
[29341] "showcases" "87.58m"
[29343] "javelin" "throw"
[29345] "gave" "India"
[29347] "historic" "Gold"
[29349] "medal" "Nation"
[29351] "proudly" "celebrates"
[29353] "Olympic" "Gold"
[29355] "Medalist" "Subedar"
[29357] "@neeraj____chopra" "Confident"
[29359] "diligent" "symbolises"
[29361] "New" "India"
[29363] "victory" "surely"
[29365] "fire" "many"
[29367] "ambition" "Indian"
[29369] "athletics" "Congratulations"
[29371] "well" "done"
[29373] "sic" "Smriti"
[29375] "Irani" "wrote"
[29377] "sharing" "video"
[29379] "Neeraj" "Chopra"
[29381] "became" "second"
[29383] "Indian" "Abhinav"
[29385] "Bindra" "win"
[29387] "individual" "Olympic"
[29389] "Gold" "medal"
[29391] "Neeraj" "ended"
[29393] "India's" "121-year"
[29395] "wait" "athletics"
[29397] "medal" "gold"
[29399] "javelin" "final"
[29401] "helped" "fans"
[29403] "media" "Thank"
[29405] "much" "facilities"
[29407] "Neeraj" "Chopra"
[29409] "told" "reporters"
[29411] "Olympic" "win"
[29413] "ALSO" "READ"
[29415] "|" "ALSO"
[29417] "READ" "|"
[29419] "Graphic" "Smriti"
[29421] "Irani" "celebrates"
[29423] "Neeraj" "Chopra's"
[29425] "Olympics" "win"
[29427] "says" "symbolises"
[29429] "new" "India"
[29431] "Classification" "Language"
[29433] "ENGLISH" "Publication-Type"
[29435] "Web" "Publication"
[29437] "Body" "India's"
[29439] "Neeraj" "Chopra"
[29441] "became" "second"
[29443] "individual" "Indian"
[29445] "athlete" "Abhinav"
[29447] "Bindra" "crowned"
[29449] "Olympic" "champion"
[29451] "won" "gold"
[29453] "men's" "javelin"
[29455] "throw" "Tokyo"
[29457] "Olympics" "Saturday"
[29459] "gold" "medal"
[29461] "also" "India's"
[29463] "first" "Olympic"
[29465] "medal" "track-and-field"
[29467] "events" "took"
[29469] "India's" "medal"
[29471] "count" "Tokyo"
[29473] "2020" "seven"
[29475] "best-ever" "haul"
[29477] "single" "Olympics"
[29479] "India" "won"
[29481] "six" "medals"
[29483] "London" "2012"
[29485] "gold" "medals"
[29487] "Soon" "creating"
[29489] "history" "Tokyo"
[29491] "Neeraj" "won"
[29493] "hearts" "millions"
[29495] "fans" "dedicated"
[29497] "gold" "medal"
[29499] "late" "Milkha"
[29501] "Singh" "legendary"
[29503] "Indian" "sprinter"
[29505] "passed" "away"
[29507] "June" "2021"
[29509] "dedicate" "medal"
[29511] "Milkha" "Singh"
[29513] "hope" "watching"
[29515] "upon" "wherever"
[29517] "said" "Milkha"
[29519] "come" "close"
[29521] "winning" "medal"
[29523] "track" "field"
[29525] "events" "fell"
[29527] "short" "finished"
[29529] "4th" "1960"
[29531] "Rome" "Olympics"
[29533] "happy" "Abhinav"
[29535] "Bindra" "won"
[29537] "India" "country"
[29539] "Olympic" "gold"
[29541] "priority" "can"
[29543] "break" "national"
[29545] "record" "later"
[29547] "also" "working"
[29549] "hard" "Chopra"
[29551] "said" "day"
[29553] "84th" "birthday"
[29555] "back" "2013"
[29557] "Flying" "Sikh"
[29559] "expressed" "one-long"
[29561] "lasting" "wish"
[29563] "dream" "watch"
[29565] "Indian" "athlete"
[29567] "win" "elusive"
[29569] "medal" "athletics"
[29571] "Olympic" "Games"
[29573] "set" "national"
[29575] "record" "400m"
[29577] "Rome" "Olympics"
[29579] "stood" "almost"
[29581] "40" "years"
[29583] "won" "four"
[29585] "Asian" "Games"
[29587] "gold" "medals"
[29589] "Indian" "athlete"
[29591] "win" "individual"
[29593] "athletics" "gold"
[29595] "medal" "Commonwealth"
[29597] "Games" "Krishna"
[29599] "Poonia" "won"
[29601] "discus" "throw"
[29603] "2010" "Commonwealth"
[29605] "Games" "Neeraj"
[29607] "Chopra's" "historic"
[29609] "feat" "ensured"
[29611] "India" "ended"
[29613] "Tokyo" "Olympics"
[29615] "golden" "note"
[29617] "men's" "javelin"
[29619] "last" "event"
[29621] "Indian" "contingent"
[29623] "Summer" "Games"
[29625] "Classification" "Language"
[29627] "ENGLISH" "Publication-Type"
[29629] "Newspaper" "Body"
[29631] "Shivraj" "Singh"
[29633] "Chouhan-led" "government"
[29635] "Madhya" "Pradesh"
[29637] "Thursday" "announced"
[29639] "Rs" "1"
[29641] "crore" "awards"
[29643] "Nilakanta" "Sharma"
[29645] "Vivek" "Sagar"
[29647] "Tokyo" "Olympics"
[29649] "Indian" "men's"
[29651] "defeating" "Germany"
[29653] "5-4" "nail-biting"
[29655] "match" "winning"
[29657] "bronze" "medal"
[29659] "Tokyo" "Olympics"
[29661] "Thursday" "hockey"
[29663] "player" "Vivek"
[29665] "Sagar" "Itarsi"
[29667] "Madhya" "Pradesh"
[29669] "teammate" "Chief"
[29671] "Minister" "Shivraj"
[29673] "Singh" "Chouhan"
[29675] "announced" "Rs"
[29677] "1" "crore"
[29679] "awards" "via"
[29681] "Twitter" "Thursday"
[29683] "wrote" "Indian"
[29685] "men's" "hockey"
[29687] "team" "defeated"
[29689] "one" "best"
[29691] "teams" "Tokyo"
[29693] "2020" "Vivek"
[29695] "Sagar" "Itarsi"
[29697] "part" "team"
[29699] "Nilakanta" "Sharma"
[29701] "trained" "Madhya"
[29703] "Pradesh" "Hockey"
[29705] "Academy" "Madhya"
[29707] "Pradesh" "government"
[29709] "provide" "honour"
[29711] "fund" "one"
[29713] "crore" "rupees"
[29715] "two" "players"
[29717] "Shivraj" "Singh"
[29719] "Chouhan" "@ChouhanShivraj"
[29721] "ALSO" "READ"
[29723] "ALSO" "READ"
[29725] "Graphic" "MP"
[29727] "govt" "announces"
[29729] "Rs" "1"
[29731] "crore" "award"
[29733] "2" "players"
[29735] "men's" "hockey"
[29737] "team" "Olympics"
[29739] "bronze" "Classification"
[29741] "Language" "ENGLISH"
[29743] "Publication-Type" "Web"
[29745] "Publication" "Body"
[29747] "India's" "boxing"
[29749] "champion" "Mary"
[29751] "Kom" "Day"
[29753] "6" "lost"
[29755] "chance" "bag"
[29757] "second" "Olympic"
[29759] "medal" "pre-quarters"
[29761] "Tokyo" "Olympics"
[29763] "Thursday" "London"
[29765] "Olympics" "bronze"
[29767] "medalist" "lost"
[29769] "3rd" "seed"
[29771] "Ingrit" "Valencia"
[29773] "Colombia" "via"
[29775] "split" "decision"
[29777] "closely-contest" "Round"
[29779] "16" "match"
[29781] "Women's" "Flyweight"
[29783] "category" "Valencia"
[29785] "won" "bout"
[29787] "3-2" "Valencia"
[29789] "advanced" "quarter-finals"
[29791] "showpiece" "event"
[29793] "defeating" "Mary"
[29795] "Kom" "women's"
[29797] "flyweight" "48-51kg"
[29799] "category" "event"
[29801] "Valencia" "got"
[29803] "flyer" "won"
[29805] "first" "round"
[29807] "Four" "five"
[29809] "judges" "gave"
[29811] "10" "one"
[29813] "9" "showing"
[29815] "Mary" "Kom"
[29817] "earlier" "week"
[29819] "came" "dominant"
[29821] "display" "boxing"
[29823] "opening" "round"
[29825] "Sunday" "defeated"
[29827] "Dominican" "Republic's"
[29829] "Miguelina" "Hernandez"
[29831] "Garcia" "4-1"
[29833] "Mary" "displayed"
[29835] "experience" "skilss"
[29837] "coming" "tactical"
[29839] "masterclass" "Migueline"
[29841] "15" "years"
[29843] "junior" "Starting"
[29845] "cautious" "note"
[29847] "38-year-old" "swayed"
[29849] "away" "punches"
[29851] "gauging" "opponent"
[29853] "Pan" "American"
[29855] "Games" "bronze-medallist"
[29857] "It'll" "shame"
[29859] "actor" "another"
[29861] "ethnicity" "plays"
[29863] "Mirabai" "Chanu"
[29865] "biopic" "says"
[29867] "Mary" "Kom"
[29869] "actress" "Lin"
[29871] "Laishram" "Mary"
[29873] "Kom" "put"
[29875] "behind" "disappointment"
[29877] "missing" "Rio"
[29879] "Olympics" "qualification"
[29881] "provided" "done"
[29883] "winning" "world"
[29885] "championships" "gold"
[29887] "medal" "home"
[29889] "fans" "2018"
[29891] "bronze" "followed"
[29893] "2019" "World"
[29895] "Championships" "hand"
[29897] "two-time" "Asian"
[29899] "champion" "Indian"
[29901] "boxer" "Pooja"
[29903] "Rani" "75kg"
[29905] "out-punched" "Algeria's"
[29907] "Ichrak" "Chaib"
[29909] "opening" "bout"
[29911] "enter" "quarterfinals"
[29913] "maiden" "Olympic"
[29915] "Games" "Wednesday"
[29917] "30-year-old" "Indian"
[29919] "clinched" "5-0"
[29921] "thoroughly" "dominating"
[29923] "rival" "10"
[29925] "years" "junior"
[29927] "Haryana-boxer" "command"
[29929] "right" "straights"
[29931] "also" "benefitted"
[29933] "immensely" "Chaib's"
[29935] "lack" "balance"
[29937] "ring" "three"
[29939] "rounds" "story"
[29941] "Rani's" "domination"
[29943] "Chaib" "also"
[29945] "appearing" "maiden"
[29947] "Olympics" "just"
[29949] "figure" "way"
[29951] "connect" "cleanly"
[29953] "Classification" "Language"
[29955] "ENGLISH" "Publication-Type"
[29957] "Newspaper" "Body"
[29959] "New" "Delhi"
[29961] "Aug" "3"
[29963] "Indian" "men's"
[29965] "hockey" "team"
[29967] "today" "defeated"
[29969] "Belgians" "closely"
[29971] "contested" "semi-final"
[29973] "match" "ongoing"
[29975] "Tokyo" "Olympics"
[29977] "Belgium" "defeated"
[29979] "India" "5-2"
[29981] "saw" "Belgium"
[29983] "team" "creating"
[29985] "chances" "penalty"
[29987] "corners" "converting"
[29989] "goals" "Alexander"
[29991] "Hendrickx" "scored"
[29993] "three" "goals"
[29995] "match" "Belgium"
[29997] "helping" "team"
[29999] "qualify" "final"
[30001] "India" "now"
[30003] "play" "bronze"
[30005] "medal" "Tokyo"
[30007] "Olympics" "Belgium"
[30009] "started" "strong"
[30011] "note" "scored"
[30013] "first" "goal"
[30015] "Luypaert" "second"
[30017] "minute" "play"
[30019] "However" "Harmanpreet"
[30021] "Singh" "scored"
[30023] "first" "goal"
[30025] "India" "also"
[30027] "helped" "equalising"
[30029] "scoreline" "India"
[30031] "took" "lead"
[30033] "scoring" "second"
[30035] "goal" "scored"
[30037] "Mandeep" "Belgium"
[30039] "scored" "equaliser"
[30041] "penalty" "corner"
[30043] "scored" "Hendrickx"
[30045] "Belgium" "broke"
[30047] "deadlock" "fourth"
[30049] "quarter" "top"
[30051] "scorer" "Hendrickx"
[30053] "scored" "two"
[30055] "goals" "taking"
[30057] "tally" "13"
[30059] "goals" "tournament"
[30061] "Earlier" "Prime"
[30063] "Minister" "Narendra"
[30065] "Modi" "tweeted"
[30067] "watching" "India"
[30069] "vs" "Belgium"
[30071] "Hockey" "Men's"
[30073] "Semi" "Final"
[30075] "#Tokyo2020" "Proud"
[30077] "team" "skills"
[30079] "Wishing" "best"
[30081] "watching" "India"
[30083] "vs" "Belgium"
[30085] "Hockey" "Men's"
[30087] "Semi" "Final"
[30089] "#Tokyo2020" "Proud"
[30091] "team" "skills"
[30093] "Wishing" "best"
[30095] "Narendra" "Modi"
[30097] "@narendramodi" "August"
[30099] "3" "2021"
[30101] "Published" "HT"
[30103] "Digital" "Content"
[30105] "Services" "permission"
[30107] "MINT" "query"
[30109] "respect" "article"
[30111] "content" "requirement"
[30113] "please" "contact"
[30115] "Editor" "Classification"
[30117] "Language" "ENGLISH"
[30119] "Publication-Type" "Newspaper"
[30121] "Body" "Anu"
[30123] "Malik" "booked"
[30125] "spot" "Twitter"
[30127] "trends" "list"
[30129] "Monday" "Israel"
[30131] "won" "first"
[30133] "gold" "medal"
[30135] "ongoing" "Tokyo"
[30137] "Olympics" "2020"
[30139] "may" "ask"
[30141] "Well" "Israeli"
[30143] "gymnast" "Artem"
[30145] "Dolgopyat" "won"
[30147] "Israel's" "first-ever"
[30149] "Olympic" "medal"
[30151] "artistic" "gymnastics"
[30153] "ritual" "country's"
[30155] "flag" "raised"
[30157] "national" "anthem"
[30159] "Hatikvah" "played"
[30161] "However" "desi"
[30163] "Twitter" "field"
[30165] "day" "making"
[30167] "memes" "cracking"
[30169] "hilarious" "jokes"
[30171] "realised" "Anu"
[30173] "Malik-composed" "song"
[30175] "Mera" "Mulk"
[30177] "Mera" "Desh"
[30179] "film" "Diljale"
[30181] "actually" "copied"
[30183] "Israel's" "national"
[30185] "anthem" "Hatikvah"
[30187] "believe" "us"
[30189] "Well" "watch"
[30191] "video" "actually"
[30193] "copied" "Israeli"
[30195] "National" "Anthem"
[30197] "Mera" "Mulk"
[30199] "Mera" "Desh"
[30201] "Song" "1996"
[30203] "maadalaadlahere" "@maadalaadlahere"
[30205] "FILM" "Diljale"
[30207] "released" "1996"
[30209] "starred" "Ajay"
[30211] "Devgn" "Madhoo"
[30213] "Sonali" "Bendre"
[30215] "lead" "roles"
[30217] "Directed" "Harry"
[30219] "Baweja" "Ajay"
[30221] "played" "role"
[30223] "terrorist" "film"
[30225] "Sonali" "played"
[30227] "love" "interest"
[30229] "film" "also"
[30231] "featured" "Parmeet"
[30233] "Sethi" "Shakti"
[30235] "Kapoor" "Gulshan"
[30237] "Grover" "Amrish"
[30239] "Puri" "supporting"
[30241] "roles" "film"
[30243] "garnered" "positive"
[30245] "reviews" "release"
[30247] "SONG" "MERA"
[30249] "MULK" "MERA"
[30251] "DESH" "Anu"
[30253] "Malik" "music"
[30255] "composer" "Diljale"
[30257] "film" "eight"
[30259] "tracks" "music"
[30261] "huge" "hit"
[30263] "people" "song"
[30265] "Mera" "Mulk"
[30267] "Mera" "Desh"
[30269] "appears" "several"
[30271] "occasions" "film"
[30273] "Watch" "song"
[30275] "Diljale" "Anu"
[30277] "Malik" "became"
[30279] "fodder" "hilarious"
[30281] "memes" "jokes"
[30283] "netizens" "realised"
[30285] "song" "Mera"
[30287] "Mulk" "Mera"
[30289] "Desh" "actually"
[30291] "copied" "Israel's"
[30293] "national" "anthem"
[30295] "Several" "Twitter"
[30297] "users" "called"
[30299] "music" "composer"
[30301] "blatantly" "copying"
[30303] "country's" "national"
[30305] "anthem" "Check"
[30307] "hilarious" "comments"
[30309] "Fans" "came"
[30311] "Know" "Song"
[30313] "Movie" "Diljale"
[30315] "Mera" "Mulk"
[30317] "Mera" "Des"
[30319] "Composed" "Anu"
[30321] "Malik" "Inspired"
[30323] "Israel's" "National"
[30325] "Anthem" "Fans"
[30327] "Tadkamarkey" "2.0"
[30329] "@AnilPil63050188" "Indians"
[30331] "hearing" "national"
[30333] "anthem" "Laluwitharana"
[30335] "#Tokyo2020" "@laluwitharana"
[30337] "Israel" "won"
[30339] "second" "ever"
[30341] "Gold" "Olympics"
[30343] "Indians" "ended"
[30345] "remembering" "Anu"
[30347] "Malik" "Mohit"
[30349] "Dogra" "@Dmohit36Dogra"
[30351] "hilarious" "wondering"
[30353] "trending" "realized"
[30355] "even" "leave"
[30357] "Israel's" "national"
[30359] "anthem" "copy"
[30361] "king" "Thinking"
[30363] "Hat" "@ThinkinHashtag"
[30365] "total" "193"
[30367] "countries" "world"
[30369] "Anu" "Malik"
[30371] "still" "chance"
[30373] "make" "another"
[30375] "192" "songs"
[30377] "Biduuu" "@Jackiebidu"
[30379] "Even" "Wikipedia"
[30381] "knows" "Puneet"
[30383] "Narang" "@DearPunit"
[30385] "first" "time"
[30387] "Anu" "Malik"
[30389] "called" "plagiarism"
[30391] "music" "composer"
[30393] "headlines" "several"
[30395] "occasions" "blatantly"
[30397] "copying" "famous"
[30399] "songs" "Egypt"
[30401] "UK" "Spain"
[30403] "Italy" "ALSO"
[30405] "READ" "|"
[30407] "ALSO" "READ"
[30409] "|" "Graphic"
[30411] "Anu" "Malik"
[30413] "trends" "Twitter"
[30415] "Israel" "wins"
[30417] "gold" "Tokyo"
[30419] "Olympics" "Classification"
[30421] "Language" "ENGLISH"
[30423] "Publication-Type" "Web"
[30425] "Publication" "Body"
[30427] "Tokyo" "August"
[30429] "6" "eyes"
[30431] "Neeraj" "Chopra"
[30433] "deliver" "India's"
[30435] "elusive" "Olympic"
[30437] "medal" "athletics"
[30439] "end" "wait"
[30441] "100" "years"
[30443] "competes" "men's"
[30445] "javelin" "throw"
[30447] "final" "Saturday"
[30449] "pre-tournament" "medal"
[30451] "contender" "23-year-old"
[30453] "Chopra" "fuelled"
[30455] "country's" "expectations"
[30457] "topping" "qualification"
[30459] "round" "stunning"
[30461] "first" "round"
[30463] "throw" "86.59m"
[30465] "Three" "track"
[30467] "field" "athletes"
[30469] "part" "five-member"
[30471] "Indian" "team"
[30473] "1920" "Olympics"
[30475] "Antwerp" "Belgium"
[30477] "two" "wrestlers"
[30479] "Since" "Indian"
[30481] "won" "medal"
[30483] "athletics" "International"
[30485] "Olympic" "Committee"
[30487] "still" "credits"
[30489] "Norman" "Pritchard's"
[30491] "200m" "200m"
[30493] "hurdles" "silver"
[30495] "medals" "1900"
[30497] "Paris" "Olympics"
[30499] "India" "though"
[30501] "various" "research"
[30503] "including" "records"
[30505] "IAAF" "now"
[30507] "World" "Athletics"
[30509] "showed" "competed"
[30511] "Great" "Britain"
[30513] "farmer's" "son"
[30515] "Khandra" "village"
[30517] "near" "Panipat"
[30519] "Haryana" "took"
[30521] "athletics" "shed"
[30523] "flab" "Chopra"
[30525] "can" "script"
[30527] "history" "winning"
[30529] "elusive" "medal"
[30531] "likes" "late"
[30533] "Milkha" "Singh"
[30535] "P" "T"
[30537] "Usha" "let"
[30539] "slip" "grasp"
[30541] "1964" "1984"
[30543] "editions" "first"
[30545] "Olympic" "Games"
[30547] "feel" "good"
[30549] "warm-up" "performance"
[30551] "good" "qualifying"
[30553] "round" "first"
[30555] "throw" "good"
[30557] "angle" "perfect"
[30559] "throw" "Chopra"
[30561] "said" "qualifying"
[30563] "round" "Wednesday"
[30565] "need" "focus"
[30567] "throw" "try"
[30569] "repeat" "performance"
[30571] "higher" "score"
[30573] "said" "youngster"
[30575] "came" "Olympics"
[30577] "fourth" "best"
[30579] "throw" "88.07m"
[30581] "year" "Chopra's"
[30583] "performance" "Saturday"
[30585] "one" "best"
[30587] "performances" "Indian"
[30589] "Olympics" "finished"
[30591] "ahead" "gold"
[30593] "medal" "favourite"
[30595] "2017" "world"
[30597] "champion" "Johannes"
[30599] "Vetter" "Germany"
[30601] "Vetter" "earlier"
[30603] "said" "Chopra"
[30605] "find" "tough"
[30607] "beat" "Olympics"
[30609] "struggled" "first"
[30611] "two" "throws"
[30613] "crossing" "automatic"
[30615] "qualification" "mark"
[30617] "85.64m" "final"
[30619] "throw" "28-year-old"
[30621] "towering" "German"
[30623] "came" "Olympics"
[30625] "seven" "monster"
[30627] "throws" "90m"
[30629] "April" "June"
[30631] "lying" "dangerous"
[30633] "seventh" "position"
[30635] "first" "two"
[30637] "throws" "eventually"
[30639] "qualified" "final"
[30641] "second" "overall"
[30643] "behind" "Chopra"
[30645] "Ask" "top"
[30647] "athletes" "say"
[30649] "counts" "performance"
[30651] "day" "Chopra"
[30653] "come" "Saturday's"
[30655] "final" "host"
[30657] "pre-tournament" "medal"
[30659] "hopefuls" "falling"
[30661] "first" "hurdle"
[30663] "Season's" "second"
[30665] "top" "performer"
[30667] "Marcin" "Krukowski"
[30669] "PB" "SB"
[30671] "89.55m" "Poland"
[30673] "2012" "Olympics"
[30675] "champion" "2016"
[30677] "Rio" "Games"
[30679] "bronze-medallist" "Trinidad"
[30681] "Tobago's" "Keshorn"
[30683] "Walcott" "PB"
[30685] "90.16m" "SB"
[30687] "89.12m" "failed"
[30689] "qualify" "final"
[30691] "best" "throws"
[30693] "74.65m" "79.33m"
[30695] "respectively" "Latvia's"
[30697] "2014" "under-20"
[30699] "World" "champion"
[30701] "Gatis" "Cakss"
[30703] "PB" "SB"
[30705] "87.57m" "fifth"
[30707] "best" "performer"
[30709] "season" "reigning"
[30711] "world" "champion"
[30713] "Anderson" "Peters"
[30715] "Grenada" "poor"
[30717] "throws" "78.73m"
[30719] "80.42m" "respectively"
[30721] "fail" "make"
[30723] "final" "cut"
[30725] "Chopra" "Vetter"
[30727] "remain" "among"
[30729] "top-five" "performers"
[30731] "season" "Pakistan's"
[30733] "Arshad" "Nadeem"
[30735] "won" "bronze"
[30737] "medal" "Chopra"
[30739] "clinched" "gold"
[30741] "2018" "Asian"
[30743] "Games" "Indonesia"
[30745] "topped" "Group"
[30747] "B" "earn"
[30749] "automatic" "qualification"
[30751] "finals" "second"
[30753] "round" "throw"
[30755] "85.16m" "qualified"
[30757] "finals" "overall"
[30759] "third" "behind"
[30761] "Chopra" "Vetter"
[30763] "Indian" "camp"
[30765] "hoping" "Saturday"
[30767] "turn" "finest"
[30769] "day" "Indian"
[30771] "athletics" "always"
[30773] "wanted" "Olympic"
[30775] "medal" "since"
[30777] "first" "became"
[30779] "AFI" "president"
[30781] "2012" "hoping"
[30783] "dream" "realised"
[30785] "end" "term"
[30787] "Athletics" "Federation"
[30789] "India" "President"
[30791] "Adille" "Sumariwalla"
[30793] "told" "PTI"
[30795] "Sumariwalla's" "third"
[30797] "term" "AFI"
[30799] "president" "end"
[30801] "2024" "re-elected"
[30803] "National" "Sports"
[30805] "Code" "Sumariwalla"
[30807] "Klaus" "Bartonietz"
[30809] "bio-mechanics" "expert"
[30811] "charge" "Chopra"
[30813] "chief" "national"
[30815] "coach" "Radhakrishnan"
[30817] "Nair" "seen"
[30819] "cheering" "Chopra"
[30821] "almost" "empty"
[30823] "stands" "Saturday"
[30825] "Saturday" "Indian"
[30827] "athletics" "contingent"
[30829] "expected" "full"
[30831] "strength" "Olympic"
[30833] "Stadium" "hoping"
[30835] "history" "created"
[30837] "Chopra" "Neeraj"
[30839] "Chopra" "final"
[30841] "men's" "javelin"
[30843] "throw" "time"
[30845] "4" "30pm"
[30847] "IST" "Channels"
[30849] "Sony" "Sports"
[30851] "Network" "DD"
[30853] "OTT" "SonyLiv"
[30855] "Classification" "Language"
[30857] "ENGLISH" "Publication-Type"
[30859] "Newspaper" "Body"
[30861] "India" "July"
[30863] "24" "pitch"
[30865] "PR" "Sreejesh"
[30867] "arguably" "animated"
[30869] "character" "Indian"
[30871] "men's" "hockey"
[30873] "team" "different"
[30875] "Saturday" "India"
[30877] "took" "New"
[30879] "Zealand" "Tokyo"
[30881] "Olympics" "opener"
[30883] "Oi" "Hockey"
[30885] "Stadium" "game"
[30887] "entered" "final"
[30889] "quarter" "clock"
[30891] "ticked" "towards"
[30893] "60-minute" "mark"
[30895] "shrieks" "also"
[30897] "rose" "volume"
[30899] "seasoned" "goalkeeper"
[30901] "constantly" "barking"
[30903] "instructions" "teammates"
[30905] "crucial" "moments"
[30907] "India" "led"
[30909] "3-2" "New"
[30911] "Zealand" "pushing"
[30913] "equaliser" "win"
[30915] "kick-off" "India's"
[30917] "Olympic" "campaign"
[30919] "positive" "note"
[30921] "draw" "loss"
[30923] "lower-ranked" "opponent"
[30925] "hinder" "chances"
[30927] "qualifying" "quarter-finals"
[30929] "right" "start"
[30931] "33-year-old" "Sreejesh"
[30933] "now" "three-time"
[30935] "Olympian" "thick"
[30937] "action" "Black"
[30939] "Sticks" "desperately"
[30941] "chasing" "goal"
[30943] "ramping" "attacks"
[30945] "Indian" "goal"
[30947] "Sreejesh" "though"
[30949] "stood" "like"
[30951] "rock" "New"
[30953] "Zealand" "attacks"
[30955] "goal" "last"
[30957] "minutes" "seconds"
[30959] "making" "two"
[30961] "match-winning" "saves"
[30963] "two" "back-to-back"
[30965] "penalty" "corners"
[30967] "ensuring" "India"
[30969] "took" "three"
[30971] "points" "win"
[30973] "Despite" "multiple"
[30975] "saves" "throughout"
[30977] "game-four" "penalty"
[30979] "corners" "last"
[30981] "minutes" "first"
[30983] "quarter" "itself-the"
[30985] "highlight" "Sreejesh's"
[30987] "save" "18"
[30989] "seconds" "hooter"
[30991] "full" "stretch"
[30993] "block" "left"
[30995] "hand" "saved"
[30997] "New" "Zealand's"
[30999] "equaliser" "emphasised"
[31001] "value" "India"
[31003] "goalie" "attaches"
[31005] "Tokyo" "Games"
[31007] "campaign" "look"
[31009] "back" "career"
[31011] "lot" "FIH"
[31013] "medals" "medals"
[31015] "almost" "every"
[31017] "tournament" "one"
[31019] "World" "Cup"
[31021] "Olympics" "Sreejesh"
[31023] "told" "PTI"
[31025] "leaving" "Tokyo"
[31027] "disappointment" "winning"
[31029] "game" "London"
[31031] "2012" "Belgium"
[31033] "ousting" "India"
[31035] "quarter-finals" "Rio"
[31037] "2016" "Sreejesh-who"
[31039] "debuted" "India"
[31041] "2006-has" "centre"
[31043] "previous" "frustrations"
[31045] "heartbreaks" "can"
[31047] "last" "Olympics"
[31049] "can" "achieve"
[31051] "athlete" "can"
[31053] "get" "Olympics"
[31055] "can" "medal"
[31057] "giving" "extra"
[31059] "energy" "helping"
[31061] "us" "wake"
[31063] "bed" "every"
[31065] "morning" "work"
[31067] "hard" "dream"
[31069] "living" "last"
[31071] "15" "years"
[31073] "willing" "next"
[31075] "15" "years"
[31077] "said" "took"
[31079] "helmet" "match"
[31081] "Tokyo" "temperature"
[31083] "soaring" "33"
[31085] "degrees" "Celsius"
[31087] "humid" "day"
[31089] "Sreejesh's" "face"
[31091] "etched" "delight"
[31093] "seasoned" "goalkeeper"
[31095] "proud" "contribution"
[31097] "heroics" "needed"
[31099] "even" "India"
[31101] "face" "mighty"
[31103] "Australia" "second"
[31105] "Pool" "game"
[31107] "Sunday" "Australia"
[31109] "beat" "Japan"
[31111] "5-3" "Saturday"
[31113] "India's" "goals"
[31115] "came" "via"
[31117] "drag-flickers" "Rupinder"
[31119] "Pal" "Singh"
[31121] "10th" "min"
[31123] "Harmanpreet" "Singh"
[31125] "26th" "33rd"
[31127] "Kane" "Russell"
[31129] "6th" "Stephen"
[31131] "Jenness" "43rd"
[31133] "scored" "New"
[31135] "Zealand" "Published"
[31137] "HT" "Digital"
[31139] "Content" "Services"
[31141] "permission" "Hindustan"
[31143] "Times" "query"
[31145] "respect" "article"
[31147] "content" "requirement"
[31149] "please" "contact"
[31151] "Editor" "Classification"
[31153] "Language" "ENGLISH"
[31155] "Publication-Type" "Newswire"
[31157] "Body" "Wrestler"
[31159] "Ravi" "Dahiya"
[31161] "clinched" "silver"
[31163] "medal" "India"
[31165] "beating" "several"
[31167] "opponents" "row"
[31169] "ongoing" "Tokyo"
[31171] "Olympics" "social"
[31173] "media" "video"
[31175] "man" "congratulating"
[31177] "Indian" "wrestler"
[31179] "lifting" "shared"
[31181] "celebration" "Dahiya"
[31183] "coach" "Dahiya's"
[31185] "coach" "celebrated"
[31187] "victory" "#Olympicsindia"
[31189] "#Cheer4India" "#RaviDahiya"
[31191] "Many" "Congratulations"
[31193] "#Wrestling" "#Olympicsindia"
[31195] "#TokyoOlympics2020" "says"
[31197] "caption" "Dahiya's"
[31199] "coach" "celebrated"
[31201] "victory" "Many"
[31203] "Congratulations" "@Sushishere"
[31205] "@Sushishere1" "archived"
[31207] "version" "post"
[31209] "can" "seen"
[31211] "ALSO" "READ"
[31213] "|" "India"
[31215] "Today" "Anti"
[31217] "Fake" "News"
[31219] "War" "Room"
[31221] "AFWA" "found"
[31223] "video" "around"
[31225] "three" "years"
[31227] "old" "shows"
[31229] "wrestler" "Bajrang"
[31231] "Punia's" "coach"
[31233] "Shako" "Bentinidis"
[31235] "congratulating" "victory"
[31237] "semifinal" "World"
[31239] "Wrestling" "Championships"
[31241] "AFWA" "probe"
[31243] "incomplete" "term"
[31245] "pest" "2018"
[31247] "can" "seen"
[31249] "printed" "floor"
[31251] "wrestling" "ring"
[31253] "gave" "us"
[31255] "clue" "video"
[31257] "probably" "2018"
[31259] "pest" "Budapest"
[31261] "Using" "clues"
[31263] "conducted" "keyword"
[31265] "search" "led"
[31267] "us" "semifinal"
[31269] "video" "2018"
[31271] "World" "Wrestling"
[31273] "Championships" "Punia"
[31275] "defeated" "Cuban"
[31277] "wrestler" "Alejandro"
[31279] "Enrique" "Valdes"
[31281] "Tobier" "posted"
[31283] "official" "YouTube"
[31285] "channel" "United"
[31287] "World" "Wrestling"
[31289] "October" "21"
[31291] "2018" "13-second"
[31293] "viral" "portion"
[31295] "can" "seen"
[31297] "7" "40"
[31299] "mark" "comparison"
[31301] "visuals" "viral"
[31303] "video" "original"
[31305] "clipping" "can"
[31307] "seen" "Punia's"
[31309] "coach" "Bentinidis"
[31311] "also" "posted"
[31313] "stills" "viral"
[31315] "video" "Instagram"
[31317] "October" "2018"
[31319] "per" "official"
[31321] "website" "World"
[31323] "Wrestling" "Championships"
[31325] "held" "Budapest"
[31327] "Hungary" "October"
[31329] "20-28" "2018"
[31331] "Punia's" "victory"
[31333] "semifinal" "championship"
[31335] "media" "ALSO"
[31337] "READ" "|"
[31339] "Punia" "freestyle"
[31341] "wrestler" "Haryana"
[31343] "bagged" "bronze"
[31345] "medal" "ongoing"
[31347] "Tokyo" "Olympics"
[31349] "Georgia" "Ravi"
[31351] "Dahiya" "hand"
[31353] "also" "freestyle"
[31355] "wrestler" "Haryana"
[31357] "won" "silver"
[31359] "medal" "Tokyo"
[31361] "Olympics" "57kg"
[31363] "category" "Dahiya's"
[31365] "coach" "2015"
[31367] "Padma" "Bhushan"
[31369] "awardee" "posted"
[31371] "several" "pictures"
[31373] "coaches" "respective"
[31375] "Instagram" "accounts"
[31377] "compared" "two"
[31379] "pictures" "still"
[31381] "image" "coach"
[31383] "viral" "video"
[31385] "quite" "clear"
[31387] "comparison" "coach"
[31389] "viral" "video"
[31391] "Bentinidis" "Evidently"
[31393] "video" "Punia's"
[31395] "victory" "semis"
[31397] "2018" "World"
[31399] "Wrestling" "Championships"
[31401] "falsely" "linked"
[31403] "one" "Dahiya's"
[31405] "recent" "winning"
[31407] "bouts" "Olympics"
[31409] "Graphic" "Fact"
[31411] "Check" "amusing"
[31413] "video" "show"
[31415] "Ravi" "Dahiya's"
[31417] "coach" "flinging"
[31419] "Olympics" "victory"
[31421] "Classification" "Language"
[31423] "ENGLISH" "Publication-Type"
[31425] "Web" "Publication"
[31427] "Body" "Indian"
[31429] "Women's" "hockey"
[31431] "team" "reach"
[31433] "quarter-finals" "nail-biting"
[31435] "win" "South"
[31437] "Africa" "Pooja"
[31439] "Rani" "knocked"
[31441] "mixed" "day"
[31443] "Indian" "contingent"
[31445] "Tokyo" "Olympics"
[31447] "2020" "shuttlerPV"
[31449] "Sindhu" "boxerAmit"
[31451] "Pangal" "archer"
[31453] "Atanu" "Das"
[31455] "bid" "goodbye"
[31457] "Games" "discus"
[31459] "throwerKamalpreet" "Kaur"
[31461] "produced" "one"
[31463] "best" "performances"
[31465] "advance" "finals"
[31467] "Olympics" "Indian"
[31469] "Women's" "hockey"
[31471] "team" "also"
[31473] "overcame" "stiff"
[31475] "South" "African"
[31477] "challenge" "prevail"
[31479] "4-3" "closely"
[31481] "fought" "encounter"
[31483] "riding" "Vandana"
[31485] "Katariya's" "historic"
[31487] "hat-trick" "However"
[31489] "team's" "quarter-finals"
[31491] "hope" "still"
[31493] "hinged" "Ireland"
[31495] "vs" "Great"
[31497] "Britain's" "match"
[31499] "Great" "Britain's"
[31501] "victory" "Irish"
[31503] "ensured" "India"
[31505] "finished" "fourth"
[31507] "place" "team"
[31509] "Pool" "qualified"
[31511] "knock-outs" "India's"
[31513] "archery" "campaign"
[31515] "Olympics" "ended"
[31517] "without" "medal"
[31519] "Atanu" "Das"
[31521] "lost" "home"
[31523] "favourite" "Takaharu"
[31525] "Furukawa" "6-4"
[31527] "intense" "five-setter"
[31529] "men's" "individual"
[31531] "pre-quarterfinals" "Saturday"
[31533] "Das" "failed"
[31535] "find" "10"
[31537] "fifth" "set"
[31539] "slipped" "red-circle"
[31541] "8" "proved"
[31543] "costly" "Furukawa"
[31545] "sealed" "issue"
[31547] "one" "point"
[31549] "margin" "decider"
[31551] "Das" "lone"
[31553] "archer" "fray"
[31555] "world" "number"
[31557] "one" "wife"
[31559] "Deepika" "Kumari"
[31561] "succumbed" "0-6"
[31563] "rout" "eventual"
[31565] "gold" "medallist"
[31567] "San" "Korea"
[31569] "Friday" "Indian"
[31571] "boxer" "Amit"
[31573] "Panghal" "52kg"
[31575] "bowed" "Olympics"
[31577] "stunning" "1-4"
[31579] "loss" "Rio"
[31581] "Games" "silver-medallist"
[31583] "Yuberjen" "Martinez"
[31585] "beaten" "Colombian's"
[31587] "relentless" "attacks"
[31589] "pace" "pre-quarterfinals"
[31591] "Despite" "loss"
[31593] "25-year-old" "Panghal"
[31595] "remains" "one"
[31597] "best-performing" "Indian"
[31599] "boxers" "recent"
[31601] "times" "secured"
[31603] "gold" "medal"
[31605] "2018" "Asian"
[31607] "Games" "followed"
[31609] "unparalleled" "silver"
[31611] "medal" "world"
[31613] "championships" "2019"
[31615] "Women" "boxer"
[31617] "Pooja" "Rani"
[31619] "also" "beaten"
[31621] "China's" "Li"
[31623] "Qian" "5-0"
[31625] "day" "started"
[31627] "negative" "note"
[31629] "soon" "turned"
[31631] "positive" "Indian"
[31633] "Women's" "hockey"
[31635] "team" "took"
[31637] "field" "Rani"
[31639] "Rampal-led" "side"
[31641] "put" "dazzling"
[31643] "attacking" "display"
[31645] "slacky" "defending"
[31647] "allowed" "theSouth"
[31649] "African" "side"
[31651] "levelthrice" "game"
[31653] "beforeNeha" "Goyal's"
[31655] "goal" "ensured"
[31657] "win" "Indians"
[31659] "Athletics" "discus"
[31661] "thrower" "Kamalpreet"
[31663] "Kaur" "produced"
[31665] "one" "best"
[31667] "performances" "Indian"
[31669] "Olympics" "though"
[31671] "qualifying" "round"
[31673] "made" "finals"
[31675] "ongoing" "Games"
[31677] "finishing" "second"
[31679] "Saturday" "25-year-old"
[31681] "Kaur" "competing"
[31683] "qualification" "B"
[31685] "sent" "discus"
[31687] "distance" "64m"
[31689] "third" "final"
[31691] "attempt" "one"
[31693] "two" "automatic"
[31695] "qualifiers" "final"
[31697] "round" "American"
[31699] "Valarie" "Allman"
[31701] "66.42m" "Indian"
[31703] "ended" "ahead"
[31705] "defending" "gold-medallist"
[31707] "Sandra" "Perkovic"
[31709] "63.75m" "Croatia"
[31711] "reigning" "world"
[31713] "champion" "Yaime"
[31715] "Perez" "63.18"
[31717] "Cuba" "Perkovic"
[31719] "qualified" "third"
[31721] "Perez" "seventh"
[31723] "final" "held"
[31725] "August" "2"
[31727] "Seema" "Punia"
[31729] "another" "discus"
[31731] "thrower" "failed"
[31733] "qualify" "finals"
[31735] "ShootersTejaswini" "Sawant"
[31737] "Anjum" "Moudgil"
[31739] "also" "fell"
[31741] "short" "reaching"
[31743] "finals" "didSreeshankar"
[31745] "Men's" "Long"
[31747] "Jump" "GolferAnirban"
[31749] "Lahiri" "scored"
[31751] "eagle" "need"
[31753] "miracle" "win"
[31755] "medal" "Calcutta"
[31757] "boy" "tied-30"
[31759] "end" "Round"
[31761] "2" "However"
[31763] "biggest" "upset"
[31765] "day" "Indians"
[31767] "came" "PV"
[31769] "Sindhu" "knocked"
[31771] "Women's" "singles"
[31773] "Badminton" "semi-finals"
[31775] "byworld" "1"
[31777] "Tai" "Tzu"
[31779] "Ying" "Chinese"
[31781] "Taipei" "26-year-old"
[31783] "silver-medallist" "Rio"
[31785] "Games" "however"
[31787] "remained" "hunt"
[31789] "bronze" "competing"
[31791] "China's" "Bing"
[31793] "Jiao" "third"
[31795] "place" "play-off"
[31797] "Musashino" "Forest"
[31799] "Plaza" "Sunday"
[31801] "One" "consistent"
[31803] "players" "claimed"
[31805] "medals" "big-ticket"
[31807] "events" "last"
[31809] "five" "years"
[31811] "Sindhu" "counter"
[31813] "Tai" "Tzu's"
[31815] "deception" "aggressive"
[31817] "game" "going"
[31819] "18-21" "12-21"
[31821] "Tokyo" "Sindhu's"
[31823] "14th" "loss"
[31825] "Taiwanese" "second"
[31827] "seed" "19"
[31829] "meetings" "also"
[31831] "lost" "last"
[31833] "three" "face-offs"
[31835] "Classification" "Language"
[31837] "ENGLISH" "Publication-Type"
[31839] "Newspaper" "Body"
[31841] "India" "Aug"
[31843] "3" "India"
[31845] "men's" "hockey"
[31847] "team" "lost"
[31849] "semifinal" "match"
[31851] "2018" "world"
[31853] "champions" "Belgium"
[31855] "Tuesday" "Tokyo"
[31857] "Olympics" "thus"
[31859] "missing" "chance"
[31861] "make" "first"
[31863] "Olympic" "final"
[31865] "four" "decades"
[31867] "last" "time"
[31869] "India" "played"
[31871] "men's" "hockey"
[31873] "final" "Olympics"
[31875] "back" "1980"
[31877] "team" "won"
[31879] "gold" "medal"
[31881] "India's" "first"
[31883] "meeting" "Belgium"
[31885] "since" "2-3"
[31887] "defeat" "FIH"
[31889] "Pro" "League"
[31891] "match" "February"
[31893] "2019" "India's"
[31895] "campaign" "still"
[31897] "compete" "Bronze"
[31899] "medal" "match"
[31901] "Thursday" "face"
[31903] "loser" "second"
[31905] "semifinal" "Australia"
[31907] "Germany" "India"
[31909] "got" "nervy"
[31911] "start" "conceding"
[31913] "early" "penalty"
[31915] "corner" "semifinal"
[31917] "Felix" "Denayer"
[31919] "sent" "ball"
[31921] "inside" "scoring"
[31923] "circle" "ball"
[31925] "deflected" "Rupinder"
[31927] "Singh" "Despite"
[31929] "Alexander" "Hendrickx"
[31931] "turf" "point"
[31933] "Luick" "Luypaert"
[31935] "made" "opportunity"
[31937] "scored" "early"
[31939] "goal" "Belgium"
[31941] "second" "minute"
[31943] "first" "quarter"
[31945] "took" "India"
[31947] "nine" "minutes"
[31949] "get" "things"
[31951] "back" "level"
[31953] "pegging" "Harmanpreet"
[31955] "Singh" "smashed"
[31957] "powerful" "dragflick"
[31959] "past" "Belgium"
[31961] "goalkeeper" "Vincent"
[31963] "Vanasch" "World"
[31965] "Champions" "conceded"
[31967] "penalty" "corner"
[31969] "Two" "minutes"
[31971] "later" "Amit"
[31973] "Rohidas" "passed"
[31975] "ball" "Mandeep"
[31977] "Singh" "inside"
[31979] "circle" "Indian"
[31981] "forward" "turned"
[31983] "tomahawk" "shot"
[31985] "nets" "give"
[31987] "India" "lead"
[31989] "Belgium" "came"
[31991] "back" "strong"
[31993] "2nd" "quarter"
[31995] "getting" "many"
[31997] "four" "penalty"
[31999] "corners" "within"
[32001] "matter" "minutes"
[32003] "Hendrickx" "scored"
[32005] "12th" "goal"
[32007] "Olympics" "penalty"
[32009] "corner" "getting"
[32011] "things" "back"
[32013] "level" "terms"
[32015] "teams" "went"
[32017] "halftime" "two"
[32019] "goals" "apiece"
[32021] "third" "quarter"
[32023] "cagey" "affair"
[32025] "neither" "two"
[32027] "teams" "getting"
[32029] "many" "opportunities"
[32031] "India's" "inability"
[32033] "prevent" "penalty"
[32035] "corners" "cost"
[32037] "final" "15"
[32039] "minutes" "Alexander"
[32041] "Hendrickx" "scored"
[32043] "two" "goals"
[32045] "fourth" "one"
[32047] "coming" "penalty"
[32049] "stroke" "good"
[32051] "journey" "India"
[32053] "men's" "hockey"
[32055] "team" "Tokyo"
[32057] "Olympics" "far"
[32059] "defeating" "New"
[32061] "Zealand" "3-2"
[32063] "opening" "group"
[32065] "game" "picking"
[32067] "wins" "Germany"
[32069] "2-0" "Spain"
[32071] "3-1" "Argentina"
[32073] "3-1" "Japan"
[32075] "5-3" "group"
[32077] "matches" "Barring"
[32079] "7-1" "defeat"
[32081] "Australia" "India"
[32083] "won" "games"
[32085] "far" "surpass"
[32087] "Belgium" "test"
[32089] "details" "awaited"
[32091] "Published" "HT"
[32093] "Digital" "Content"
[32095] "Services" "permission"
[32097] "Hindustan" "Times"
[32099] "query" "respect"
[32101] "article" "content"
[32103] "requirement" "please"
[32105] "contact" "Editor"
[32107] "Classification" "Language"
[32109] "ENGLISH" "Publication-Type"
[32111] "Newswire" "Body"
[32113] "India" "Aug"
[32115] "7" "Neeraj"
[32117] "Chopra" "arms"
[32119] "air" "knew"
[32121] "something" "special"
[32123] "just" "come"
[32125] "hands" "indeed"
[32127] "javelin" "soared"
[32129] "high" "landed"
[32131] "distance" "87.58m"
[32133] "gave" "independent"
[32135] "India" "first"
[32137] "Olympics" "medal"
[32139] "track" "field"
[32141] "events" "Neeraj"
[32143] "Chopra" "scripted"
[32145] "history" "monster"
[32147] "throw" "men's"
[32149] "javelin" "throw"
[32151] "event" "Tokyo"
[32153] "Olympics" "Saturday"
[32155] "ended" "India's"
[32157] "121-year-old" "wait"
[32159] "Olympic" "medal"
[32161] "athletics" "Neeraj's"
[32163] "gold" "medal"
[32165] "Tokyo" "2020"
[32167] "also" "provided"
[32169] "company" "shooter"
[32171] "Abhinav" "Bindra"
[32173] "javelin" "thrower"
[32175] "became" "second"
[32177] "Indian" "win"
[32179] "individual" "gold"
[32181] "Games" "Bindra"
[32183] "won" "India's"
[32185] "maiden" "individual"
[32187] "gold" "2008"
[32189] "Beijing" "Olympics"
[32191] "VIDEO" "Neeraj"
[32193] "Chopra's" "throw"
[32195] "earned" "India"
[32197] "historic" "gold"
[32199] "javelin" "throw"
[32201] "Neeraj" "started"
[32203] "87.03m" "throw"
[32205] "first" "attempt"
[32207] "bettered" "mark"
[32209] "second" "one"
[32211] "throw" "87.58m"
[32213] "ensured" "gold"
[32215] "medal" "Czech"
[32217] "Republic" "throwers"
[32219] "Jakub" "Vadlejch"
[32221] "86.67m" "Vitezslav"
[32223] "Vesely" "85.44m"
[32225] "took" "silver"
[32227] "bronze" "respectively"
[32229] "Chopra" "came"
[32231] "final" "medal"
[32233] "contender" "topping"
[32235] "qualification" "round"
[32237] "Wednesday" "stunning"
[32239] "first" "round"
[32241] "throw" "86.59m"
[32243] "thought" "bludgeon"
[32245] "way" "gold"
[32247] "dominant" "fashion"
[32249] "grandest" "stage"
[32251] "Season" "leader"
[32253] "pre-tournament" "gold"
[32255] "favourite" "Johannes"
[32257] "Vetter" "Germany"
[32259] "thrown" "javelin"
[32261] "90m" "plus"
[32263] "distances" "seven"
[32265] "times" "April"
[32267] "June" "eliminated"
[32269] "first" "three"
[32271] "throws" "placed"
[32273] "ninth" "best"
[32275] "effort" "82.52m"
[32277] "Top" "eight"
[32279] "first" "three"
[32281] "throws" "get"
[32283] "three" "attempts"
[32285] "remaining" "four"
[32287] "12-man" "final"
[32289] "eliminated" "Published"
[32291] "HT" "Digital"
[32293] "Content" "Services"
[32295] "permission" "Hindustan"
[32297] "Times" "query"
[32299] "respect" "article"
[32301] "content" "requirement"
[32303] "please" "contact"
[32305] "Editor" "Classification"
[32307] "Language" "ENGLISH"
[32309] "Publication-Type" "Newswire"
[32311] "Body" "India"
[32313] "Aug" "2"
[32315] "Indian" "cricketing"
[32317] "fraternity" "lauded"
[32319] "women's" "hockey"
[32321] "historic" "win"
[32323] "Tokyo" "Olympics"
[32325] "quarterfinals" "favourites"
[32327] "Australia" "Monday"
[32329] "Sachin" "Tendulkar"
[32331] "led" "way"
[32333] "likes" "Harbhajan"
[32335] "Singh" "VVS"
[32337] "Laxman" "Virender"
[32339] "Sehwag" "Wasim"
[32341] "Jaffer" "Mohammad"
[32343] "Kaif" "took"
[32345] "Twitter" "congratulate"
[32347] "Rani" "Rampal-led"
[32349] "side" "earning"
[32351] "right" "India's"
[32353] "first-ever" "semi-final"
[32355] "appearance" "Games"
[32357] "Gurjit" "Kaur"
[32359] "scored" "penalty"
[32361] "corner" "22nd"
[32363] "minute" "turned"
[32365] "goal" "difference"
[32367] "two" "sides"
[32369] "Oi" "Hockey"
[32371] "Stadium" "North"
[32373] "Pitch" "Tokyo"
[32375] "Yesterday" "men's"
[32377] "hockey" "team"
[32379] "today" "women's"
[32381] "hockey" "team"
[32383] "Absolutely" "loving"
[32385] "Well" "done"
[32387] "women's" "team"
[32389] "making" "#Olympics"
[32391] "semi-finals" "first"
[32393] "time" "ever"
[32395] "whole" "nation"
[32397] "behind" "tweeted"
[32399] "Sachin" "Tendulkar"
[32401] "Way" "go"
[32403] "Indian" "Women's"
[32405] "Hockey" "Team"
[32407] "defeats" "Australia"
[32409] "reach" "semi"
[32411] "finals" "Olympics"
[32413] "2020" "wrote"
[32415] "Harbhajan" "Singh"
[32417] "Grit" "Determination"
[32419] "Belief" "women's"
[32421] "hockey" "team"
[32423] "weaving" "golden"
[32425] "chapter" "history"
[32427] "performance" "ages"
[32429] "seals" "semifinal"
[32431] "berth" "Well"
[32433] "done" "girls"
[32435] "tweeted" "Mohammad"
[32437] "Kaif" "girls"
[32439] "created" "history"
[32441] "Beaten" "#AUS"
[32443] "quarter-final" "match"
[32445] "women's" "#hockey"
[32447] "1-0" "seal"
[32449] "spot" "SEMI-FINAL"
[32451] "first" "time"
[32453] "ever" "Best"
[32455] "wishes" "semis"
[32457] "wrote" "VVS"
[32459] "Laxman" "Itni"
[32461] "khushi" "shayad"
[32463] "kisi" "jeet"
[32465] "par" "mehsoos"
[32467] "huyi" "hogi"
[32469] "Absolute" "Wow"
[32471] "moment" "First"
[32473] "ever" "Olympics"
[32475] "hockey" "semi-finals"
[32477] "girls" "Filled"
[32479] "pride" "Chak"
[32481] "De" "India"
[32483] "wrote" "Virender"
[32485] "Sehwag" "odds"
[32487] "totally" "India"
[32489] "world" "2"
[32491] "Australia" "mighty"
[32493] "unbeaten" "opponent"
[32495] "awaited" "happy"
[32497] "result" "hard"
[32499] "work" "put"
[32501] "several" "several"
[32503] "days" "1980"
[32505] "qualified" "Games"
[32507] "time" "made"
[32509] "semifinals" "proud"
[32511] "moment" "us"
[32513] "Gurjit" "said"
[32515] "match" "team"
[32517] "like" "family"
[32519] "supported" "found"
[32521] "support" "country"
[32523] "well" "happy"
[32525] "added" "Indians"
[32527] "determined" "prove"
[32529] "point" "produced"
[32531] "strong" "brave"
[32533] "performance" "eke"
[32535] "narrow" "win"
[32537] "Hockeyroos" "much"
[32539] "meant" "team"
[32541] "Indian" "hockey"
[32543] "general" "gauged"
[32545] "emotions" "display"
[32547] "final" "hooter"
[32549] "went" "players"
[32551] "screamed" "hugged"
[32553] "got" "huddle"
[32555] "Dutch" "coach"
[32557] "Sjoerd" "Marijne"
[32559] "tears" "joy"
[32561] "rolling" "faces"
[32563] "India's" "best"
[32565] "performance" "Olympics"
[32567] "came" "way"
[32569] "back" "1980"
[32571] "Moscow" "Games"
[32573] "finished" "fourth"
[32575] "six" "teams"
[32577] "Published" "HT"
[32579] "Digital" "Content"
[32581] "Services" "permission"
[32583] "Hindustan" "Times"
[32585] "query" "respect"
[32587] "article" "content"
[32589] "requirement" "please"
[32591] "contact" "Editor"
[32593] "Classification" "Language"
[32595] "ENGLISH" "Publication-Type"
[32597] "Newswire" "Body"
[32599] "Neeraj" "Chopra"
[32601] "made" "history"
[32603] "won" "men's"
[32605] "javelin" "throw"
[32607] "final" "Tokyo"
[32609] "Olympics" "August"
[32611] "7" "galore"
[32613] "wishes" "poured"
[32615] "athlete" "corners"
[32617] "Prem" "Chopra"
[32619] "shares" "surname"
[32621] "Neeraj" "unique"
[32623] "way" "congratulating"
[32625] "ONE" "CHOPRA"
[32627] "ANOTHER" "PREM"
[32629] "CONGRATULATES" "NEERAJ"
[32631] "OLYMPIC" "WIN"
[32633] "spectacular" "performance"
[32635] "Neeraj" "Chopra"
[32637] "became" "first"
[32639] "Indian" "win"
[32641] "gold" "medal"
[32643] "athletics" "event"
[32645] "now" "second"
[32647] "Indian" "grab"
[32649] "individual" "Olympic"
[32651] "gold" "social"
[32653] "media" "Now"
[32655] "Prem" "Chopra"
[32657] "can" "seen"
[32659] "telling" "made"
[32661] "country" "proud"
[32663] "interesting" "manner"
[32665] "video" "shared"
[32667] "retired" "Lieutenant"
[32669] "General" "Vinod"
[32671] "Bhatia" "Twitter"
[32673] "Prem" "Chopra"
[32675] "used" "one"
[32677] "famous" "dialogues"
[32679] "laud" "Neeraj"
[32681] "Chopra" "said"
[32683] "Saari" "duniya"
[32685] "jaanti" "hai"
[32687] "mujhe" "Prem"
[32689] "naam" "hai"
[32691] "mera" "Prem"
[32693] "Chopra" "Lekin"
[32695] "Neeraj" "aaj"
[32697] "tune" "mausam"
[32699] "badal" "diya"
[32701] "Aaj" "baaki"
[32703] "saari" "duniya"
[32705] "bolegi" "Neeraj"
[32707] "naam" "hai"
[32709] "mera" "Neeraj"
[32711] "Chopra" "entire"
[32713] "world" "knows"
[32715] "name" "Prem"
[32717] "Prem" "Chopra"
[32719] "Neeraj" "changed"
[32721] "weather" "world"
[32723] "now" "say"
[32725] "name" "Neeraj"
[32727] "Neeraj" "Chopra"
[32729] "veteran" "actor"
[32731] "continued" "praise"
[32733] "Olympic" "Gold"
[32735] "medalist" "proud"
[32737] "brought" "glory"
[32739] "nation" "given"
[32741] "nation" "status"
[32743] "dignity" "Congratulations"
[32745] "family" "members"
[32747] "everybody" "whole"
[32749] "country" "proud"
[32751] "Thank" "video's"
[32753] "caption" "Twitter"
[32755] "reads" "#NeerajGoldChopra"
[32757] "apt" "tribute"
[32759] "one" "famous"
[32761] "Chopra" "Prem"
[32763] "another" "Chopra"
[32765] "Olympic" "Gold"
[32767] "Chopra" "Jai"
[32769] "Hind" "sic"
[32771] "apt" "tribute"
[32773] "one" "famous"
[32775] "Chopra" "Prem"
[32777] "another" "Chopra"
[32779] "Olympic" "Gold"
[32781] "Chopra" "Jai"
[32783] "Hind" "Lt"
[32785] "Gen" "Vinod"
[32787] "Bhatia" "Retd"
[32789] "@Ptr6Vb" "NEERAJ"
[32791] "CHOPRA'S" "OLYMPIC"
[32793] "GOLD" "WIN"
[32795] "Hailing" "Panipat's"
[32797] "Khandra" "village"
[32799] "Neeraj" "Chopra"
[32801] "broke" "Olympic"
[32803] "record" "javelin"
[32805] "throw" "throw"
[32807] "87.58m" "winning"
[32809] "historic" "first"
[32811] "Olympic" "gold"
[32813] "athletics" "India"
[32815] "speaking" "media"
[32817] "Neeraj" "admitted"
[32819] "national" "anthem"
[32821] "medal" "ceremony"
[32823] "meant" "world"
[32825] "verge" "crying"
[32827] "ALSO" "READ"
[32829] "|" "ALSO"
[32831] "READ" "|"
[32833] "Graphic" "Prem"
[32835] "Chopra" "lauds"
[32837] "Neeraj" "Chopra"
[32839] "Olympics" "gold"
[32841] "win" "says"
[32843] "mausam" "badal"
[32845] "diya" "Viral"
[32847] "video" "Classification"
[32849] "Language" "ENGLISH"
[32851] "Publication-Type" "Web"
[32853] "Publication" "Body"
[32855] "broke" "glass"
[32857] "ceiling" "becoming"
[32859] "first" "Indian"
[32861] "woman" "bag"
[32863] "two" "medals"
[32865] "consecutive" "Olympics"
[32867] "scoreline" "read"
[32869] "19-15" "China's"
[32871] "Bing" "Jao"
[32873] "answer" "PV"
[32875] "Sindhu's" "crosscourt"
[32877] "smash" "20-15"
[32879] "Sindhu" "murmured"
[32881] "One" "point"
[32883] "One" "point"
[32885] "give" "badminton"
[32887] "bronze" "medal"
[32889] "Tokyo" "Olympic"
[32891] "Games" "point"
[32893] "came" "brief"
[32895] "rally" "Sindhu"
[32897] "unleashing" "another"
[32899] "winner" "final"
[32901] "score" "21-13"
[32903] "21-15" "Emotions"
[32905] "took" "moment"
[32907] "26-year-old" "let"
[32909] "scream" "joy"
[32911] "Korean" "coach"
[32913] "Park" "Tae-Sang"
[32915] "seated" "sidelines"
[32917] "euphoric" "Sindhu"
[32919] "went" "coach"
[32921] "embraced" "pat"
[32923] "coach" "Sindhu"
[32925] "walked" "side"
[32927] "court" "swept"
[32929] "beads" "sweat"
[32931] "smiled" "India"
[32933] "cheered" "China's"
[32935] "world" "2"
[32937] "Chen" "Yu"
[32939] "Fei" "took"
[32941] "gold" "beating"
[32943] "Taiwan's" "Tai"
[32945] "Tzu-ying" "21-18"
[32947] "19-21" "21-18"
[32949] "final" "Sindhu"
[32951] "broke" "glass"
[32953] "ceiling" "becoming"
[32955] "first" "Indian"
[32957] "woman" "bag"
[32959] "two" "medals"
[32961] "consecutive" "Olympics"
[32963] "overflowing" "trophy"
[32965] "cabinet" "already"
[32967] "silver" "medal"
[32969] "Rio" "Olympic"
[32971] "Games" "five"
[32973] "years" "back"
[32975] "wrestler" "Sushil"
[32977] "Kumar" "now"
[32979] "languishing" "jail"
[32981] "murder" "charge"
[32983] "won" "two"
[32985] "medals" "back-to-back"
[32987] "Beijing" "bronze"
[32989] "London" "silver"
[32991] "Games" "also"
[32993] "fourth" "player"
[32995] "win" "two"
[32997] "consecutive" "medals"
[32999] "women's" "badminton"
[33001] "singles" "Games"
[33003] "history" "cloud"
[33005] "nine" "going"
[33007] "enjoy" "moment"
[33009] "makes" "feel"
[33011] "really" "happy"
[33013] "worked" "hard"
[33015] "many" "years"
[33017] "lot" "emotions"
[33019] "going" "happy"
[33021] "won" "bronze"
[33023] "sad" "lost"
[33025] "opportunity" "play"
[33027] "final" "overall"
[33029] "close" "emotions"
[33031] "one" "match"
[33033] "give" "best"
[33035] "really" "happy"
[33037] "think" "done"
[33039] "really" "well"
[33041] "proud" "moment"
[33043] "getting" "medal"
[33045] "country" "Sindhu"
[33047] "quoted" "saying"
[33049] "world" "body"
[33051] "BWF's" "website"
[33053] "indeed" "great"
[33055] "moment" "every"
[33057] "Indian" "demoralising"
[33059] "loss" "Tai"
[33061] "Tzu-ying" "Saturday"
[33063] "Sindhu" "yore"
[33065] "Sunday" "smashes"
[33067] "deft" "net-plays"
[33069] "Sindhu" "treat"
[33071] "watch" "stuck"
[33073] "game" "plan"
[33075] "give" "Bing"
[33077] "Jao" "much"
[33079] "chance" "easy"
[33081] "big" "thing"
[33083] "really" "long"
[33085] "rallies" "patient"
[33087] "calm" "Even"
[33089] "though" "leading"
[33091] "relax" "said"
[33093] "Park" "Sindhu's"
[33095] "overall" "game"
[33097] "improved" "lot"
[33099] "now" "confident"
[33101] "front" "net"
[33103] "defensively" "also"
[33105] "compact" "India's"
[33107] "third" "medal"
[33109] "Olympics" "interestingly"
[33111] "earned" "women"
[33113] "Besides" "Sindhu"
[33115] "weightlifter" "Mirabai"
[33117] "Chanu" "won"
[33119] "silver" "July"
[33121] "24" "boxer"
[33123] "Lovlina" "Borgohain"
[33125] "assured" "least"
[33127] "bronze" "big"
[33129] "shout-out" "woman"
[33131] "power" "Classification"
[33133] "Language" "ENGLISH"
[33135] "Publication-Type" "Newspaper"
[33137] "Body" "Neeraj"
[33139] "Chopra" "became"
[33141] "second" "Indian"
[33143] "grab" "individual"
[33145] "Olympic" "gold"
[33147] "winning" "men's"
[33149] "javelin" "throw"
[33151] "final" "Tokyo"
[33153] "2020" "Saturday"
[33155] "Prime" "Minister"
[33157] "Narendra" "Modi"
[33159] "wished" "23-year-old"
[33161] "scripting" "history"
[33163] "PM" "Modi"
[33165] "wrote" "Twitter"
[33167] "History" "scripted"
[33169] "Tokyo" "Neeraj"
[33171] "Chopra" "achieved"
[33173] "today" "remembered"
[33175] "forever" "young"
[33177] "Neeraj" "done"
[33179] "exceptionally" "well"
[33181] "played" "remarkable"
[33183] "passion" "showed"
[33185] "unparalleled" "grit"
[33187] "Congratulations" "winning"
[33189] "Gold" "History"
[33191] "scripted" "Tokyo"
[33193] "achieved" "today"
[33195] "remembered" "forever"
[33197] "young" "Neeraj"
[33199] "done" "exceptionally"
[33201] "well" "played"
[33203] "remarkable" "passion"
[33205] "showed" "unparalleled"
[33207] "grit" "Congratulations"
[33209] "winning" "Gold"
[33211] "Narendra" "Modi"
[33213] "@narendramodi" "PM"
[33215] "Modi" "also"
[33217] "talked" "Neeraj"
[33219] "Chopra" "soon"
[33221] "won" "gold"
[33223] "medal" "said"
[33225] "Just" "spoke"
[33227] "Neeraj" "Chopra"
[33229] "congratulated" "winning"
[33231] "Gold" "Appreciated"
[33233] "hard" "work"
[33235] "tenacity" "full"
[33237] "display" "Tokyo2020"
[33239] "personifies" "best"
[33241] "sporting" "talent"
[33243] "sportsman" "spirit"
[33245] "Best" "wishes"
[33247] "future" "endeavours"
[33249] "Prime" "Minister"
[33251] "added" "Just"
[33253] "spoke" "congratulated"
[33255] "winning" "Gold"
[33257] "Appreciated" "hardwork"
[33259] "tenacity" "full"
[33261] "display" "personifies"
[33263] "best" "sporting"
[33265] "talent" "sportsman"
[33267] "spirit" "Best"
[33269] "wishes" "future"
[33271] "endeavours" "Narendra"
[33273] "Modi" "@narendramodi"
[33275] "Neeraj" "Chopra"
[33277] "ended" "India's"
[33279] "121-year" "wait"
[33281] "athletics" "medal"
[33283] "earned" "praises"
[33285] "corners" "Social"
[33287] "media" "flooded"
[33289] "congratulatory" "messages"
[33291] "President" "India"
[33293] "Ram" "Nath"
[33295] "Kovind" "congratulated"
[33297] "Neeraj" "Chopra"
[33299] "saying" "gold"
[33301] "breaks" "barriers"
[33303] "creates" "history"
[33305] "President" "tweeted"
[33307] "Unprecedented" "win"
[33309] "Neeraj" "Chopra"
[33311] "javelin" "gold"
[33313] "breaks" "barriers"
[33315] "creates" "history"
[33317] "bring" "home"
[33319] "first" "ever"
[33321] "track" "field"
[33323] "medal" "India"
[33325] "first" "Olympics"
[33327] "feat" "inspire"
[33329] "youth" "India"
[33331] "elated" "Heartiest"
[33333] "congratulations" "Unprecedented"
[33335] "win" "Neeraj"
[33337] "Chopra" "javelin"
[33339] "gold" "breaks"
[33341] "barriers" "creates"
[33343] "history" "bring"
[33345] "home" "first"
[33347] "ever" "track"
[33349] "field" "medal"
[33351] "India" "first"
[33353] "Olympics" "feat"
[33355] "inspire" "youth"
[33357] "India" "elated"
[33359] "Heartiest" "congratulations"
[33361] "President" "India"
[33363] "@rashtrapatibhvn" "Defence"
[33365] "Minister" "Rajnath"
[33367] "Singh" "said"
[33369] "Congratulations" "India's"
[33371] "ace" "Javelin"
[33373] "Thrower" "Neeraj"
[33375] "Chopra" "winning"
[33377] "prestigious" "Track"
[33379] "Field" "medal"
[33381] "first" "time"
[33383] "history" "Independent"
[33385] "India" "Gold"
[33387] "medal" "Javelin"
[33389] "throw" "event"
[33391] "Olympics" "unprecedented"
[33393] "Proud" "creating"
[33395] "history" "Congratulations"
[33397] "India's" "ace"
[33399] "Javelin" "Thrower"
[33401] "winning" "prestigious"
[33403] "Track" "Field"
[33405] "medal" "first"
[33407] "time" "history"
[33409] "Independent" "India"
[33411] "Gold" "medal"
[33413] "Javelin" "throw"
[33415] "event" "unprecedented"
[33417] "Proud" "creating"
[33419] "history" "Rajnath"
[33421] "Singh" "@rajnathsingh"
[33423] "Anurag" "Thakur"
[33425] "Union" "Sports"
[33427] "Minister" "also"
[33429] "congratulated" "athlete"
[33431] "Haryana" "superbly"
[33433] "soaring" "throw"
[33435] "deserves" "Billion"
[33437] "Cheers" "name"
[33439] "etched" "history"
[33441] "books" "golden"
[33443] "letters" "wrote"
[33445] "NEERAJ" "CHOPRA"
[33447] "India's" "Golden"
[33449] "Boy" "India's"
[33451] "Olympic" "History"
[33453] "scripted" "superbly"
[33455] "soaring" "throw"
[33457] "deserves" "Billion"
[33459] "Cheers" "name"
[33461] "etched" "history"
[33463] "books" "golden"
[33465] "letters" "Anurag"
[33467] "Thakur" "@ianuragthakur"
[33469] "Haryana" "Chief"
[33471] "Minister" "Manohar"
[33473] "Lal" "Khattar"
[33475] "also" "congratulated"
[33477] "athlete" "state"
[33479] "tweeted" "Hindi"
[33481] "saying" "whole"
[33483] "country" "waiting"
[33485] "moment" "whole"
[33487] "proud" "Manohar"
[33489] "Lal" "@mlkhattar"
[33491] "Dushyant" "Chautala"
[33493] "deputy" "chief"
[33495] "minister" "Haryana"
[33497] "called" "Neeraj"
[33499] "Chopra" "Golden"
[33501] "boy" "India"
[33503] "Dushyant" "Chautala"
[33505] "@Dchautala" "West"
[33507] "Bengal" "Chief"
[33509] "Minister" "Mamata"
[33511] "Banerjee" "said"
[33513] "History" "scripted"
[33515] "Beyond" "proud"
[33517] "Javelin" "thrower"
[33519] "Neeraj" "Chopra"
[33521] "winning" "Gold"
[33523] "Medal" "Olympics"
[33525] "2020" "Today"
[33527] "entire" "nation"
[33529] "shall" "rejoice"
[33531] "glorious" "victory"
[33533] "Many" "many"
[33535] "Congratulations" "History"
[33537] "scripted" "Beyond"
[33539] "proud" "Javelin"
[33541] "thrower" "winning"
[33543] "Gold" "Medal"
[33545] "Today" "entire"
[33547] "nation" "shall"
[33549] "rejoice" "glorious"
[33551] "victory" "Many"
[33553] "many" "Congratulations"
[33555] "Mamata" "Banerjee"
[33557] "@MamataOfficial" "Chief"
[33559] "Defence" "Staff"
[33561] "General" "Bipin"
[33563] "Rawat" "said"
[33565] "Neeraj" "Chopra"
[33567] "proven" "way"
[33569] "done" "Armed"
[33571] "Forces" "Nation"
[33573] "proud" "like"
[33575] "many" "Olympians"
[33577] "created" "history"
[33579] "TOKYO" "2020"
[33581] "added" "confident"
[33583] "continue" "reach"
[33585] "greater" "heights"
[33587] "years" "follow"
[33589] "achievement" "inspire"
[33591] "motivate" "sportspersons"
[33593] "aspire" "succeed"
[33595] "bring" "bigger"
[33597] "laurels" "greater"
[33599] "honour" "Nation"
[33601] "confident" "continue"
[33603] "reach" "greater"
[33605] "heights" "years"
[33607] "follow" "achievement"
[33609] "inspire" "motivate"
[33611] "sports" "persons"
[33613] "aspire" "succeed"
[33615] "bring" "bigger"
[33617] "laurels" "greater"
[33619] "honour" "Nation"
[33621] "2" "2"
[33623] "ADG" "PI"
[33625] "INDIAN" "ARMY"
[33627] "@adgpi" "ALSO"
[33629] "READ" "WATCH"
[33631] "Graphic" "History"
[33633] "scripted" "PM"
[33635] "Modi" "others"
[33637] "congratulate" "Neeraj"
[33639] "Chopra" "Olympics"
[33641] "gold" "Classification"
[33643] "Language" "ENGLISH"
[33645] "Publication-Type" "Web"
[33647] "Publication" "Body"
[33649] "India" "Aug"
[33651] "7" "Neeraj"
[33653] "Chopra" "won"
[33655] "historic" "gold"
[33657] "medal" "men's"
[33659] "javelin" "throw"
[33661] "make" "Tokyo"
[33663] "2020" "Games"
[33665] "India's" "best"
[33667] "ever" "Olympics"
[33669] "campaign" "Chopra"
[33671] "scripted" "history"
[33673] "Saturday" "becoming"
[33675] "independent" "India's"
[33677] "first" "athlete"
[33679] "win" "medal"
[33681] "track" "field"
[33683] "discipline" "English-Indian"
[33685] "athlete" "Norman"
[33687] "Pritchard" "won"
[33689] "two" "silver"
[33691] "medals" "1900"
[33693] "Games" "representing"
[33695] "India" "British"
[33697] "colony" "Day"
[33699] "15" "Games"
[33701] "started" "disappointment"
[33703] "India" "golfer"
[33705] "Aditi" "Ashok"
[33707] "missed" "medal"
[33709] "whisker" "finished"
[33711] "fourth" "staying"
[33713] "contention" "silver"
[33715] "longest" "time"
[33717] "India" "though"
[33719] "matched" "best"
[33721] "medal" "haul"
[33723] "single" "Olympic"
[33725] "Games" "wrestler"
[33727] "Bajrang" "Punia"
[33729] "gave" "India"
[33731] "6th" "medal"
[33733] "campaign" "put"
[33735] "par" "showing"
[33737] "2012" "London"
[33739] "Olympics" "icing"
[33741] "cake" "came"
[33743] "Neeraj" "Chopra"
[33745] "threw" "distance"
[33747] "87.58" "second"
[33749] "attempt" "win"
[33751] "gold" "medal"
[33753] "men's" "javelin"
[33755] "throw" "Chopra"
[33757] "led" "throughout"
[33759] "final" "chances"
[33761] "boosted" "hot"
[33763] "favourite" "Johannes"
[33765] "Vetter" "Germany"
[33767] "suffered" "meltdown"
[33769] "final" "exit"
[33771] "best" "throw"
[33773] "82.52" "metres"
[33775] "Tokyo" "Olympics"
[33777] "Day" "15"
[33779] "Live" "Updates"
[33781] "India's" "medal"
[33783] "rush" "Tokyo"
[33785] "started" "weightlifter"
[33787] "Mirabai" "Chanu"
[33789] "winning" "silver"
[33791] "medal" "Badminton"
[33793] "ace" "PV"
[33795] "Sindhu" "added"
[33797] "bronze" "boxer"
[33799] "Lovlina" "Borgohain"
[33801] "won" "bronze"
[33803] "medal" "Indian"
[33805] "men's" "hockey"
[33807] "team" "returned"
[33809] "Olympic" "podium"
[33811] "gap" "41"
[33813] "years" "winning"
[33815] "bronze" "medal"
[33817] "wrestler" "Ravi"
[33819] "Kumar" "Dahiya"
[33821] "won" "silver"
[33823] "medal" "joined"
[33825] "wrestler" "Bajrang"
[33827] "Punia" "won"
[33829] "bronze" "women's"
[33831] "hockey" "team"
[33833] "finished" "creditable"
[33835] "fourth" "came"
[33837] "close" "winning"
[33839] "historic" "medal"
[33841] "Kamalpreet" "Kaur"
[33843] "came" "creditable"
[33845] "6th" "women's"
[33847] "discus" "throw"
[33849] "big" "disappointments"
[33851] "Games" "India"
[33853] "shooters" "drew"
[33855] "blank" "second"
[33857] "straight" "Games"
[33859] "despite" "several"
[33861] "strong" "contenders"
[33863] "fray" "archery"
[33865] "team" "also"
[33867] "failed" "get"
[33869] "medals" "despite"
[33871] "experienced" "Deepika"
[33873] "Kumari" "participating"
[33875] "third" "Olympics"
[33877] "manner" "quarter-final"
[33879] "defeat" "hit"
[33881] "several" "scores"
[33883] "7" "matter"
[33885] "disappointment" "Wrestler"
[33887] "Vinesh" "Phogat"
[33889] "boxer" "Amit"
[33891] "Panghal" "also"
[33893] "big" "contenders"
[33895] "failed" "deliver"
[33897] "medal" "full"
[33899] "list" "medal"
[33901] "winners" "India"
[33903] "2012" "London"
[33905] "Olympics" "2020"
[33907] "Tokyo" "Olympics"
[33909] "Tokyo" "2020"
[33911] "medal" "winners"
[33913] "India" "Gold"
[33915] "Neeraj" "Chopra"
[33917] "Men's" "Javelin"
[33919] "Throw" "Silver"
[33921] "Mirabai" "Chanu"
[33923] "Weightlifting" "Women's"
[33925] "49kg" "Silver"
[33927] "Ravi" "Kumar"
[33929] "Dahiya" "Wrestling"
[33931] "Men's" "57kg"
[33933] "freestyle" "Bronze"
[33935] "Lovlina" "Borgohain"
[33937] "Boxing" "Women's"
[33939] "Welterweight" "Bronze"
[33941] "PV" "Sindhu"
[33943] "Badminton" "Women's"
[33945] "singles" "Bronze"
[33947] "Men's" "Hockey"
[33949] "Team" "Bronze"
[33951] "Bajrang" "Punia"
[33953] "Wrestling" "Men's"
[33955] "65kg" "freestyle"
[33957] "London" "2012"
[33959] "medal" "winners"
[33961] "India" "Silver"
[33963] "Vijay" "Kumar"
[33965] "Shooting" "Men's"
[33967] "25" "m"
[33969] "rapid" "fire"
[33971] "pistol" "Silver"
[33973] "Sushil" "Kumar"
[33975] "Wrestling" "Men's"
[33977] "66kg" "freestyle"
[33979] "Bronze" "MC"
[33981] "Mary" "Kom"
[33983] "Boxing" "Women's"
[33985] "Flyweight" "Bronze"
[33987] "Saina" "Nehwal"
[33989] "Badminton" "Women's"
[33991] "singles" "Bronze"
[33993] "Gagan" "Narang"
[33995] "Shooting" "Men's"
[33997] "10" "m"
[33999] "air" "rifle"
[34001] "Bronze" "Yogeshwar"
[34003] "Dutt" "Wrestling"
[34005] "Men's" "60kg"
[34007] "freestyle" "Published"
[34009] "HT" "Digital"
[34011] "Content" "Services"
[34013] "permission" "Hindustan"
[34015] "Times" "query"
[34017] "respect" "article"
[34019] "content" "requirement"
[34021] "please" "contact"
[34023] "Editor" "Classification"
[34025] "Language" "ENGLISH"
[34027] "Publication-Type" "Newswire"
[34029] "Body" "India"
[34031] "July" "30"
[34033] "Cricket" "might"
[34035] "popular" "sport"
[34037] "India" "even"
[34039] "cricketers" "known"
[34041] "means" "Olympian"
[34043] "Olympics" "pinnacle"
[34045] "sports" "pits"
[34047] "best" "athletes"
[34049] "world" "across"
[34051] "several" "disciplies"
[34053] "cricket" "Olympic"
[34055] "sport" "yet"
[34057] "Indian" "cricketers"
[34059] "past" "present"
[34061] "cheering" "Indian"
[34063] "athletes" "participating"
[34065] "ongoing" "Tokyo"
[34067] "Olympics" "Former"
[34069] "India" "all-rounder"
[34071] "Yuvraj" "Singh"
[34073] "one" "lauded"
[34075] "Olympians" "putting"
[34077] "India" "world"
[34079] "map" "sports"
[34081] "participating" "Olympics"
[34083] "India" "needs"
[34085] "sportspeople" "put"
[34087] "us" "world"
[34089] "map" "mega"
[34091] "wins" "participate"
[34093] "international" "sporting"
[34095] "events" "Olympics"
[34097] "considered" "pinnacle"
[34099] "sports" "Just"
[34101] "participation" "means"
[34103] "among" "best"
[34105] "people" "deserve"
[34107] "every" "acclaim"
[34109] "honour" "endowment"
[34111] "Keeping" "spirit"
[34113] "providing" "best"
[34115] "assistance" "athletes"
[34117] "2011" "ICC"
[34119] "World" "Cup"
[34121] "Man" "series"
[34123] "announced" "120"
[34125] "athletes" "participating"
[34127] "Tokyo" "Games"
[34129] "receive" "free"
[34131] "healthcare" "checkups"
[34133] "winners" "receive"
[34135] "10" "years"
[34137] "free" "health"
[34139] "test" "service"
[34141] "initiative" "backed"
[34143] "health" "test"
[34145] "home" "service"
[34147] "provider" "Healthians"
[34149] "objective" "inspire"
[34151] "help" "prepare"
[34153] "athletes" "world"
[34155] "sports" "need"
[34157] "support" "sportsmen"
[34159] "move" "towards"
[34161] "glorious" "future"
[34163] "sports" "initiative"
[34165] "like" "encouraged"
[34167] "Yuvraj" "added"
[34169] "announcement" "comes"
[34171] "day" "boxer"
[34173] "Lovlina" "Borgohain"
[34175] "assured" "India"
[34177] "medal" "women's"
[34179] "welterweight" "category"
[34181] "roared" "semi-finals"
[34183] "boxer" "assured"
[34185] "least" "bronze"
[34187] "medal" "even"
[34189] "loses" "next"
[34191] "bout" "Weightlifter"
[34193] "Mirabai" "Chanu"
[34195] "won" "silver"
[34197] "India" "first"
[34199] "day" "Games"
[34201] "Published" "HT"
[34203] "Digital" "Content"
[34205] "Services" "permission"
[34207] "Hindustan" "Times"
[34209] "query" "respect"
[34211] "article" "content"
[34213] "requirement" "please"
[34215] "contact" "Editor"
[34217] "Classification" "Language"
[34219] "ENGLISH" "Publication-Type"
[34221] "Newswire" "Body"
[34223] "seen" "wearing"
[34225] "beautiful" "dainty"
[34227] "Olympic-ring" "themed"
[34229] "earrings" "gift"
[34231] "mother" "Mirabai"
[34233] "Chanu" "opened"
[34235] "India's" "medal"
[34237] "counter" "Day"
[34239] "1" "Tokyo"
[34241] "Olympics" "clinched"
[34243] "country's" "first"
[34245] "silver" "medal"
[34247] "women's" "49"
[34249] "kg" "weightlifting"
[34251] "competition" "Manipuri"
[34253] "athlete" "showed"
[34255] "immense" "grit"
[34257] "determination" "ended"
[34259] "India's" "21-year"
[34261] "wait" "weightlifting"
[34263] "medal" "Olympics"
[34265] "Mirabai" "seen"
[34267] "breaking" "tears"
[34269] "achieving" "historic"
[34271] "feat" "later"
[34273] "danced" "celebrate"
[34275] "medal" "Olympics"
[34277] "Besides" "euphoria"
[34279] "caught" "attention"
[34281] "earrings" "seen"
[34283] "wearing" "beautiful"
[34285] "dainty" "Olympic-ring"
[34287] "themed" "earrings"
[34289] "gold-toned" "Olympic"
[34291] "rings" "believed"
[34293] "gift" "mother"
[34295] "carried" "along"
[34297] "ever-cheerful" "face"
[34299] "depicted" "dedication"
[34301] "passion" "game"
[34303] "Prime" "Minister"
[34305] "Narendra" "Modi"
[34307] "congratulated" "Chanu"
[34309] "stupendous" "performance"
[34311] "tweet" "asked"
[34313] "happier" "start"
[34315] "@Tokyo2020" "India"
[34317] "elated" "@mirabai_chanu"
[34319] "s" "stupendous"
[34321] "performance" "Congratulations"
[34323] "winning" "Silver"
[34325] "medal" "weightlifting"
[34327] "success" "motivates"
[34329] "every" "Indian"
[34331] "#Cheer4India" "#Tokyo2020"
[34333] "Narendra" "Modi"
[34335] "@narendramodi" "July"
[34337] "24" "2021"
[34339] "Rahul" "Gandhi"
[34341] "tweeted" "wishes"
[34343] "athlete" "Congratulations"
[34345] "#MirabaiChanu" "country's"
[34347] "first" "medal"
[34349] "first" "day"
[34351] "India" "proud"
[34353] "daughter" "Rahul"
[34355] "Gandhi" "@RahulGandhi"
[34357] "July" "24"
[34359] "2021" "say"
[34361] "Classification" "Language"
[34363] "ENGLISH" "Publication-Type"
[34365] "Newspaper" "Body"
[34367] "India" "21st"
[34369] "list" "contingent"
[34371] "March" "past"
[34373] "decided" "according"
[34375] "Japanese" "alphabetical"
[34377] "order" "Tokyo"
[34379] "Olympics" "2020"
[34381] "Today" "official"
[34383] "opening" "much-awaited"
[34385] "32nd" "Olympic"
[34387] "Games.India" "fielding"
[34389] "120" "athletes"
[34391] "Tokyo" "Olympics"
[34393] "Last" "known"
[34395] "28" "athletes"
[34397] "six" "officials"
[34399] "Indian" "contingent"
[34401] "join" "opening"
[34403] "ceremony" "Olympics"
[34405] "Games" "see"
[34407] "participation" "around"
[34409] "11,000" "athletes"
[34411] "205" "countries"
[34413] "competing" "339"
[34415] "gold" "medals"
[34417] "across" "33"
[34419] "sports" "Tokyo"
[34421] "Olympics" "2020"
[34423] "see" "India's"
[34425] "largest" "contingent"
[34427] "feature" "mega"
[34429] "sporting" "event"
[34431] "ever" "opening"
[34433] "ceremony" "India"
[34435] "21st" "205"
[34437] "contingents" "Parade"
[34439] "Nations.The" "United"
[34441] "Arab" "Emirates"
[34443] "among" "first"
[34445] "10" "entrants"
[34447] "Australia" "Austria"
[34449] "enter" "Ukraine"
[34451] "Uruguay" "order"
[34453] "decided" "enter"
[34455] "spot" "opening"
[34457] "ceremony" "India"
[34459] "21st" "list"
[34461] "contingent" "March"
[34463] "past" "decided"
[34465] "according" "Japanese"
[34467] "alphabetical" "order"
[34469] "teams" "enter"
[34471] "stadium" "alphabetical"
[34473] "order" "according"
[34475] "language" "selected"
[34477] "organising" "committee"
[34479] "generally" "dominant"
[34481] "language" "host"
[34483] "city" "announcers"
[34485] "first" "call"
[34487] "country's" "name"
[34489] "French" "English"
[34491] "official" "languages"
[34493] "Games" "according"
[34495] "Rule" "23"
[34497] "Olympic" "Charter"
[34499] "chosen" "language"
[34501] "exception" "Parade"
[34503] "Nations" "always"
[34505] "begins" "Greece"
[34507] "host" "ancient"
[34509] "Olympics" "first"
[34511] "modern" "one"
[34513] "host" "nation"
[34515] "also" "always"
[34517] "closes" "marching"
[34519] "ceremony" "year"
[34521] "order" "promote"
[34523] "future" "editions"
[34525] "IOC" "wanted"
[34527] "next" "two"
[34529] "Olympic" "hosts"
[34531] "precede" "Japan"
[34533] "order" "end"
[34535] "ceremony" "2028"
[34537] "hosts" "United"
[34539] "States" "2024"
[34541] "hosts" "France"
[34543] "Team" "Japan"
[34545] "another" "change"
[34547] "traditional" "marching"
[34549] "order" "Refugee"
[34551] "Olympic" "Team"
[34553] "follow" "Greece"
[34555] "number" "two"
[34557] "teams" "enter"
[34559] "according" "names"
[34561] "Gojuon" "Japan's"
[34563] "fifty-sound" "phonetic"
[34565] "order" "also"
[34567] "used" "dictionaries"
[34569] "India" "Indo"
[34571] "Japanese" "transliteration"
[34573] "march" "21"
[34575] "boxer" "Mary"
[34577] "Kom" "men's"
[34579] "hockey" "captain"
[34581] "Manpreet" "Singh"
[34583] "flag-bearers" "Russian"
[34585] "contingent" "compete"
[34587] "acronym" "ROC"
[34589] "Russian" "Olympic"
[34591] "Committee" "third"
[34593] "enter" "Greece"
[34595] "Refugee" "Olympic"
[34597] "Team" "EOR"
[34599] "Russia" "hasbeen"
[34601] "disallowed" "use"
[34603] "country's" "name"
[34605] "flag" "anthem"
[34607] "due" "doping-related"
[34609] "sanctions" "According"
[34611] "Japanese" "alphabetical"
[34613] "order" "UAE"
[34615] "Arabu" "Shuchokoku"
[34617] "Renpo" "come"
[34619] "Algeria" "Arujeria"
[34621] "Australia" "Osutoraria"
[34623] "Austria" "Osutoria"
[34625] "37" "38"
[34627] "respectively" "coming"
[34629] "nations" "Uzbekistan"
[34631] "Uzubekisutan" "Uruguay"
[34633] "Uruguai" "1964"
[34635] "Summer" "Games"
[34637] "Tokyo" "1972"
[34639] "Winter" "Games"
[34641] "Sapporo" "1998"
[34643] "Winter" "Games"
[34645] "Nagano" "also"
[34647] "athletes" "marched"
[34649] "according" "Japanese"
[34651] "alphabetical" "order"
[34653] "Classification" "Language"
[34655] "ENGLISH" "Publication-Type"
[34657] "Newspaper" "Body"
[34659] "Promising" "14"
[34661] "top" "world"
[34663] "23" "course"
[34665] "travelled" "Neeraj"
[34667] "Chopra" "eyes"
[34669] "Naseem" "Ahmad"
[34671] "javelin" "Olympic"
[34673] "gold" "winner's"
[34675] "coach" "Promising"
[34677] "14" "top"
[34679] "world" "23"
[34681] "course" "travelled"
[34683] "India's" "new"
[34685] "hero" "Neeraj"
[34687] "Chopra" "eyes"
[34689] "Naseem" "Ahmad"
[34691] "javelin" "Olympic"
[34693] "gold" "winner's"
[34695] "coach" "formative"
[34697] "years" "Panchkula's"
[34699] "Haryana" "Sports"
[34701] "Department" "Residential"
[34703] "Academy" "came"
[34705] "academy" "14"
[34707] "2011" "looked"
[34709] "like" "16"
[34711] "sturdy" "amazingly"
[34713] "receptive" "whatever"
[34715] "told" "Ahmad"
[34717] "told" "Telegraph"
[34719] "Sunday" "Ahmad"
[34721] "remembers" "Neeraj's"
[34723] "love" "javelin"
[34725] "obsessed" "javelin"
[34727] "practice" "used"
[34729] "YouTube" "watching"
[34731] "javelin" "videos"
[34733] "Neeraj" "scripted"
[34735] "history" "Saturday"
[34737] "winning" "India's"
[34739] "maiden" "athletics"
[34741] "medal" "Olympics"
[34743] "best" "throw"
[34745] "87.58m" "Neeraj"
[34747] "made" "lot"
[34749] "people" "famous"
[34751] "Ahmad" "honest"
[34753] "enough" "admit"
[34755] "enjoying" "moment"
[34757] "sun" "paper"
[34759] "managed" "get"
[34761] "hold" "Sunday"
[34763] "evening" "Ahmad"
[34765] "middle" "conversation"
[34767] "hung" "since"
[34769] "one" "television"
[34771] "channel" "come"
[34773] "interview" "left"
[34775] "back" "tripod"
[34777] "tired" "now"
[34779] "Neeraj" "made"
[34781] "famous" "phone"
[34783] "stopped" "ringing"
[34785] "yes" "enjoying"
[34787] "attention" "said"
[34789] "Ahmad" "ridiculed"
[34791] "idea" "Neeraj"
[34793] "obese" "well-built"
[34795] "motapa" "obesity"
[34797] "bakwas" "wrong"
[34799] "surprised" "someone"
[34801] "claims" "started"
[34803] "throwing" "ganna"
[34805] "sugarcane" "sticks"
[34807] "hurling" "bhalla"
[34809] "javelin" "Anything"
[34811] "possible" "now"
[34813] "won" "gold"
[34815] "yes" "came"
[34817] "Panchkula" "Panipat"
[34819] "made" "sure"
[34821] "lot" "core"
[34823] "exercises" "everything"
[34825] "whatever" "told"
[34827] "said" "Ahmad"
[34829] "last" "spoke"
[34831] "Neeraj" "Europe"
[34833] "Tokyo" "Olympics"
[34835] "Europe" "spoke"
[34837] "told" "going"
[34839] "gold" "Otherwise"
[34841] "good" "friend"
[34843] "Narender" "Ranbir"
[34845] "used" "keep"
[34847] "updated" "Narender"
[34849] "javelin" "thrower"
[34851] "represented" "India"
[34853] "2012" "2016"
[34855] "Paralympics" "close"
[34857] "Ahmad" "said"
[34859] "Next" "year"
[34861] "Neeraj" "packed"
[34863] "schedule" "Commonwealth"
[34865] "Games" "Asian"
[34867] "Games" "World"
[34869] "Athletics" "Championships"
[34871] "focus" "Olympic"
[34873] "champion" "calm"
[34875] "head" "able"
[34877] "handle" "pressure"
[34879] "Athletic" "Federation"
[34881] "India" "AFI"
[34883] "president" "Adille"
[34885] "Sumariwalla" "said"
[34887] "man" "everyone"
[34889] "watching" "Ahmad"
[34891] "said" "Overwhelmed"
[34893] "Klaus" "Bartonietz"
[34895] "bio-mechanics" "expert"
[34897] "guided" "Neeraj"
[34899] "gold" "Sunday"
[34901] "said" "felt"
[34903] "overwhelmed" "feel"
[34905] "overwhelmed" "Neeraj"
[34907] "able" "win"
[34909] "medal" "bronze"
[34911] "silver" "gold"
[34913] "became" "best"
[34915] "javelin" "thrower"
[34917] "world" "Bartonietz"
[34919] "said" "short"
[34921] "clip" "released"
[34923] "AFI" "Classification"
[34925] "Language" "ENGLISH"
[34927] "Publication-Type" "Newspaper"
[34929] "Body" "Swimmer"
[34931] "Ariarne" "Titmus"
[34933] "stunned" "American"
[34935] "defending" "champion"
[34937] "Katie" "Ledecky"
[34939] "clinch" "elusive"
[34941] "gold" "medal"
[34943] "Termed" "biggest"
[34945] "sporting" "event"
[34947] "world" "medal"
[34949] "Olympics" "every"
[34951] "athlete" "dreams"
[34953] "400m" "freestyle"
[34955] "swimming" "competition"
[34957] "ongoing" "Tokyo"
[34959] "2020" "Olympics"
[34961] "Australian" "swimming"
[34963] "sensation" "Ariarne"
[34965] "Titmus" "stunned"
[34967] "American" "defending"
[34969] "champion" "Katie"
[34971] "Ledecky" "clinch"
[34973] "elusive" "gold"
[34975] "medal" "things"
[34977] "went" "crazy"
[34979] "win" "Australian"
[34981] "biggest" "coach"
[34983] "grabbed" "attention"
[34985] "coaching" "passionate"
[34987] "celebration" "Dean"
[34989] "Boxall" "got"
[34991] "heads" "turning"
[34993] "coach" "seen"
[34995] "celebrating" "win"
[34997] "dugout" "Boxall"
[34999] "known" "jubilant"
[35001] "celebration" "expressed"
[35003] "emotions" "like"
[35005] "Meanwhile" "battle"
[35007] "two" "swimming"
[35009] "greats" "disappoint"
[35011] "fans" "women"
[35013] "locked" "intense"
[35015] "competition" "however"
[35017] "end" "Titmus"
[35019] "created" "new"
[35021] "Oceania" "record"
[35023] "defeat" "Ledecky"
[35025] "United" "States"
[35027] "star" "leading"
[35029] "competition" "halfway"
[35031] "mark" "Australian"
[35033] "overtook" "American"
[35035] "350m" "Aussie"
[35037] "finished" "race"
[35039] "3" "56.69"
[35041] "Ledecky" "chance"
[35043] "avenge" "defeat"
[35045] "face" "Titmus"
[35047] "200m" "freestyle"
[35049] "800m" "freestyle"
[35051] "later" "Classification"
[35053] "Language" "ENGLISH"
[35055] "Publication-Type" "Newspaper"
[35057] "Body" "India's"
[35059] "6" "seed"
[35061] "PV" "Sindhu"
[35063] "take" "China's"
[35065] "8" "seed"
[35067] "Bing" "Jiao"
[35069] "Tokyo" "Olympics"
[35071] "badminton" "women's"
[35073] "singles" "bronze"
[35075] "medal" "match"
[35077] "Musashino" "Forest"
[35079] "Sport" "Plaza"
[35081] "Sunday" "evening"
[35083] "Sindhu" "lost"
[35085] "semi-final" "21-18"
[35087] "21-12" "40"
[35089] "minutes" "world"
[35091] "1" "Tai"
[35093] "Tzu" "Ying"
[35095] "Chinese" "Taipei"
[35097] "Bing" "Jiao"
[35099] "went" "compatriot"
[35101] "top" "seed"
[35103] "Chen" "Yu"
[35105] "Fei" "China"
[35107] "21-16" "13-21"
[35109] "21-12" "79"
[35111] "minutes" "semi-final"
[35113] "PV" "Sindhu"
[35115] "reached" "final"
[35117] "Rio" "2016"
[35119] "Olympics" "badminton"
[35121] "women's" "singles"
[35123] "went" "Carolina"
[35125] "Marin" "Spain"
[35127] "finish" "silver"
[35129] "medal" "Head-to-head"
[35131] "per" "Olympics.com"
[35133] "World" "7"
[35135] "PV" "Sindhu"
[35137] "6-9" "win-loss"
[35139] "record" "world"
[35141] "9" "24-year"
[35143] "old" "Bing"
[35145] "Jiao" "26-year"
[35147] "old" "Indian"
[35149] "won" "recent"
[35151] "meeting" "World"
[35153] "Tour" "Finals"
[35155] "straight" "games"
[35157] "December" "2019"
[35159] "end" "string"
[35161] "three" "successive"
[35163] "losses" "Chinese"
[35165] "player" "Bing"
[35167] "Jiao" "plays"
[35169] "left-handed" "won"
[35171] "women's" "singles"
[35173] "bronze" "medal"
[35175] "2018" "World"
[35177] "Championships" "Nanjing"
[35179] "PV" "Sindhu"
[35181] "shown" "added"
[35183] "dimensions" "game"
[35185] "Tokyo" "Olympics"
[35187] "moved" "defended"
[35189] "better" "appeared"
[35191] "calmer" "made"
[35193] "fewer" "errors"
[35195] "also" "pinned"
[35197] "deep" "backhand"
[35199] "corner" "much"
[35201] "apart" "match"
[35203] "Tai" "Tzu"
[35205] "Ying" "powerful"
[35207] "forehand" "crosscourt"
[35209] "slice" "played"
[35211] "behind" "shoulders"
[35213] "stood" "among"
[35215] "Sindhu's" "weapons"
[35217] "remains" "seen"
[35219] "enough" "overcome"
[35221] "challenge" "posed"
[35223] "Bing" "Jiao"
[35225] "Timings" "IST"
[35227] "August" "1"
[35229] "Sunday" "Women's"
[35231] "singles" "bronze"
[35233] "medal" "match"
[35235] "PV" "Sindhu"
[35237] "India" "vs"
[35239] "Bing" "Jiao"
[35241] "China" "5"
[35243] "00" "PM"
[35245] "IST" "watch"
[35247] "Tokyo" "Olympics"
[35249] "badminton" "women's"
[35251] "singles" "bronze"
[35253] "medal" "match"
[35255] "telecast" "live"
[35257] "Sony" "TEN"
[35259] "2" "Sony"
[35261] "TEN" "2"
[35263] "HD" "Sony"
[35265] "SIX" "Sony"
[35267] "SIX" "HD"
[35269] "TV" "channels"
[35271] "India" "Sony"
[35273] "TEN" "3"
[35275] "Sony" "TEN"
[35277] "3" "HD"
[35279] "Sony" "TEN"
[35281] "4" "Sony"
[35283] "TEN" "4"
[35285] "HD" "broadcast"
[35287] "Tokyo" "2020"
[35289] "regional" "languages"
[35291] "Live" "streaming"
[35293] "Tokyo" "Olympics"
[35295] "badminton" "women's"
[35297] "singles" "bronze"
[35299] "medal" "match"
[35301] "available" "Sony"
[35303] "Liv" "Live"
[35305] "broadcast" "subject"
[35307] "Sony" "Sports"
[35309] "Network" "Classification"
[35311] "Language" "ENGLISH"
[35313] "Publication-Type" "Newspaper"
[35315] "Body" "Indore"
[35317] "second" "day"
[35319] "Tokyo" "Olympics"
[35321] "Free" "Press"
[35323] "welcomed" "former"
[35325] "international" "hockey"
[35327] "player" "coach"
[35329] "Mir" "Ranjan"
[35331] "Negi" "guest"
[35333] "editor" "Saturday"
[35335] "goal" "keeper"
[35337] "went" "coach"
[35339] "Indian" "men"
[35341] "women" "hockey"
[35343] "teams" "Negi"
[35345] "quite" "optimistic"
[35347] "hockey" "team"
[35349] "representing" "country"
[35351] "Olympics" "time"
[35353] "best" "team"
[35355] "last" "many"
[35357] "years" "go"
[35359] "Olympics" "quite"
[35361] "confident" "podium"
[35363] "finish" "time"
[35365] "said" "confidently"
[35367] "praise" "weight-lifter"
[35369] "Meerabai" "Chanu"
[35371] "won" "silver"
[35373] "medal" "49"
[35375] "kg" "category"
[35377] "Saturday" "good"
[35379] "start" "country"
[35381] "good" "omen"
[35383] "said" "beginners"
[35385] "mega-hit" "movie"
[35387] "Chak" "De"
[35389] "India" "inspired"
[35391] "Negi's" "exploits"
[35393] "Shahrukh" "Khan"
[35395] "essaying" "role"
[35397] "reel" "life"
[35399] "quite" "happy"
[35401] "Team" "India's"
[35403] "3-2" "victory"
[35405] "New" "Zealand"
[35407] "opening" "match"
[35409] "Tokyo" "Olympics"
[35411] "positive" "sign"
[35413] "Team's" "exploits"
[35415] "kick" "start"
[35417] "revival" "Indian"
[35419] "Hockey" "said"
[35421] "optimistic" "men"
[35423] "even" "women"
[35425] "team" "surprise"
[35427] "people" "situation"
[35429] "women" "hockey"
[35431] "good" "depicted"
[35433] "Chak" "De"
[35435] "movie" "sponsors"
[35437] "support" "still"
[35439] "girls" "performing"
[35441] "well" "keep"
[35443] "boosting" "play"
[35445] "terrific" "unit"
[35447] "said" "Negi"
[35449] "hails" "Indore"
[35451] "part" "coaching"
[35453] "team" "guided"
[35455] "Dhanraj" "Pillay-led"
[35457] "team" "Asian"
[35459] "Games" "title"
[35461] "triumph" "1998"
[35463] "also" "coach"
[35465] "guided" "Indian"
[35467] "Eves" "Commonwealth"
[35469] "Games" "title"
[35471] "2002" "Turning"
[35473] "men's" "hockey"
[35475] "team" "said"
[35477] "current" "team"
[35479] "playing" "unit"
[35481] "Every" "player"
[35483] "performing" "particularly"
[35485] "senior" "players"
[35487] "global" "tournaments"
[35489] "like" "Olympics"
[35491] "seniors" "hold"
[35493] "key" "team"
[35495] "always" "perform"
[35497] "big" "stage"
[35499] "added" "Praising"
[35501] "goalkeeper" "PR"
[35503] "Sreejesh" "executed"
[35505] "full-stretch" "dive"
[35507] "right" "deny"
[35509] "New" "Zealand"
[35511] "equalizer" "moments"
[35513] "later" "pulled"
[35515] "another" "remarkable"
[35517] "save" "open"
[35519] "play" "ensure"
[35521] "Team" "India's"
[35523] "winning" "campaign"
[35525] "Saturday" "said"
[35527] "Goalkeeper" "quite"
[35529] "crucial" "Sreejesh"
[35531] "currently" "playing"
[35533] "best" "hockey"
[35535] "former" "coach"
[35537] "also" "applauded"
[35539] "Harmanpreet" "denied"
[35541] "hat-trick" "opener"
[35543] "New" "Zealand"
[35545] "goalkeeper's" "brilliance"
[35547] "Currently" "fourth"
[35549] "best" "team"
[35551] "world" "good"
[35553] "thing" "beaten"
[35555] "top" "three"
[35557] "teams" "major"
[35559] "tournaments" "good"
[35561] "sign" "us"
[35563] "said" "gave"
[35565] "semi-final" "list"
[35567] "India" "Holland"
[35569] "Germany" "Australia"
[35571] "Argentina" "Spain"
[35573] "dark" "horses"
[35575] "Though" "quite"
[35577] "hopeful" "good"
[35579] "medal" "haul"
[35581] "refused" "give"
[35583] "numbers" "quite"
[35585] "tough" "sports"
[35587] "activities" "across"
[35589] "globe" "remained"
[35591] "limbo" "last"
[35593] "one" "year"
[35595] "owing" "corona"
[35597] "unaware" "players"
[35599] "prepared" "tournament"
[35601] "Classification" "Language"
[35603] "ENGLISH" "Publication-Type"
[35605] "Newspaper" "Body"
[35607] "Tokyo" "Olympics"
[35609] "Aug" "7"
[35611] "Neeraj" "Chopra"
[35613] "Saturday" "dedicated"
[35615] "Olympic" "gold"
[35617] "legendry" "sprinter"
[35619] "Milkha" "Singh"
[35621] "died" "Covid"
[35623] "June" "year"
[35625] "Milkha" "Singh"
[35627] "wanted" "hear"
[35629] "national" "anthem"
[35631] "stadium" "longer"
[35633] "us" "dream"
[35635] "fulfilled" "Chopra"
[35637] "said" "dedicating"
[35639] "gold" "iconic"
[35641] "sprinter" "finished"
[35643] "fourth" "1960"
[35645] "Rome" "Olympics"
[35647] "Today" "Chopra"
[35649] "won" "first"
[35651] "gold" "India"
[35653] "Tokyo" "Olympics"
[35655] "threw" "longest"
[35657] "throw" "87.58m"
[35659] "finals" "claim"
[35661] "country's" "first"
[35663] "track-and-field" "medal"
[35665] "became" "second"
[35667] "Indian" "win"
[35669] "individual" "gold"
[35671] "Olympics" "Dad"
[35673] "waited" "many"
[35675] "years" "happen"
[35677] "dream" "finally"
[35679] "come" "true"
[35681] "India's" "first"
[35683] "athletic" "gold"
[35685] "crying" "tweet"
[35687] "sure" "dad"
[35689] "crying" "Thank"
[35691] "making" "happen"
[35693] "Jeev" "posted"
[35695] "win" "us"
[35697] "first-ever" "athletics"
[35699] "gold" "medal"
[35701] "#OlympicGames" "even"
[35703] "dedicated" "father"
[35705] "Milkha" "family"
[35707] "eternally" "grateful"
[35709] "honour" "added"
[35711] "iconic" "sprinter"
[35713] "fondly" "known"
[35715] "Flying" "Sikh"
[35717] "often" "talked"
[35719] "deep" "desire"
[35721] "see" "Indian"
[35723] "win" "track"
[35725] "field" "Olympic"
[35727] "medal" "1984"
[35729] "Los" "Angeles"
[35731] "Olympics" "PT"
[35733] "Usha" "came"
[35735] "close" "winning"
[35737] "medal" "women's"
[35739] "400m" "hurdles"
[35741] "like" "Milkha"
[35743] "finished" "fourth"
[35745] "Published" "HT"
[35747] "Digital" "Content"
[35749] "Services" "permission"
[35751] "MINT" "query"
[35753] "respect" "article"
[35755] "content" "requirement"
[35757] "please" "contact"
[35759] "Editor" "Classification"
[35761] "Language" "ENGLISH"
[35763] "Publication-Type" "Newspaper"
[35765] "Body" "India"
[35767] "July" "24"
[35769] "Actor" "Anushka"
[35771] "Sharma" "love"
[35773] "Olympian" "Mirabai"
[35775] "Chanu's" "Olympics"
[35777] "special" "earrings"
[35779] "beautiful" "meaning"
[35781] "behind" "Mirabai"
[35783] "opened" "country's"
[35785] "account" "Tokyo"
[35787] "Olympics" "Saturday"
[35789] "silver" "medal"
[35791] "win" "49kg"
[35793] "weightlifting" "category"
[35795] "Anushka" "took"
[35797] "Instagram" "Stories"
[35799] "Wednesday" "call"
[35801] "Mirabai" "beauty"
[35803] "even" "made"
[35805] "special" "mention"
[35807] "earrings" "purple"
[35809] "heart" "emoji"
[35811] "captioned" "post"
[35813] "Mirabai's" "earrings"
[35815] "gift" "mother"
[35817] "sold" "jewellery"
[35819] "five" "years"
[35821] "ago" "hope"
[35823] "earrings" "bring"
[35825] "good" "luck"
[35827] "happen" "Rio"
[35829] "2016" "Games"
[35831] "Mirabai" "made"
[35833] "little" "sacrifice"
[35835] "count" "Tokyo"
[35837] "saw" "earrings"
[35839] "TV" "gave"
[35841] "2016" "Rio"
[35843] "Olympics" "made"
[35845] "gold" "pieces"
[35847] "savings" "brings"
[35849] "luck" "success"
[35851] "Leima" "told"
[35853] "PTI" "home"
[35855] "Manipur" "tears"
[35857] "seeing" "also"
[35859] "moment" "won"
[35861] "medal" "father"
[35863] "Saikhom" "Kriti"
[35865] "Meitei" "also"
[35867] "tears" "Tears"
[35869] "joy" "hard"
[35871] "work" "led"
[35873] "success" "26-year-old"
[35875] "lifted" "total"
[35877] "202kg" "87kg"
[35879] "115kg" "better"
[35881] "Karnam" "Malleswari's"
[35883] "bronze" "2000"
[35885] "Sydney" "Olympics"
[35887] "Anushka" "Bollywood"
[35889] "star" "praise"
[35891] "Mirabai" "big"
[35893] "win" "Anil"
[35895] "Kapoor" "wrote"
[35897] "Congratulations" "@mirabai_chanu"
[35899] "incredible" "#TeamIndia"
[35901] "#Cheer4India" "Abhishek"
[35903] "Bachchan" "wrote"
[35905] "Congratulations" "@mirabai_chanu"
[35907] "bringing" "India"
[35909] "silver" "medal"
[35911] "weightlifting" "giving"
[35913] "us" "strong"
[35915] "start" "Swara"
[35917] "Bhasker" "said"
[35919] "many" "congratulations"
[35921] "#MirabaiChanu" "May"
[35923] "go" "looooong"
[35925] "strong" "Randeep"
[35927] "Hooda" "said"
[35929] "Congratulations" "#MirabaiChanu"
[35931] "opening" "account"
[35933] "#OlympicGames" "#silver"
[35935] "thank" "hard"
[35937] "work" "competitive"
[35939] "spirit" "Published"
[35941] "HT" "Digital"
[35943] "Content" "Services"
[35945] "permission" "Hindustan"
[35947] "Times" "query"
[35949] "respect" "article"
[35951] "content" "requirement"
[35953] "please" "contact"
[35955] "Editor" "Classification"
[35957] "Language" "ENGLISH"
[35959] "Publication-Type" "Newswire"
[35961] "Body" "thrilling"
[35963] "56-minute" "women's"
[35965] "singles" "badminton"
[35967] "quarter-final" "clash"
[35969] "PV" "Sindhu"
[35971] "defeated" "Japan's"
[35973] "Akane" "Yamaguchi"
[35975] "making" "way"
[35977] "entry" "semi-final"
[35979] "Several" "Indian"
[35981] "film" "stars"
[35983] "Friday" "congratulated"
[35985] "badminton" "player"
[35987] "PV" "Sindhu"
[35989] "latest" "win"
[35991] "Tokyo" "Olympics"
[35993] "Farhan" "Akhtar"
[35995] "Taapsee" "Pannu"
[35997] "Suriya" "Nithiin"
[35999] "Lakshmi" "Manchu"
[36001] "among" "others"
[36003] "took" "social"
[36005] "media" "expressed"
[36007] "pride" "Sindhu"
[36009] "great" "game"
[36011] "@Pvsindhu1" "us"
[36013] "edge" "seats"
[36015] "Wow" "best"
[36017] "semi's" "#Tokyo2020"
[36019] "#Badminton" "#TeamIndia"
[36021] "Farhan" "Akhtar"
[36023] "tweeted" "actor"
[36025] "played" "athletes"
[36027] "films" "Bhaag"
[36029] "Milkha" "Bhaag"
[36031] "Toofan" "Taapsee"
[36033] "Pannu" "set"
[36035] "play" "cricketer"
[36037] "Shabaash" "Mithu"
[36039] "also" "congratulated"
[36041] "PV" "Sindhu"
[36043] "actor" "posted"
[36045] "Twitter" "semis"
[36047] "@Pvsindhu1" "bring"
[36049] "home" "Lakshmi"
[36051] "Manchu" "wrote"
[36053] "Twitter" "thrilling"
[36055] "match" "girl"
[36057] "@Pvsindhu1" "Semi-Finals"
[36059] "come" "celebs"
[36061] "expressed" "excitement"
[36063] "PV" "Sindhu"
[36065] "social" "media"
[36067] "great" "game"
[36069] "@Pvsindhu1" "us"
[36071] "edge" "seats"
[36073] "Wow" "best"
[36075] "semi's" "#Tokyo2020"
[36077] "#Badminton" "#TeamIndia"
[36079] "Farhan" "Akhtar"
[36081] "@FarOutAkhtar" "July"
[36083] "30" "2021"
[36085] "semis" "@Pvsindhu1"
[36087] "bring" "home"
[36089] "taapsee" "pannu"
[36091] "@taapsee" "July"
[36093] "30" "2021"
[36095] "Woooow" "Rockstar"
[36097] "brilliant" "Suriya"
[36099] "Sivakumar" "@Suriya_offl"
[36101] "July" "30"
[36103] "2021" "proud"
[36105] "moment" "India"
[36107] "see" "@Pvsindhu1"
[36109] "entering" "semi"
[36111] "finals" "congratulations"
[36113] "best" "nithiin"
[36115] "@actor_nithiin" "July"
[36117] "30" "2021"
[36119] "Indian" "pride"
[36121] "@Pvsindhu1" "storms"
[36123] "semi" "finals"
[36125] "Congratulations" "best"
[36127] "#PVSindu" "#OlympicGames"
[36129] "#GoForGold" "#Tokyo2020"
[36131] "#TokyoOlympics2020" "Manoj"
[36133] "Manchu" "@HeroManoj1"
[36135] "July" "30"
[36137] "2021" "Congratulations"
[36139] "@Pvsindhu1" "reaching"
[36141] "semi" "finals"
[36143] "#Tokyo2020" "Now"
[36145] "just" "2"
[36147] "matches" "win"
[36149] "Go" "Girl"
[36151] "best" "wishes"
[36153] "#Olympics" "#IndiaTodayAtOlympics"
[36155] "Anil" "Ravipudi"
[36157] "@AnilRavipudi" "July"
[36159] "30" "2021"
[36161] "thrilling" "match"
[36163] "girl" "@Pvsindhu1"
[36165] "Semi-Finals" "come"
[36167] "#Olympics2020" "Lakshmi"
[36169] "Manchu" "@LakshmiManchu"
[36171] "July" "30"
[36173] "2021" "Congratulations"
[36175] "@Pvsindhu1" "reaching"
[36177] "semifinals" "#Tokyo2020"
[36179] "Go" "Gold"
[36181] "Wishing" "best"
[36183] "#Olympics" "Bobby"
[36185] "@dirbobby" "July"
[36187] "30" "2021"
[36189] "Well" "done"
[36191] "@Pvsindhu1" "way"
[36193] "go" "#Tokyo2020"
[36195] "Gopichandh" "Malineni"
[36197] "@megopichand" "July"
[36199] "30" "2021"
[36201] "thrilling" "56-minute"
[36203] "women's" "singles"
[36205] "badminton" "quarter-final"
[36207] "clash" "PV"
[36209] "Sindhu" "defeated"
[36211] "Japan's" "Akane"
[36213] "Yamaguchi" "making"
[36215] "way" "entry"
[36217] "semi-final" "26-year-old"
[36219] "shuttler" "previously"
[36221] "won" "silver"
[36223] "2016" "Rio"
[36225] "Olympics" "Classification"
[36227] "Language" "ENGLISH"
[36229] "Publication-Type" "Newspaper"
[36231] "Body" "Boxer"
[36233] "M" "C"
[36235] "Mary" "Kom"
[36237] "men's" "hockey"
[36239] "team" "skipper"
[36241] "Manpreet" "Singh"
[36243] "country's" "flag"
[36245] "bearers" "opening"
[36247] "ceremony" "Tokyo"
[36249] "Olympics" "held"
[36251] "Friday" "view"
[36253] "COVID-19" "concerns"
[36255] "Japanese" "capital"
[36257] "Indian" "Olympic"
[36259] "Association" "announced"
[36261] "Monday" "Manika"
[36263] "Batra" "Sharath"
[36265] "Kamal" "Sutirtha"
[36267] "Mukherjee" "G"
[36269] "Sathiyan" "Table"
[36271] "Tennis" "team"
[36273] "attend" "ceremony"
[36275] "Amit" "Ashish"
[36277] "Kumar" "along"
[36279] "Kom" "among"
[36281] "eight" "boxers"
[36283] "present" "function"
[36285] "Six" "Indian"
[36287] "officials" "take"
[36289] "part" "opening"
[36291] "ceremony" "first"
[36293] "India" "two"
[36295] "flag-bearers" "one"
[36297] "male" "one"
[36299] "female" "upcoming"
[36301] "Tokyo" "Games"
[36303] "ensure" "gender"
[36305] "parity" "recently"
[36307] "informed" "IOA"
[36309] "chief" "chief"
[36311] "Narinder" "Batra"
[36313] "truly" "honoured"
[36315] "get" "opportunity"
[36317] "leading" "team"
[36319] "opening" "ceremony"
[36321] "thank" "sports"
[36323] "ministry" "IOA"
[36325] "naming" "added"
[36327] "motivation" "promise"
[36329] "best" "medal"
[36331] "Mary" "Kokm"
[36333] "told" "PTI"
[36335] "named" "one"
[36337] "flag" "bearers"
[36339] "amazing" "speechless"
[36341] "think" "huge"
[36343] "honour" "named"
[36345] "Flag" "Bearer"
[36347] "opening" "ceremony"
[36349] "alongside" "incredible"
[36351] "Mary" "Kom"
[36353] "Manpreet" "quoted"
[36355] "saying" "Hockey"
[36357] "India" "release"
[36359] "ceremony" "India"
[36361] "serial" "number"
[36363] "21" "march"
[36365] "past" "sequence"
[36367] "march" "past"
[36369] "per" "Japanese"
[36371] "alphabet" "six"
[36373] "officials" "can"
[36375] "participate" "participating"
[36377] "nation" "total"
[36379] "127" "athletes"
[36381] "across" "18"
[36383] "sports" "disciplines"
[36385] "India" "participating"
[36387] "Olympics" "biggest-ever"
[36389] "contingent" "India"
[36391] "sending" "Olympics"
[36393] "69" "cumulative"
[36395] "events" "across"
[36397] "18" "sport"
[36399] "disciplines" "India"
[36401] "participate" "also"
[36403] "highest" "ever"
[36405] "country" "Classification"
[36407] "Language" "ENGLISH"
[36409] "Publication-Type" "Newspaper"
[36411] "Body" "India"
[36413] "Aug" "5"
[36415] "India" "men's"
[36417] "hockey" "team"
[36419] "scripted" "history"
[36421] "Thursday" "defeated"
[36423] "Germany" "5-4"
[36425] "win" "bronze"
[36427] "medal" "Tokyo"
[36429] "Olympics" "2020"
[36431] "thrilling" "encounter"
[36433] "two" "teams"
[36435] "saw" "India"
[36437] "come" "back"
[36439] "behind" "twice"
[36441] "push" "win"
[36443] "Simranjeet" "Singh"
[36445] "scored" "twice"
[36447] "Harmanpreet" "Singh"
[36449] "Rupinder" "Pal"
[36451] "Singh" "Hardik"
[36453] "Singh" "scored"
[36455] "one" "goal"
[36457] "apiece" "India"
[36459] "clinched" "bronze"
[36461] "medal" "India's"
[36463] "first" "Olympic"
[36465] "medal" "hockey"
[36467] "since" "gold"
[36469] "medal" "win"
[36471] "Tokyo" "Olympics"
[36473] "1980" "Moscow"
[36475] "Prime" "Minister"
[36477] "Narendra" "Modi"
[36479] "congratulated" "team"
[36481] "tweet" "said"
[36483] "nation" "proud"
[36485] "efforts" "put"
[36487] "hockey" "players"
[36489] "Tokyo" "Highlights"
[36491] "India" "won"
[36493] "bronze" "medal"
[36495] "Tokyo" "Historic"
[36497] "day" "etched"
[36499] "memory" "every"
[36501] "Indian" "PM"
[36503] "Modi" "wrote"
[36505] "Congratulations" "Men's"
[36507] "Hockey" "Team"
[36509] "bringing" "home"
[36511] "Bronze" "feat"
[36513] "captured" "imagination"
[36515] "entire" "nation"
[36517] "especially" "youth"
[36519] "India" "proud"
[36521] "Hockey" "team"
[36523] "added" "good"
[36525] "journey" "India"
[36527] "men's" "hockey"
[36529] "team" "Tokyo"
[36531] "Olympics" "defeating"
[36533] "New" "Zealand"
[36535] "3-2" "opening"
[36537] "group" "game"
[36539] "picking" "wins"
[36541] "Germany" "2-0"
[36543] "Spain" "3-1"
[36545] "Argentina" "3-1"
[36547] "Japan" "5-3"
[36549] "group" "matches"
[36551] "Barring" "7-1"
[36553] "defeat" "Australia"
[36555] "5-2" "loss"
[36557] "semifinal" "World"
[36559] "Champions" "Belgium"
[36561] "India" "won"
[36563] "games" "Tokyo"
[36565] "Published" "HT"
[36567] "Digital" "Content"
[36569] "Services" "permission"
[36571] "Hindustan" "Times"
[36573] "query" "respect"
[36575] "article" "content"
[36577] "requirement" "please"
[36579] "contact" "Editor"
[36581] "Classification" "Language"
[36583] "ENGLISH" "Publication-Type"
[36585] "Newswire" "Body"
[36587] "Indian" "Army"
[36589] "top" "brass"
[36591] "congratulated" "Neeraj"
[36593] "Chopra" "throw"
[36595] "ongoing" "Tokyo"
[36597] "Olympics" "Chief"
[36599] "Defence" "Staff"
[36601] "General" "Bipin"
[36603] "Rawat" "said"
[36605] "23-year-old" "athlete"
[36607] "armed" "forces"
[36609] "nation" "proud"
[36611] "General" "Bipin"
[36613] "Rawat" "said"
[36615] "Neeraj" "Chopra"
[36617] "proven" "way"
[36619] "done" "Armed"
[36621] "Forces" "Nation"
[36623] "proud" "like"
[36625] "many" "Olympians"
[36627] "created" "history"
[36629] "TOKYO" "2020"
[36631] "added" "confident"
[36633] "continue" "reach"
[36635] "greater" "heights"
[36637] "years" "follow"
[36639] "achievement" "inspire"
[36641] "motivate" "sportspersons"
[36643] "aspire" "succeed"
[36645] "bring" "bigger"
[36647] "laurels" "greater"
[36649] "honour" "Nation"
[36651] "confident" "continue"
[36653] "reach" "greater"
[36655] "heights" "years"
[36657] "follow" "achievement"
[36659] "inspire" "motivate"
[36661] "sports" "persons"
[36663] "aspire" "succeed"
[36665] "bring" "bigger"
[36667] "laurels" "greater"
[36669] "honour" "Nation"
[36671] "2" "2"
[36673] "ADG" "PI"
[36675] "INDIAN" "ARMY"
[36677] "@adgpi" "Chief"
[36679] "Army" "Staff"
[36681] "General" "MM"
[36683] "Naravane" "also"
[36685] "congratulated" "Neeraj"
[36687] "Chopra" "ended"
[36689] "India's" "121-year"
[36691] "wait" "athletics"
[36693] "medal" "gold"
[36695] "javelin" "final"
[36697] "General" "MM"
[36699] "Naravane" "Ranks"
[36701] "congratulate" "Subedar"
[36703] "Neeraj" "Chopra"
[36705] "winning" "Nation's"
[36707] "first" "ever"
[36709] "Olympics" "throw"
[36711] "87.58" "meters"
[36713] "ADG" "PI"
[36715] "INDIAN" "ARMY"
[36717] "@adgpi" "Neeraj"
[36719] "Chopra" "threw"
[36721] "javelin" "87.03m"
[36723] "first" "throw"
[36725] "bettered" "87.58m"
[36727] "took" "gold"
[36729] "medal" "position"
[36731] "kept" "till"
[36733] "last" "manage"
[36735] "better" "throw"
[36737] "remaining" "four"
[36739] "attempts" "covered"
[36741] "distances" "87.03m"
[36743] "87.58m" "76.79m"
[36745] "84.24" "fourth"
[36747] "fifth" "throws"
[36749] "disqualified" "Neeraj"
[36751] "Chopra's" "gold"
[36753] "medal" "second"
[36755] "India" "individual"
[36757] "category" "Abhinav"
[36759] "Bindra" "bagged"
[36761] "top" "prize"
[36763] "19m" "Air"
[36765] "Rifle" "shooting"
[36767] "event" "China"
[36769] "ALSO" "READ"
[36771] "WATCH" "Graphic"
[36773] "Subedar" "Neeraj"
[36775] "Chopra" "Armed"
[36777] "forces" "nation"
[36779] "proud" "CDS"
[36781] "Gen" "Bipin"
[36783] "Rawat" "Olympics"
[36785] "gold" "Classification"
[36787] "Language" "ENGLISH"
[36789] "Publication-Type" "Web"
[36791] "Publication" "Body"
[36793] "India's" "Sumit"
[36795] "Nagal" "begin"
[36797] "Tokyo" "Olympics"
[36799] "men's" "singles"
[36801] "tennis" "campaign"
[36803] "Uzbekistan's" "Denis"
[36805] "Istomin" "Indian"
[36807] "women's" "doubles"
[36809] "pair" "Sania"
[36811] "Mirza" "Ankita"
[36813] "Raina" "face"
[36815] "Ukrainian" "Kichenok"
[36817] "twin" "sisters"
[36819] "Liudmyla" "Nadiia"
[36821] "first" "round"
[36823] "reported" "Olympics.com"
[36825] "Istomin" "currently"
[36827] "ranked" "197"
[36829] "compared" "Nagal's"
[36831] "ranking" "160"
[36833] "34-year" "old"
[36835] "Uzbek" "ranked"
[36837] "high" "world"
[36839] "33" "one"
[36841] "point" "also"
[36843] "defeated" "current"
[36845] "World" "1"
[36847] "Novak" "Djokovic"
[36849] "five" "sets"
[36851] "2017" "Australian"
[36853] "Open" "manages"
[36855] "get" "past"
[36857] "Istomin" "23-year-old"
[36859] "Nagal" "run"
[36861] "world" "2"
[36863] "Daniil" "Medvedev"
[36865] "25-year" "old"
[36867] "Russian" "finalist"
[36869] "Australian" "Open"
[36871] "US" "Open"
[36873] "Leander" "Paes"
[36875] "last" "Indian"
[36877] "reach" "second"
[36879] "round" "men's"
[36881] "singles" "Olympics"
[36883] "back" "Atlanta"
[36885] "1996" "went"
[36887] "win" "bronze"
[36889] "medal" "Ankita"
[36891] "Raina's" "maiden"
[36893] "Olympics" "Sania"
[36895] "Mirza" "playing"
[36897] "fourth" "Olympics"
[36899] "quite" "familiar"
[36901] "women's" "doubles"
[36903] "first-round" "opponents"
[36905] "Sania" "Mirza"
[36907] "paired" "Nadiia"
[36909] "Kichenok" "win"
[36911] "women's" "doubles"
[36913] "title" "Hobart"
[36915] "Open" "last"
[36917] "year" "tournament"
[36919] "Indian" "veteran"
[36921] "made" "comeback"
[36923] "childbirth" "Qatar"
[36925] "Open" "March"
[36927] "year" "Sania"
[36929] "Mirza" "partnering"
[36931] "Andreja" "Klepac"
[36933] "defeated" "29-year"
[36935] "old" "Kichenok"
[36937] "sisters" "round-of-16"
[36939] "women's" "doubles"
[36941] "second" "round"
[36943] "Mirza" "Raina"
[36945] "face" "eighth-seeded"
[36947] "American" "pair"
[36949] "Nicole" "Melichar"
[36951] "Alison" "Riske"
[36953] "quarter-finals" "third"
[36955] "seeds" "Netherlands"
[36957] "Kiki" "Bertens"
[36959] "Demi" "Schuurs"
[36961] "Tennis" "matches"
[36963] "Tokyo" "2020"
[36965] "held" "24"
[36967] "July" "1"
[36969] "August" "Ariake"
[36971] "Tennis" "Park"
[36973] "Tokyo" "men's"
[36975] "singles" "category"
[36977] "Tokyo" "Olympics"
[36979] "64" "players"
[36981] "played" "six"
[36983] "rounds" "women's"
[36985] "doubles" "32"
[36987] "players" "involve"
[36989] "five" "rounds"
[36991] "Indian" "tennis"
[36993] "draw" "Tokyo"
[36995] "Olympics" "Men's"
[36997] "singles" "Round"
[36999] "1" "Sumit"
[37001] "Nagal" "vs"
[37003] "Denis" "Istomin"
[37005] "Uzbekistan" "Women's"
[37007] "doubles" "Round"
[37009] "1" "Sania"
[37011] "Mirza" "Ankita"
[37013] "Raina" "vs"
[37015] "Liudmyla" "Kichenok"
[37017] "Nadiia" "Kichenok"
[37019] "Ukraine" "Classification"
[37021] "Language" "ENGLISH"
[37023] "Publication-Type" "Newspaper"
[37025] "Body" "delirious"
[37027] "India" "celebrating"
[37029] "Neeraj" "Chopra"
[37031] "quietly" "disappeared"
[37033] "camera" "camera"
[37035] "panned" "across"
[37037] "running" "elliptical"
[37039] "track" "encircled"
[37041] "victory" "arena"
[37043] "head" "held"
[37045] "high" "along"
[37047] "near-empty" "stands"
[37049] "Tricolour" "billowing"
[37051] "behind" "Subedar"
[37053] "Neeraj" "Chopra"
[37055] "running" "spectators"
[37057] "Chopra's" "lap"
[37059] "must" "message"
[37061] "gratitude" "Indian"
[37063] "Army" "nation"
[37065] "waited" "long"
[37067] "moment" "first"
[37069] "time" "Indian"
[37071] "Army" "displayed"
[37073] "guts" "glory"
[37075] "world" "stage"
[37077] "Indian" "armed"
[37079] "forces" "heroics"
[37081] "sporting" "arena"
[37083] "stuff" "legend"
[37085] "first" "sporting"
[37087] "icon" "country"
[37089] "post-Independence" "Major"
[37091] "Dhyan" "Chand"
[37093] "served" "Punjab"
[37095] "Regiment" "Milkha"
[37097] "Singh" "Flying"
[37099] "Sikh" "passed"
[37101] "away" "June"
[37103] "recruited" "sepoy"
[37105] "1951" "Paan"
[37107] "Singh" "Tomar"
[37109] "Bengal" "Engineers"
[37111] "Group" "represented"
[37113] "India" "steeplechase"
[37115] "Tokyo" "Asian"
[37117] "Games" "1958"
[37119] "Army" "boxer"
[37121] "Padam" "Bahadur"
[37123] "Malla" "first"
[37125] "win" "gold"
[37127] "medal" "1962"
[37129] "Asian" "Games"
[37131] "Jakarta" "Ignacious"
[37133] "Tirkey" "Madras"
[37135] "Engineering" "Group"
[37137] "Indian" "Army"
[37139] "awarded" "Arjuna"
[37141] "Award" "outstanding"
[37143] "contribution" "Indian"
[37145] "hockey" "Indian"
[37147] "polo" "team"
[37149] "always" "fielded"
[37151] "ace" "polo"
[37153] "players" "61st"
[37155] "Cavalry" "list"
[37157] "goes" "professional"
[37159] "point" "view"
[37161] "interest" "Indian"
[37163] "Army" "natural"
[37165] "sports" "shooting"
[37167] "mountaineering" "sailing"
[37169] "army" "operates"
[37171] "Marksmanship" "Unit"
[37173] "Mhow" "High"
[37175] "Altitude" "Warfare"
[37177] "School" "Gulmarg"
[37179] "Tenzing" "Norgay"
[37181] "first" "Indians"
[37183] "climb" "Mount"
[37185] "Everest" "army"
[37187] "starting" "Avtar"
[37189] "Singh" "Cheema"
[37191] "Mountaineer" "Narendra"
[37193] "Bull" "Kumar"
[37195] "credited" "securing"
[37197] "Siachen" "India"
[37199] "Indian" "Army"
[37201] "sailing" "team"
[37203] "trained" "Army"
[37205] "Rowing" "Node"
[37207] "College" "Military"
[37209] "Engineering" "Pune"
[37211] "India's" "armed"
[37213] "forces" "forefront"
[37215] "producing" "sportsmen"
[37217] "international" "pedigree"
[37219] "army" "adopts"
[37221] "systematic" "structured"
[37223] "method" "aim"
[37225] "attaining" "sporting"
[37227] "excellence" "Tournaments"
[37229] "held" "battalion"
[37231] "brigade" "divisional"
[37233] "command" "levels"
[37235] "every" "sporting"
[37237] "discipline" "seek"
[37239] "champions" "tournaments"
[37241] "intensely" "fought"
[37243] "naam" "izzat"
[37245] "respective" "battalions"
[37247] "best" "athletes"
[37249] "tri-services" "get"
[37251] "represent" "defence"
[37253] "forces" "national-level"
[37255] "meets" "Army"
[37257] "Sports" "Control"
[37259] "Board" "ASCB"
[37261] "set" "March"
[37263] "1919" "lines"
[37265] "British" "body"
[37267] "name" "1945"
[37269] "ASCB" "merged"
[37271] "sports" "organisations"
[37273] "three" "services"
[37275] "Services" "Sports"
[37277] "Control" "Board"
[37279] "SSCB" "formed"
[37281] "SSCB" "focuses"
[37283] "18" "inter-services"
[37285] "sports" "events"
[37287] "produced" "international"
[37289] "medallists" "shooter"
[37291] "Vijay" "Kumar"
[37293] "boxers" "Suranjoy"
[37295] "Singh" "Dingko"
[37297] "Singh" "Kaur"
[37299] "Singh" "race-walker"
[37301] "Chand" "Ram"
[37303] "hockey" "stars"
[37305] "Manohar" "Topno"
[37307] "Tirkey" "Sylvanus"
[37309] "Dung" "Dung"
[37311] "among" "others"
[37313] "going" "good"
[37315] "Indian" "sports"
[37317] "long" "time"
[37319] "Indian" "Army"
[37321] "top" "brass"
[37323] "felt" "armed"
[37325] "forces" "something"
[37327] "Thus" "programme"
[37329] "Mission" "Olympics"
[37331] "launched" "2001"
[37333] "Three" "years"
[37335] "later" "army"
[37337] "man" "Major"
[37339] "Rajyavardhan" "Singh"
[37341] "Rathore" "climbed"
[37343] "podium" "Athens"
[37345] "winning" "silver"
[37347] "medal" "shooting"
[37349] "Eight" "years"
[37351] "later" "London"
[37353] "Havildar" "Vijay"
[37355] "Kumar" "emulated"
[37357] "winning" "silver"
[37359] "shooting" "Mission"
[37361] "Olympic" "wing"
[37363] "five" "nodes"
[37365] "Army" "Sports"
[37367] "Institute" "Pune"
[37369] "Army" "Marksmanship"
[37371] "Unit" "Mhow"
[37373] "Army" "Rowing"
[37375] "Node" "Pune"
[37377] "Army" "Yachting"
[37379] "Node" "Mumbai"
[37381] "Army" "Equestrian"
[37383] "Node" "Meerut"
[37385] "working" "towards"
[37387] "producing" "world-class"
[37389] "sportsmen" "archery"
[37391] "boxing" "shooting"
[37393] "weightlifting" "wrestling"
[37395] "equestrian" "rowing"
[37397] "comes" "surprise"
[37399] "sizeable" "part"
[37401] "India's" "Olympic"
[37403] "contingent" "Tokyo"
[37405] "made" "athletes"
[37407] "Services" "Army"
[37409] "Sports" "Institute"
[37411] "Pune" "changed"
[37413] "face" "country's"
[37415] "sporting" "culture"
[37417] "unique" "multi-disciplinary"
[37419] "sports" "institute"
[37421] "imparts" "training"
[37423] "seven" "sports"
[37425] "archery" "athletics"
[37427] "boxing" "diving"
[37429] "wrestling" "fencing"
[37431] "weightlifting" "training"
[37433] "imparted" "renowned"
[37435] "foreign" "Indian"
[37437] "coaches" "qualified"
[37439] "physical" "trainers"
[37441] "supported" "team"
[37443] "specialists" "sports"
[37445] "medicine" "sports"
[37447] "physiology" "sports"
[37449] "psychology" "bio-mechanics"
[37451] "nutrition" "institute"
[37453] "provides" "modern"
[37455] "training" "infrastructure"
[37457] "equipment" "accommodation"
[37459] "environment" "sports"
[37461] "sciences" "centre"
[37463] "army's" "athletes"
[37465] "failed" "win"
[37467] "medals" "Rio"
[37469] "de" "Janeiro"
[37471] "Olympics" "2016"
[37473] "planning" "Tokyo"
[37475] "Olympics" "began"
[37477] "war" "footing"
[37479] "year" "Chopra"
[37481] "joined" "Indian"
[37483] "Army" "junior"
[37485] "commissioned" "officer"
[37487] "army" "made"
[37489] "concerted" "effort"
[37491] "nurture" "produce"
[37493] "sportspersons" "providing"
[37495] "equipment" "support"
[37497] "staff" "coaching"
[37499] "accommodation" "proper"
[37501] "diet" "athletes"
[37503] "words" "everything"
[37505] "taken" "care"
[37507] "job" "security"
[37509] "well" "Another"
[37511] "factor" "army's"
[37513] "athletes" "swear"
[37515] "discipline" "Chopra"
[37517] "says" "got"
[37519] "sense" "self-reliance"
[37521] "joining" "army"
[37523] "father" "farmer"
[37525] "mother" "housewife"
[37527] "live" "joint"
[37529] "family" "sort"
[37531] "relief" "now"
[37533] "able" "help"
[37535] "family" "financially"
[37537] "besides" "continuing"
[37539] "training" "Subedar"
[37541] "Neeraj" "Chopra"
[37543] "Indian" "Army's"
[37545] "Rajputana" "Rifles"
[37547] "winning" "lone"
[37549] "gold" "India"
[37551] "Tokyo" "Citius"
[37553] "Altius" "Fortius"
[37555] "Communis" "newly"
[37557] "modified" "motto"
[37559] "Olympics" "add"
[37561] "another" "word"
[37563] "Extremus" "farthest"
[37565] "situated" "end"
[37567] "edge" "tip"
[37569] "raise" "toast"
[37571] "sportsmanship" "Indian"
[37573] "Armed" "Forces"
[37575] "Deepam" "Chatterjee"
[37577] "former" "captain"
[37579] "Indian" "Army"
[37581] "Classification" "Language"
[37583] "ENGLISH" "Publication-Type"
[37585] "Newspaper" "Body"
[37587] "New" "Delhi"
[37589] "July" "30"
[37591] "Mirabai" "Chanu"
[37593] "Lovlina" "Borgohain"
[37595] "PV" "Sindhu"
[37597] "Ariarne" "Titmus"
[37599] "Katie" "Ledecky"
[37601] "Simone" "Biles"
[37603] "Naomi" "Osaka"
[37605] "Yui" "Ohashi"
[37607] "Tatjana" "Schoenmaker"
[37609] "Vivianne" "Meidema"
[37611] "Think" "names"
[37613] "grabbed" "attention"
[37615] "left" "mesmerised"
[37617] "first" "week"
[37619] "Olympics" "chances"
[37621] "high" "list"
[37623] "Woman" "power"
[37625] "full" "display"
[37627] "Tokyo" "Tokyo"
[37629] "Olympics" "billed"
[37631] "International" "Olympic"
[37633] "Committee" "IOC"
[37635] "first" "gender-balanced"
[37637] "Games" "history"
[37639] "nearly" "49"
[37641] "participating" "athletes"
[37643] "women" "Apart"
[37645] "volume" "women"
[37647] "also" "shifting"
[37649] "balance" "spotlight"
[37651] "towards" "Games"
[37653] "long" "largely"
[37655] "legends" "Carl"
[37657] "Lewis" "Michael"
[37659] "Phelps" "Usain"
[37661] "Bolt" "now"
[37663] "much" "Titmus"
[37665] "Biles" "Djokovic"
[37667] "trend" "closer"
[37669] "home" "127"
[37671] "athletes" "wearing"
[37673] "India" "colours"
[37675] "Games" "56"
[37677] "women" "Two"
[37679] "already" "medal"
[37681] "winners" "India's"
[37683] "ones" "far"
[37685] "Beyond" "Tokyo"
[37687] "women" "athletes"
[37689] "provided" "India"
[37691] "cheer" "going"
[37693] "back" "2012"
[37695] "London" "Olympics"
[37697] "Six" "India's"
[37699] "last" "eight"
[37701] "medal" "winners"
[37703] "women" "Saina"
[37705] "Nehwal" "bronze"
[37707] "2012" "Mary"
[37709] "Kom" "bronze"
[37711] "2012" "Sakshi"
[37713] "Malik" "bronze"
[37715] "2016" "Sindhu"
[37717] "silver" "2016"
[37719] "Chanu" "silver"
[37721] "2021" "Borgohain"
[37723] "guaranteed" "bronze"
[37725] "well" "change"
[37727] "colour" "Rewind"
[37729] "first" "medal"
[37731] "day" "Games"
[37733] "Indians" "woke"
[37735] "early" "Saturday"
[37737] "alarm" "optimism"
[37739] "Chanu" "open"
[37741] "India's" "account"
[37743] "26-year-old" "lifter"
[37745] "cool" "ice"
[37747] "lifting" "delivered"
[37749] "just" "expected"
[37751] "silver" "becoming"
[37753] "second" "Indian"
[37755] "female" "weightlifter"
[37757] "Karnam" "Malleswari"
[37759] "win" "Olympic"
[37761] "medal" "taken"
[37763] "legacy" "forward"
[37765] "weightlifting" "sport"
[37767] "inspired" "future"
[37769] "champions" "always"
[37771] "endeavour" "Malleswari"
[37773] "2000" "Sydney"
[37775] "bronze" "winner"
[37777] "tweeted" "Days"
[37779] "feat" "video"
[37781] "went" "viral"
[37783] "social" "media"
[37785] "young" "daughter"
[37787] "international" "lifter"
[37789] "Satish" "Sivalingam"
[37791] "dusting" "powder"
[37793] "hands" "lifting"
[37795] "set" "weights"
[37797] "backdrop" "Chanu's"
[37799] "Tokyo" "highlights"
[37801] "running" "TV"
[37803] "Champions" "inspire"
[37805] "children" "aspire"
[37807] "also" "goes"
[37809] "Borgohain" "locked"
[37811] "India's" "second"
[37813] "medal" "Sindhu"
[37815] "looking" "good"
[37817] "second" "Olympic"
[37819] "medal" "CA"
[37821] "Bhavani" "Devi"
[37823] "won" "match"
[37825] "first" "Indian"
[37827] "fencer" "ever"
[37829] "Olympics" "Across"
[37831] "board" "Even"
[37833] "across" "countries"
[37835] "women" "forefront"
[37837] "many" "first"
[37839] "Tokyo" "Triathlete"
[37841] "Flora" "Duffy"
[37843] "gift-wrapped" "maiden"
[37845] "gold" "medal"
[37847] "Bermuda" "tiny"
[37849] "Atlantic" "island"
[37851] "population" "around"
[37853] "63,000" "now"
[37855] "distinction" "smallest"
[37857] "country" "gold"
[37859] "medal" "history"
[37861] "Games" "really"
[37863] "just" "hope"
[37865] "inspires" "youth"
[37867] "Bermuda" "small"
[37869] "country" "mean"
[37871] "great" "things"
[37873] "world" "stage"
[37875] "Duffy" "told"
[37877] "CNN" "Also"
[37879] "great" "things"
[37881] "Schoenmaker" "South"
[37883] "African" "smashed"
[37885] "long-standing" "women's"
[37887] "200m" "breaststroke"
[37889] "world" "record"
[37891] "unreal" "time"
[37893] "2" "18.95"
[37895] "Polina" "Guryeva"
[37897] "weightlifter" "pulled"
[37899] "first-ever" "Olympic"
[37901] "medal" "Turkmenistan"
[37903] "Yui" "Ohashi"
[37905] "two-time" "gold"
[37907] "medallist" "swimmer"
[37909] "overcame" "gloom"
[37911] "depression" "shine"
[37913] "becoming" "first"
[37915] "Japanese" "woman"
[37917] "win" "multiple"
[37919] "gold" "medals"
[37921] "single" "edition"
[37923] "Also" "winning"
[37925] "multiple" "gold"
[37927] "medals" "Ariarne"
[37929] "Titmus" "20-year-old"
[37931] "walking" "talk"
[37933] "riveting" "rivalry"
[37935] "Ledecky" "American"
[37937] "giant" "Aussie"
[37939] "beaten" "200m"
[37941] "400m" "freestyle"
[37943] "Missing" "Usain"
[37945] "Bolt" "vs"
[37947] "Justin" "Gatlin"
[37949] "track" "Titmus"
[37951] "Ledecky" "taken"
[37953] "care" "pool"
[37955] "Tokyo" "Vivianne"
[37957] "Meidema" "Dutch"
[37959] "women's" "football"
[37961] "team" "striker"
[37963] "plays" "Arsenal"
[37965] "Women" "England's"
[37967] "WSL" "pumped"
[37969] "10" "goals"
[37971] "Friday" "Also"
[37973] "creating" "history"
[37975] "waters" "Jessica"
[37977] "Fox" "won"
[37979] "gold" "women's"
[37981] "canoe" "slalom"
[37983] "event" "women"
[37985] "competed" "first"
[37987] "time" "Australian"
[37989] "paddling" "icon"
[37991] "led" "campaign"
[37993] "inclusion" "Olympics"
[37995] "grateful" "women"
[37997] "coaches" "people"
[37999] "lobbied" "gender"
[38001] "equality" "sport"
[38003] "Fox" "said"
[38005] "win" "Getting"
[38007] "real" "stories"
[38009] "go" "beyond"
[38011] "history" "triumph"
[38013] "jubilation" "much"
[38015] "imperfections" "Biles"
[38017] "considered" "closest"
[38019] "perfection" "gymnastics"
[38021] "shied" "away"
[38023] "bringing" "centre"
[38025] "stage" "24-year-old"
[38027] "battling" "sexual"
[38029] "misconduct" "US"
[38031] "gymnastics" "set-up"
[38033] "racism" "country"
[38035] "years" "battling"
[38037] "mental" "health"
[38039] "Tokyo" "four-time"
[38041] "gold" "medallist"
[38043] "Rio" "pulled"
[38045] "team" "all-around"
[38047] "events" "Games"
[38049] "supposed" "stamp"
[38051] "legacy" "GOAT"
[38053] "sport" "even"
[38055] "swear" "purely"
[38057] "medals" "numbers"
[38059] "Biles" "taken"
[38061] "stand" "felt"
[38063] "comfortable" "taking"
[38065] "OK" "put"
[38067] "mental" "well-being"
[38069] "records" "even"
[38071] "middle" "biggest"
[38073] "sporting" "spectacle"
[38075] "look" "inward"
[38077] "even" "whole"
[38079] "world" "looking"
[38081] "take" "step"
[38083] "back" "even"
[38085] "eternal" "greatness"
[38087] "beckoning" "Osaka"
[38089] "another" "global"
[38091] "sporting" "icon"
[38093] "hesitate" "take"
[38095] "step" "back"
[38097] "French" "Open"
[38099] "May" "opted"
[38101] "brief" "sabbatical"
[38103] "tennis" "attend"
[38105] "issues" "mental"
[38107] "anxiety" "Yet"
[38109] "couple" "months"
[38111] "later" "Tokyo"
[38113] "given" "honour"
[38115] "lighting" "Olympic"
[38117] "cauldron" "opening"
[38119] "ceremony" "home"
[38121] "flashing" "smile"
[38123] "playing" "tennis"
[38125] "Games" "women"
[38127] "taught" "us"
[38129] "every" "facet"
[38131] "sport" "can"
[38133] "win" "can"
[38135] "lose" "can"
[38137] "inspire" "can"
[38139] "pause" "can"
[38141] "return" "stronger"
[38143] "Published" "HT"
[38145] "Digital" "Content"
[38147] "Services" "permission"
[38149] "Hindustan" "Times"
[38151] "query" "respect"
[38153] "article" "content"
[38155] "requirement" "please"
[38157] "contact" "Editor"
[38159] "Classification" "Language"
[38161] "ENGLISH" "Publication-Type"
[38163] "Newswire" "Body"
[38165] "India" "Aug"
[38167] "7" "Neeraj"
[38169] "Chopra" "Saturday"
[38171] "created" "history"
[38173] "becoming" "second"
[38175] "Indian" "win"
[38177] "individual" "gold"
[38179] "medal" "Olympics"
[38181] "shooter" "Abhinav"
[38183] "Bindra" "Neeraj"
[38185] "first" "Indian"
[38187] "120" "years"
[38189] "first" "athlete"
[38191] "independent" "India"
[38193] "win" "Olympic"
[38195] "medal" "track-and-field"
[38197] "discipline" "Neeraj"
[38199] "won" "gold"
[38201] "medal" "men's"
[38203] "javelin" "throw"
[38205] "event" "throw"
[38207] "87.58m" "second"
[38209] "attempt" "medal"
[38211] "India" "won"
[38213] "track-and-field" "events"
[38215] "back" "1900"
[38217] "British-Indian" "Norman"
[38219] "Pritchard" "won"
[38221] "two" "silver"
[38223] "medals" "Paris"
[38225] "International" "Olympic"
[38227] "Committee" "still"
[38229] "credits" "Norman"
[38231] "Pritchard's" "medals"
[38233] "India" "though"
[38235] "various" "research"
[38237] "including" "records"
[38239] "IAAF" "now"
[38241] "World" "Athletics"
[38243] "showed" "competed"
[38245] "Great" "Britain"
[38247] "Neeraj" "Chopra's"
[38249] "gold" "took"
[38251] "India's" "medal"
[38253] "count" "seven"
[38255] "Tokyo" "Olympics"
[38257] "best" "ever"
[38259] "bettering" "tally"
[38261] "six" "medals"
[38263] "London" "Olympics"
[38265] "2012" "Chopra"
[38267] "also" "became"
[38269] "sixth" "Indian"
[38271] "athlete" "win"
[38273] "individual" "medal"
[38275] "Tokyo" "2020"
[38277] "joining" "weightlifter"
[38279] "Mirabai" "Chanu"
[38281] "shuttler" "PV"
[38283] "Sindhu" "boxer"
[38285] "Lovlina" "Borgohain"
[38287] "wrestlers" "Ravi"
[38289] "Kumar" "Dahiya"
[38291] "Bajrang" "Punia"
[38293] "Neeraj" "1"
[38295] "position" "athletes"
[38297] "completed" "first"
[38299] "attempts" "87.03m"
[38301] "throw" "Indian"
[38303] "bettered" "performance"
[38305] "second" "attempt"
[38307] "87.58m" "throw"
[38309] "kept" "lead"
[38311] "Neeraj's" "third"
[38313] "attempt" "76.79m"
[38315] "farmer's" "son"
[38317] "Khandra" "village"
[38319] "near" "Panipat"
[38321] "Haryana" "took"
[38323] "athletics" "shed"
[38325] "flab" "Neeraj"
[38327] "maintained" "top"
[38329] "spot" "12"
[38331] "athletes" "trimmed"
[38333] "8" "top"
[38335] "athletes" "advanced"
[38337] "get" "three"
[38339] "attempts" "Neeraj's"
[38341] "fourth" "fifth"
[38343] "attempts" "mark"
[38345] "athlete" "chose"
[38347] "deliberately" "cross"
[38349] "line" "distances"
[38351] "count" "occasions"
[38353] "Indian" "continued"
[38355] "best" "thrower"
[38357] "end" "round"
[38359] "5" "virtue"
[38361] "monster" "throw"
[38363] "second" "attempt"
[38365] "pre-tournament" "medal"
[38367] "contender" "23-year-old"
[38369] "Chopra" "fuelled"
[38371] "country's" "expectations"
[38373] "topping" "qualification"
[38375] "round" "stunning"
[38377] "first" "round"
[38379] "throw" "86.59m"
[38381] "details" "awaited"
[38383] "Published" "HT"
[38385] "Digital" "Content"
[38387] "Services" "permission"
[38389] "Hindustan" "Times"
[38391] "query" "respect"
[38393] "article" "content"
[38395] "requirement" "please"
[38397] "contact" "Editor"
[38399] "Classification" "Language"
[38401] "ENGLISH" "Publication-Type"
[38403] "Newswire" "Body"
[38405] "Wrestler" "Ravi"
[38407] "Kumar" "Dahiya"
[38409] "Thursday" "lost"
[38411] "final" "ROC's"
[38413] "Zavur" "Uguev"
[38415] "men's" "wrestling"
[38417] "freestyle" "57kg"
[38419] "category" "ongoing"
[38421] "Tokyo" "Olympics"
[38423] "2020" "However"
[38425] "bagged" "silver"
[38427] "taking" "India's"
[38429] "medal" "tally"
[38431] "Tokyo" "Olympics"
[38433] "2020" "five"
[38435] "two" "silver"
[38437] "three" "gold"
[38439] "Meanwhile" "became"
[38441] "second" "Indian"
[38443] "wrestler" "win"
[38445] "silver" "medal"
[38447] "Olympic" "Games"
[38449] "expectations" "23-year"
[38451] "Dahiya" "become"
[38453] "India's" "youngest"
[38455] "Olympic" "champion"
[38457] "reigning" "world"
[38459] "champion" "Zavur"
[38461] "Uguev" "defended"
[38463] "well" "win"
[38465] "comfortably" "Dahiya"
[38467] "lost" "4-7"
[38469] "finals" "lost"
[38471] "Uguev" "2019"
[38473] "World" "Championship"
[38475] "also" "wrestler"
[38477] "Nahri" "village"
[38479] "Haryana" "outclassed"
[38481] "Colombia's" "Tigreros"
[38483] "Urbano" "13-2"
[38485] "opener" "outwitted"
[38487] "Bulgaria's" "Georgi"
[38489] "Valentinov" "Vangelov"
[38491] "14-4" "quarterfinals"
[38493] "semifinals" "erased"
[38495] "massive" "2-9"
[38497] "deficit" "pin"
[38499] "Nurislam" "Sanayev"
[38501] "Sushil" "Kumar"
[38503] "now" "jail"
[38505] "charges" "murder"
[38507] "Indian" "wrestler"
[38509] "made" "final"
[38511] "Olympics" "won"
[38513] "silver" "2012"
[38515] "London" "Games"
[38517] "Yogeshwar" "Dutt"
[38519] "also" "won"
[38521] "bronze" "Sushil"
[38523] "won" "bronze"
[38525] "2008" "Beijing"
[38527] "Games" "KD"
[38529] "Jadhav" "won"
[38531] "bronze" "1952"
[38533] "Helsinki" "Games"
[38535] "Sakshi" "Malik"
[38537] "become" "first"
[38539] "woman" "wrestler"
[38541] "win" "Olympic"
[38543] "medal" "clinched"
[38545] "bronze" "2016"
[38547] "Rio" "Olympic"
[38549] "Games" "Meanwhile"
[38551] "Prime" "Minister"
[38553] "Narendra" "Modi"
[38555] "hailed" "wrestler"
[38557] "Ravi" "Kumar"
[38559] "Dahiya's" "fighting"
[38561] "spirit" "tenacity"
[38563] "Ravi" "Kumar"
[38565] "Dahiya" "remarkable"
[38567] "wrestler" "fighting"
[38569] "spirit" "tenacity"
[38571] "outstanding" "Congratulations"
[38573] "winning" "Silver"
[38575] "Medal" "#Tokyo2020"
[38577] "India" "takes"
[38579] "great" "pride"
[38581] "accomplishments" "PM"
[38583] "Modi" "tweeted"
[38585] "Classification" "Language"
[38587] "ENGLISH" "Publication-Type"
[38589] "Newspaper" "Body"
[38591] "Shimla" "Aug"
[38593] "7" "Himachal"
[38595] "Pradesh" "government"
[38597] "Friday" "announced"
[38599] "award" "Rs"
[38601] "1" "crore"
[38603] "Varun" "Kumar"
[38605] "Indian" "men's"
[38607] "hockey" "team"
[38609] "won" "bronze"
[38611] "medal" "Tokyo"
[38613] "Olympics" "Kumar"
[38615] "hails" "Dalhousie"
[38617] "Chamba" "district"
[38619] "also" "appointed"
[38621] "deputy" "superintendent"
[38623] "police" "chief"
[38625] "minister" "Jai"
[38627] "Ram" "Thakur"
[38629] "said" "matter"
[38631] "pride" "Indian"
[38633] "team" "won"
[38635] "Olympics" "medal"
[38637] "hockey" "41"
[38639] "years" "said"
[38641] "Thakur" "adding"
[38643] "government" "increased"
[38645] "cash" "prize"
[38647] "Olympic" "gold"
[38649] "medal" "winners"
[38651] "Rs" "2"
[38653] "crore" "Rs"
[38655] "1.20" "crore"
[38657] "silver" "medal"
[38659] "winners" "Rs"
[38661] "1" "crore"
[38663] "bronze" "medal"
[38665] "winners" "Senior"
[38667] "Congress" "MLA"
[38669] "Dalhouse" "Asha"
[38671] "Kumari" "urged"
[38673] "CM" "build"
[38675] "sports" "complex"
[38677] "region" "told"
[38679] "House" "Kumar"
[38681] "belongs" "Gaddi"
[38683] "tribe" "Chamba"
[38685] "district" "won"
[38687] "Man" "Match"
[38689] "award" "World"
[38691] "Junior" "Hockey"
[38693] "championship" "said"
[38695] "players" "go"
[38697] "Punjab" "training"
[38699] "sport" "facilities"
[38701] "developed" "state"
[38703] "Kumar's" "family"
[38705] "also" "moved"
[38707] "Jalandhar" "years"
[38709] "ago" "Youth"
[38711] "Affairs" "Sports"
[38713] "Minister" "Rakesh"
[38715] "Pathania" "said"
[38717] "state" "government"
[38719] "avail" "Kumar's"
[38721] "services" "promoting"
[38723] "Hockey" "Himachal"
[38725] "said" "Rs"
[38727] "7-crore" "hockey"
[38729] "astroturf" "coming"
[38731] "Nahan" "Hockey"
[38733] "popular" "Nahan"
[38735] "Paonta" "Sahib"
[38737] "international" "hockey"
[38739] "centre" "setting"
[38741] "said" "Published"
[38743] "HT" "Digital"
[38745] "Content" "Services"
[38747] "permission" "Hindustan"
[38749] "Times" "query"
[38751] "respect" "article"
[38753] "content" "requirement"
[38755] "please" "contact"
[38757] "Editor" "Classification"
[38759] "Language" "ENGLISH"
[38761] "Publication-Type" "Newswire"
[38763] "Body" "Actors"
[38765] "like" "Shah"
[38767] "Rukh" "Khan"
[38769] "Kapil" "Sharma"
[38771] "Preity" "Zinta"
[38773] "Sagarika" "Ghatge"
[38775] "Randeep" "Hooda"
[38777] "Vineet" "Kumar"
[38779] "Singh" "Saiyami"
[38781] "Kher" "others"
[38783] "left" "heartfelt"
[38785] "messages" "Indian"
[38787] "men" "women's"
[38789] "hockey" "teams"
[38791] "lauding" "performances"
[38793] "Tokyo" "Olympics"
[38795] "Several" "Bollywood"
[38797] "stars" "joined"
[38799] "wish" "Indian"
[38801] "men" "women"
[38803] "hockey" "teams"
[38805] "reaching" "semi-finals"
[38807] "ongoing" "Tokyo"
[38809] "Olympics" "women's"
[38811] "team" "defeated"
[38813] "Australia" "Monday"
[38815] "seal" "spot"
[38817] "first" "time"
[38819] "history" "Olympics"
[38821] "men's" "squad"
[38823] "beat" "Great"
[38825] "Britain" "Olympics"
[38827] "first" "time"
[38829] "49" "years"
[38831] "Shah" "Rukh"
[38833] "Khan" "played"
[38835] "popular" "role"
[38837] "Kabir" "Khan"
[38839] "Bollywood" "hit"
[38841] "film" "Chak"
[38843] "De" "India"
[38845] "wished" "Team"
[38847] "India" "wit"
[38849] "Twitter" "wrote"
[38851] "Haan" "haan"
[38853] "problem" "Just"
[38855] "bring" "Gold"
[38857] "way" "back"
[38859] "billion" "family"
[38861] "members" "time"
[38863] "Dhanteras" "also"
[38865] "2nd" "Nov"
[38867] "Ex-coach" "Kabir"
[38869] "Khan" "Haan"
[38871] "haan" "problem"
[38873] "Just" "bring"
[38875] "Gold" "way"
[38877] "back" "billion"
[38879] "family" "members"
[38881] "time" "Dhanteras"
[38883] "also" "2nd"
[38885] "Nov" "Ex-coach"
[38887] "Kabir" "Khan"
[38889] "Shah" "Rukh"
[38891] "Khan" "@iamsrk"
[38893] "August" "2"
[38895] "2021" "Others"
[38897] "took" "social"
[38899] "media" "handles"
[38901] "wrote" "messages"
[38903] "real-life" "champions"
[38905] "included" "actors"
[38907] "Preity" "Zinta"
[38909] "Kapil" "Sharma"
[38911] "Randeep" "Hooda"
[38913] "Vineet" "Kumar"
[38915] "Singh" "Saiyami"
[38917] "Kher" "others"
[38919] "left" "heartfelt"
[38921] "messages" "Team"
[38923] "India" "social"
[38925] "media" "Chak"
[38927] "De" "India"
[38929] "actor" "Sagarika"
[38931] "Ghatge" "also"
[38933] "wished" "team"
[38935] "Congrats" "women"
[38937] "men" "#HockeyIndia"
[38939] "reaching" "Olympic"
[38941] "semifinals" "excited"
[38943] "extremely" "proud"
[38945] "Women" "Men's"
[38947] "teams" "wishing"
[38949] "best" "hope"
[38951] "see" "history"
[38953] "written" "Blue"
[38955] "#Olympics2020" "#JaiHind"
[38957] "#GoForGold" "#Tokyo2020"
[38959] "pic.twitter.com" "BN9iOEFZJv"
[38961] "Preity" "G"
[38963] "Zinta" "@realpreityzinta"
[38965] "August" "2"
[38967] "2021" "match"
[38969] "Super" "defending"
[38971] "Real" "imitates"
[38973] "Reel" "#ChakDeIndia"
[38975] "History" "created"
[38977] "Indian" "Women's"
[38979] "#hockeyindia" "first"
[38981] "semi" "final"
[38983] "like" "ever"
[38985] "#INDvsAUS" "#Olympics2020"
[38987] "#TokyoOlympics2020" "Randeep"
[38989] "Hooda" "@RandeepHooda"
[38991] "August" "2"
[38993] "2021" "Randeep"
[38995] "Hooda" "tweeted"
[38997] "match" "Super"
[38999] "defending" "Real"
[39001] "imitates" "Reel"
[39003] "#ChakDeIndia" "History"
[39005] "created" "Indian"
[39007] "Women's" "#hockeyindia"
[39009] "first" "semi"
[39011] "final" "like"
[39013] "ever" "#INDvsAUS"
[39015] "#Olympics2020" "#TokyoOlympics2020"
[39017] "Preity" "Zinta"
[39019] "wrote" "Congrats"
[39021] "women" "men"
[39023] "#HockeyIndia" "reaching"
[39025] "Olympic" "semifinals"
[39027] "excited" "extremely"
[39029] "proud" "Women"
[39031] "Men's" "teams"
[39033] "wishing" "best"
[39035] "hope" "see"
[39037] "history" "written"
[39039] "Blue" "#Olympics2020"
[39041] "#JaiHind" "#GoForGold"
[39043] "#Tokyo2020" "B-town"
[39045] "stars" "celebrated"
[39047] "India's" "big"
[39049] "win" "Olympics"
[39051] "Goosebumps" "tears"
[39053] "moment" "#hockeyindia"
[39055] "#Olympics2020" "Saiyami"
[39057] "Kher" "@SaiyamiKher"
[39059] "August" "2"
[39061] "2021" "Vineet"
[39063] "Kumar" "Singh"
[39065] "@vineetkumar_s" "August"
[39067] "2" "2021"
[39069] "Proud" "girls"
[39071] "n" "boys"
[39073] "#hockeyindia" "#OlympicGames"
[39075] "#TokyoOlympics" "#IndiaAtTokyo2020"
[39077] "Kapil" "Sharma"
[39079] "@KapilSharmaK9" "August"
[39081] "2" "2021"
[39083] "Yahoo" "awesome"
[39085] "congratulations" "#TeamIndia"
[39087] "#hockeyindia" "#OlympicGames"
[39089] "Karenvir" "Bohra"
[39091] "@KVBohra" "August"
[39093] "2" "2021"
[39095] "Indian" "men"
[39097] "hockey" "team"
[39099] "play" "world"
[39101] "champions" "Belgium"
[39103] "Tuesday" "place"
[39105] "final" "hoping"
[39107] "win" "first"
[39109] "medal" "since"
[39111] "1980" "Moscow"
[39113] "Olympics" "hand"
[39115] "women's" "team"
[39117] "face" "Argentina"
[39119] "Wednesday" "Classification"
[39121] "Language" "ENGLISH"
[39123] "Publication-Type" "Newspaper"
[39125] "Body" "New"
[39127] "Delhi" "Aug"
[39129] "7" "India"
[39131] "signs" "7"
[39133] "medals" "Tokyo"
[39135] "Olympics" "Board"
[39137] "Control" "Cricket"
[39139] "India" "BCCI"
[39141] "Saturday" "announced"
[39143] "cash" "rewards"
[39145] "winners" "Among"
[39147] "athletes" "bagged"
[39149] "medals" "season"
[39151] "India" "Neeraj"
[39153] "Chopra" "Mirabai"
[39155] "Chanu" "Ravi"
[39157] "Kumar" "Dahiya"
[39159] "Lovlina" "Borgohain"
[39161] "PV" "Sindhu"
[39163] "Bajrang" "Punia"
[39165] "Men's" "Hockey"
[39167] "Team" "BCCI"
[39169] "secretary" "Jay"
[39171] "Shah" "announced"
[39173] "cash" "rewards"
[39175] "medallists" "via"
[39177] "tweet" "follows"
[39179] "Rs" "1"
[39181] "crore" "gold"
[39183] "medalist" "Neeraj"
[39185] "Chopra" "Rs"
[39187] "50" "lakh"
[39189] "silver" "medalists"
[39191] "Mirabai" "Chanu"
[39193] "Ravi" "Kumar"
[39195] "Dahiya" "Rs"
[39197] "25" "lakh"
[39199] "bronze" "medalists"
[39201] "PV" "Sidhu"
[39203] "Lovlina" "Borgohain"
[39205] "Bajrang" "Punia"
[39207] "Rs" "1.25"
[39209] "crore" "Hockey"
[39211] "Men's" "Team"
[39213] "bronze" "medal"
[39215] "Neeraj" "Chopra's"
[39217] "gold" "today"
[39219] "men's" "javelin"
[39221] "throw" "India's"
[39223] "medal" "tally"
[39225] "gone" "7"
[39227] "highest" "far"
[39229] "Olympics" "India"
[39231] "now" "one"
[39233] "gold" "two"
[39235] "silver" "four"
[39237] "bronze" "medals"
[39239] "126" "athletes"
[39241] "across" "18"
[39243] "sports" "disciplines"
[39245] "India" "sent"
[39247] "biggest-ever" "contingent"
[39249] "Tokyo" "Olympics"
[39251] "Indian" "athletes"
[39253] "participated" "69"
[39255] "cumulative" "events"
[39257] "across" "highest"
[39259] "ever" "country"
[39261] "India" "first"
[39263] "medal" "came"
[39265] "weightlifting" "Mirabai"
[39267] "Chanu" "won"
[39269] "Silver" "7th"
[39271] "day" "quadrennial"
[39273] "event" "Lovlina"
[39275] "Borgohain" "secured"
[39277] "second" "medal"
[39279] "country" "boxing"
[39281] "won" "Bronze"
[39283] "Ace" "shutter"
[39285] "PV" "Sindhu"
[39287] "won" "Bronze"
[39289] "defeating" "Bing"
[39291] "Jiao" "China"
[39293] "time" "several"
[39295] "notable" "firsts"
[39297] "terms" "participation"
[39299] "Tokyo" "Olympics"
[39301] "first" "time"
[39303] "history" "fencer"
[39305] "India" "Bhavani"
[39307] "Devi" "qualified"
[39309] "Olympic" "Games"
[39311] "Published" "HT"
[39313] "Digital" "Content"
[39315] "Services" "permission"
[39317] "MINT" "query"
[39319] "respect" "article"
[39321] "content" "requirement"
[39323] "please" "contact"
[39325] "Editor" "Classification"
[39327] "Language" "ENGLISH"
[39329] "Publication-Type" "Newspaper"
[39331] "Body" "historical"
[39333] "day" "41"
[39335] "years" "India"
[39337] "won" "bronze"
[39339] "men's" "hockey"
[39341] "beating" "Germany"
[39343] "5-4" "indeed"
[39345] "time" "euphoric"
[39347] "right" "next"
[39349] "Olympics" "bring"
[39351] "medals" "another"
[39353] "41" "years"
[39355] "saw" "another"
[39357] "Negi" "said"
[39359] "one" "sleep"
[39361] "Wednesday" "night"
[39363] "big" "day"
[39365] "India" "panned"
[39367] "better" "imagined"
[39369] "Negi" "recounted"
[39371] "day" "follows"
[39373] "zero" "chance"
[39375] "teary-eyed" "win"
[39377] "game" "started"
[39379] "Germany" "started"
[39381] "high" "intensity"
[39383] "power" "clearly"
[39385] "showed" "Indian"
[39387] "team" "stand"
[39389] "chance" "Germany"
[39391] "got" "early"
[39393] "lead" "Timur"
[39395] "Oruz" "scoring"
[39397] "within" "two"
[39399] "minutes" "match"
[39401] "Germany" "troubled"
[39403] "Indian" "defence"
[39405] "first" "quarter"
[39407] "India" "came"
[39409] "back" "win"
[39411] "cost" "second"
[39413] "quarter" "India"
[39415] "saw" "Simranjeet"
[39417] "Singh" "scoring"
[39419] "well-executed" "tomahawk"
[39421] "shot" "defensive"
[39423] "errors" "led"
[39425] "Germany" "scoring"
[39427] "two" "goals"
[39429] "within" "two"
[39431] "minutes" "Just"
[39433] "looked" "India"
[39435] "might" "trouble"
[39437] "two" "penalty"
[39439] "corners" "India"
[39441] "yielded" "results"
[39443] "Hardik" "Singh"
[39445] "scored" "rebound"
[39447] "first" "one"
[39449] "Harmanpreet" "Singh"
[39451] "scored" "another"
[39453] "superb" "dragflick"
[39455] "back" "nets"
[39457] "last" "minutes"
[39459] "entire" "country"
[39461] "goosebumps" "tears"
[39463] "eyes" "looking"
[39465] "India's" "comeback"
[39467] "PR" "Sreejesh"
[39469] "saved" "last"
[39471] "goal" "everyone"
[39473] "break" "tears"
[39475] "happiness" "Hockey"
[39477] "veins" "held"
[39479] "close" "hearts"
[39481] "many" "years"
[39483] "celebrate" "Negi"
[39485] "rounds" "Classification"
[39487] "Language" "ENGLISH"
[39489] "Publication-Type" "Newspaper"
[39491] "Body" "India"
[39493] "go" "fighting"
[39495] "5-2" "Belgium"
[39497] "first" "semi-final"
[39499] "ongoing" "Tokyo"
[39501] "Olympics" "Oi"
[39503] "Hockey" "Stadium"
[39505] "North" "Pitch"
[39507] "Tuesday" "Belgium"
[39509] "now" "face"
[39511] "winner" "second"
[39513] "semi-final" "Australia"
[39515] "Germany" "gold"
[39517] "medal" "match"
[39519] "Thursday" "hand"
[39521] "India" "lock"
[39523] "horns" "bronze"
[39525] "medal" "match"
[39527] "Thursday" "loser"
[39529] "game" "Australia"
[39531] "Germany" "Although"
[39533] "score-line" "suggests"
[39535] "overwhelming" "win"
[39537] "World" "champions"
[39539] "anything" "easy"
[39541] "sides" "went"
[39543] "final" "quarter"
[39545] "match" "levelled"
[39547] "2-2" "flurry"
[39549] "penalty" "corners"
[39551] "penalty" "stroke"
[39553] "helped" "Belgium"
[39555] "take" "2-goal"
[39557] "advantage" "early"
[39559] "4" "quarter"
[39561] "green" "card"
[39563] "Manpreet" "Singh"
[39565] "2-minute" "suspension"
[39567] "help" "India's"
[39569] "cause" "either"
[39571] "India" "played"
[39573] "final" "minutes"
[39575] "quarter" "without"
[39577] "goalkeeper" "P"
[39579] "Sreejesh" "substituted"
[39581] "another" "attacking"
[39583] "option" "Belgium"
[39585] "made" "struck"
[39587] "easy" "goal"
[39589] "final" "seconds"
[39591] "loss" "India"
[39593] "still" "shot"
[39595] "Bronze" "medal"
[39597] "Alexander" "Hendrix"
[39599] "scored" "brilliant"
[39601] "hattrick" "3"
[39603] "Olympics" "prove"
[39605] "Belgium" "side"
[39607] "still" "remains"
[39609] "best" "business"
[39611] "despite" "called"
[39613] "aging" "side"
[39615] "first" "quarter"
[39617] "India" "led"
[39619] "2-1" "quality"
[39621] "counter-attacks" "Mandeep"
[39623] "Singh" "struck"
[39625] "goal" "9"
[39627] "minute" "give"
[39629] "India" "lead"
[39631] "Harmanpreet" "equalised"
[39633] "India" "second"
[39635] "penalty" "corner"
[39637] "also" "Harmanpreet's"
[39639] "fifth" "goal"
[39641] "Tokyo" "Olympic"
[39643] "Games" "Earlier"
[39645] "Belgium" "converted"
[39647] "penalty" "corner"
[39649] "Loick" "Luypert"
[39651] "2" "minute"
[39653] "match" "go"
[39655] "1-0" "Classification"
[39657] "Language" "ENGLISH"
[39659] "Publication-Type" "Newspaper"
[39661] "Body" "Bhopal"
[39663] "India's" "women's"
[39665] "hockey" "team"
[39667] "scripted" "history"
[39669] "qualifying" "semi-finals"
[39671] "Olympics" "first"
[39673] "time" "stunning"
[39675] "1-0" "victory"
[39677] "beat" "Australia"
[39679] "looking" "first"
[39681] "medal" "since"
[39683] "securing" "podium"
[39685] "finish" "Sydney"
[39687] "2000" "quarter-finals"
[39689] "Although" "Gurjeet"
[39691] "Kaur" "scored"
[39693] "goal" "match"
[39695] "entire" "team"
[39697] "showed" "great"
[39699] "mix" "aggression"
[39701] "strategy" "allow"
[39703] "Australia" "dominate"
[39705] "Three" "players"
[39707] "made" "India"
[39709] "root" "national"
[39711] "sports" "trained"
[39713] "Madhya" "Pradesh"
[39715] "Hockey" "Academy"
[39717] "based" "Gwalior"
[39719] "early" "years"
[39721] "Vandana" "Katariya"
[39723] "Sushila" "Chanu"
[39725] "Monika" "Malik"
[39727] "trained" "state"
[39729] "represented" "Madhya"
[39731] "Pradesh" "least"
[39733] "national" "tournaments"
[39735] "Two" "players"
[39737] "kept" "reserve"
[39739] "national" "team"
[39741] "Olympics" "E"
[39743] "Rajani" "Reena"
[39745] "Khokhar" "also"
[39747] "represented" "state"
[39749] "early" "career"
[39751] "women's" "team"
[39753] "began" "slowly"
[39755] "Olympics" "lost"
[39757] "first" "three"
[39759] "league" "matches"
[39761] "Netherlands" "Germany"
[39763] "Great" "Britain"
[39765] "women's" "team"
[39767] "finally" "got"
[39769] "well-deserved" "first"
[39771] "win" "league"
[39773] "Ireland" "1-0"
[39775] "booked" "seat"
[39777] "quarter" "finals"
[39779] "winning" "fifth"
[39781] "league" "match"
[39783] "South" "Korea"
[39785] "4-3" "Vandana"
[39787] "trained" "SAI"
[39789] "Bhopal" "chapter"
[39791] "several" "years"
[39793] "scored" "three"
[39795] "goals" "deciding"
[39797] "league" "match"
[39799] "Vandana" "represented"
[39801] "MP" "Jharkhand"
[39803] "National" "Games"
[39805] "senior" "national"
[39807] "hockey" "tournament"
[39809] "past" "team"
[39811] "put" "Australia"
[39813] "top-scorers" "pool"
[39815] "Vandana" "Monika"
[39817] "Sushila" "amazed"
[39819] "opponents" "display"
[39821] "chief" "coach"
[39823] "Madhya" "Pradesh"
[39825] "Hockey" "Academy"
[39827] "Gwalior" "Paramjeet"
[39829] "Kaur" "said"
[39831] "Indian" "team"
[39833] "turned" "impossible"
[39835] "possible" "MP"
[39837] "academies" "become"
[39839] "training" "centres"
[39841] "players" "MP"
[39843] "states" "said"
[39845] "big" "day"
[39847] "celebrate" "players"
[39849] "connected" "either"
[39851] "academies" "represented"
[39853] "MP" "national"
[39855] "tournaments" "added"
[39857] "Kaur" "Sushila"
[39859] "Chanu" "Madhya"
[39861] "Pradesh" "Hockey"
[39863] "Academy" "2006-2012"
[39865] "Monika" "Malik"
[39867] "Madhya" "Pradesh"
[39869] "Hockey" "Academy"
[39871] "2010-2011" "Vandana"
[39873] "Kataria" "SAI"
[39875] "Bhopal" "Reena"
[39877] "Khokhar" "Madhya"
[39879] "Pradesh" "Hockey"
[39881] "Academy" "2010-2011"
[39883] "E" "Rajani"
[39885] "SAI" "Bhopal"
[39887] "Classification" "Language"
[39889] "ENGLISH" "Publication-Type"
[39891] "Newspaper" "Body"
[39893] "Karnal" "Aug"
[39895] "7" "Satish"
[39897] "Chopra" "struggling"
[39899] "find" "right"
[39901] "words" "Bhim"
[39903] "Chopra" "also"
[39905] "took" "trip"
[39907] "memory" "lane"
[39909] "Neeraj" "Chopra"
[39911] "started" "journey"
[39913] "fetch" "Olympic"
[39915] "javelin" "gold"
[39917] "Tokyo" "Saturday"
[39919] "village" "Khandra"
[39921] "Haryana's" "Panipat"
[39923] "district" "dancing"
[39925] "distributing" "sweets"
[39927] "19-members" "Chopra"
[39929] "family" "whose"
[39931] "phones" "never"
[39933] "stopped" "ringing"
[39935] "India's" "Olympic"
[39937] "gold" "Tokyo"
[39939] "medal" "athletics"
[39941] "Games" "ever"
[39943] "come" "moments"
[39945] "ago" "village"
[39947] "celebrating" "87.58m"
[39949] "effort" "famous"
[39951] "son" "getting"
[39953] "words" "explain"
[39955] "happiness" "fruit"
[39957] "hard" "work"
[39959] "dedication" "said"
[39961] "Satish" "reacting"
[39963] "son's" "feat"
[39965] "presented" "turban"
[39967] "villagers" "remember"
[39969] "day" "started"
[39971] "practice" "Panipat's"
[39973] "Shivaji" "stadium"
[39975] "travelled" "20km"
[39977] "everyday" "practice"
[39979] "ground" "village"
[39981] "year" "2011"
[39983] "said" "Bhim"
[39985] "Neeraj's" "uncle"
[39987] "Neeraj's" "friend"
[39989] "Jaiveer" "helped"
[39991] "focus" "javelin"
[39993] "convinced" "winning"
[39995] "several" "local"
[39997] "competitions" "start"
[39999] "something" "special"
[40001] "said" "Bhim"
[40003] "2016" "disappointed"
[40005] "make" "Rio"
[40007] "Olympics" "lose"
[40009] "hope" "worked"
[40011] "hard" "family"
[40013] "supported" "lot"
[40015] "said" "Neeraj"
[40017] "set" "junior"
[40019] "world" "record"
[40021] "86.48" "2016"
[40023] "IAAF" "World"
[40025] "Under-20" "Championships"
[40027] "Poland" "cut-off"
[40029] "date" "qualify"
[40031] "Olympics" "Neeraj's"
[40033] "mother" "Saroj"
[40035] "said" "entire"
[40037] "country" "happy"
[40039] "performance" "son"
[40041] "proud" "son"
[40043] "Chopras" "farmers"
[40045] "Satish" "two"
[40047] "brothers" "families"
[40049] "stay" "together"
[40051] "Everyone" "glued"
[40053] "television" "Saturday"
[40055] "afternoon" "Neeraj's"
[40057] "event" "began"
[40059] "won" "gold"
[40061] "celebrations" "began"
[40063] "whole" "village"
[40065] "joining" "take"
[40067] "long" "spread"
[40069] "Sonipat" "Rohtak"
[40071] "Jhajjar" "Bhiwani"
[40073] "rest" "state"
[40075] "Neeraj" "won"
[40077] "gold" "medal"
[40079] "2016" "South"
[40081] "Asian" "Games"
[40083] "throw" "82.23"
[40085] "m" "Asian"
[40087] "Athletic" "championships"
[40089] "2017" "throw"
[40091] "85.23m" "2018"
[40093] "Commonwealth" "Games"
[40095] "won" "gold"
[40097] "medal" "best"
[40099] "effort" "86.47m"
[40101] "2018" "broke"
[40103] "national" "record"
[40105] "Doha" "Diamond"
[40107] "League" "throw"
[40109] "87.43" "meters"
[40111] "also" "won"
[40113] "Asian" "Games"
[40115] "gold" "year"
[40117] "Khandra" "used"
[40119] "Neeraj" "bringing"
[40121] "home" "medals"
[40123] "felt" "different"
[40125] "Published" "HT"
[40127] "Digital" "Content"
[40129] "Services" "permission"
[40131] "Hindustan" "Times"
[40133] "query" "respect"
[40135] "article" "content"
[40137] "requirement" "please"
[40139] "contact" "Editor"
[40141] "Classification" "Language"
[40143] "ENGLISH" "Publication-Type"
[40145] "Newswire" "Body"
[40147] "India" "marches"
[40149] "mega" "event"
[40151] "228-strong" "contingent"
[40153] "comprising" "120"
[40155] "athletes" "pandemic"
[40157] "might" "altered"
[40159] "narrative" "mega"
[40161] "event" "bit"
[40163] "nothing" "can"
[40165] "affect" "participant's"
[40167] "hunger" "medals"
[40169] "Rio" "2016"
[40171] "India" "collected"
[40173] "two" "medals"
[40175] "silver" "badminton"
[40177] "PV" "Sindhu"
[40179] "bronze" "wrestler"
[40181] "Sakshi" "Malik"
[40183] "time" "around"
[40185] "228-strong" "contingent"
[40187] "comprising" "120"
[40189] "athletes" "India"
[40191] "march" "thirst"
[40193] "medals" "Tokyo"
[40195] "picked" "India's"
[40197] "medal" "prospects"
[40199] "Games" "list"
[40201] "Amit" "Panghal"
[40203] "Boxing" "flyweight"
[40205] "shouldering" "expectations"
[40207] "enough" "bog"
[40209] "super" "heavyweight"
[40211] "cases" "world"
[40213] "number" "one"
[40215] "top" "seed"
[40217] "Panghal" "seen"
[40219] "sure-shot" "medal"
[40221] "India" "Tokyo"
[40223] "knows" "revelling"
[40225] "spotlight" "Armyman"
[40227] "Haryana" "nice"
[40229] "mix" "controlled"
[40231] "aggression" "tactical"
[40233] "acumen" "cabinet"
[40235] "already" "World"
[40237] "Championships" "Commonwealth"
[40239] "Games" "silver"
[40241] "medals" "Asian"
[40243] "Games" "gold"
[40245] "medal" "multiple"
[40247] "Asian" "Championships"
[40249] "medals" "Competing"
[40251] "maiden" "Olympics"
[40253] "25-year-old" "unstoppable"
[40255] "past" "four"
[40257] "years" "starting"
[40259] "breakthrough" "Asian"
[40261] "Championships" "bronze"
[40263] "back" "2017"
[40265] "Even" "loss"
[40267] "hardly" "ever"
[40269] "looked" "outplayed"
[40271] "know" "weaknesses"
[40273] "well" "late"
[40275] "starter" "someone"
[40277] "tends" "wear"
[40279] "bit" "final"
[40281] "three" "minutes"
[40283] "Panghal" "says"
[40285] "addressed" "issues"
[40287] "desperate" "pursuit"
[40289] "Olympic" "medal"
[40291] "Amit" "Panghal's"
[40293] "dedication" "craft"
[40295] "evident" "even"
[40297] "first" "glance"
[40299] "comes" "India's"
[40301] "boxing" "gold"
[40303] "medal" "hope"
[40305] "lot" "meets"
[40307] "eye" "Learn"
[40309] "story" "latest"
[40311] "Olympic" "Channel"
[40313] "Original" "series"
[40315] "Jee" "Jaan"
[40317] "Se.@Boxerpanghal" "@BFI_official"
[40319] "Mary" "Kom"
[40321] "Boxing" "name"
[40323] "Indian" "boxing"
[40325] "needs" "introduction"
[40327] "Mary" "Kom"
[40329] "38-year-old" "icon"
[40331] "eyeing" "second"
[40333] "Olympic" "medal"
[40335] "something" "puts"
[40337] "heads" "shoulders"
[40339] "else" "Indian"
[40341] "team" "six-time"
[40343] "world" "champion"
[40345] "achievements" "medals"
[40347] "become" "bit"
[40349] "difficult" "keep"
[40351] "count" "astonishing"
[40353] "part" "Manipuri"
[40355] "showing" "signs"
[40357] "slowing" "ring"
[40359] "quite" "literally"
[40361] "playground" "remained"
[40363] "two" "decades"
[40365] "now" "Among"
[40367] "sharpest" "movers"
[40369] "ring" "peak"
[40371] "prowess" "Mary"
[40373] "Kom" "however"
[40375] "candid" "enough"
[40377] "admit" "slowed"
[40379] "make" "worked"
[40381] "adding" "muscle"
[40383] "thereby" "power"
[40385] "punches" "remains"
[40387] "seen" "handles"
[40389] "younger" "competition"
[40391] "awaits" "Games"
[40393] "fittingly" "one"
[40395] "two" "flag-bearers"
[40397] "Indian" "contingent"
[40399] "sharpened" "hook"
[40401] "make" "sure"
[40403] "nobody" "takes"
[40405] "lightly" "PV"
[40407] "Sindhu" "Badminton"
[40409] "someone" "loves"
[40411] "thrive" "big"
[40413] "stage" "badminton"
[40415] "star" "PV"
[40417] "Sindhu" "best"
[40419] "bet" "satiate"
[40421] "country's" "thirst"
[40423] "second" "individual"
[40425] "gold" "medal"
[40427] "Olympics" "India"
[40429] "won" "anything"
[40431] "shooter" "Abhinav"
[40433] "Bindra's" "golden"
[40435] "triumph" "2008"
[40437] "Beijing" "Olympics"
[40439] "Carolina" "Marin"
[40441] "ruled" "due"
[40443] "knee" "injury"
[40445] "Sindhu" "lost"
[40447] "Spaniard" "final"
[40449] "Rio" "Olympic"
[40451] "Games" "huge"
[40453] "expectation" "reigning"
[40455] "world" "champion"
[40457] "bring" "home"
[40459] "yellow" "metal"
[40461] "Seeded" "sixth"
[40463] "Tokyo" "Sindhu"
[40465] "easy" "till"
[40467] "quarter" "finals"
[40469] "Placed" "bottom"
[40471] "half" "Sindhu"
[40473] "face" "Hong"
[40475] "Kong's" "world"
[40477] "34" "Cheung"
[40479] "Ngan" "Yi"
[40481] "Israel's" "Ksenia"
[40483] "Polikarpova" "ranked"
[40485] "58th" "real"
[40487] "battle" "however"
[40489] "begins" "last-eight"
[40491] "stage" "round"
[40493] "16" "Sindhu"
[40495] "expected" "Denmark's"
[40497] "Mia" "Blichfeldt"
[40499] "Sindhu" "lost"
[40501] "Mia" "round"
[40503] "32" "Thailand"
[40505] "Open" "beginning"
[40507] "year" "Sindhu"
[40509] "reaches" "quarter"
[40511] "finals" "local"
[40513] "favourite" "Akane"
[40515] "Yamaguchi" "probably"
[40517] "opponent" "England"
[40519] "badminton" "championship"
[40521] "quarter" "final"
[40523] "Sindhu" "defeated"
[40525] "Yamaguchi" "one"
[40527] "hour" "16"
[40529] "minutes" "thrilling"
[40531] "action" "Yamaguchi's"
[40533] "loss" "last"
[40535] "four" "outings"
[40537] "Throwback" "Carolina"
[40539] "Marin's" "nail-biting"
[40541] "victory" "PV"
[40543] "Sindhu" "women's"
[40545] "single" "badminton"
[40547] "Rio" "2016"
[40549] "#StrongerTogether" "pic.twitter.com"
[40551] "1KrPQSYqd1" "Deepika"
[40553] "Kumari" "Archery"
[40555] "World" "1"
[40557] "Deepika" "Kumari"
[40559] "clinched" "three"
[40561] "gold" "medals"
[40563] "World" "Cup"
[40565] "Stage" "3"
[40567] "Paris" "June"
[40569] "singles" "women's"
[40571] "team" "mixed"
[40573] "pair" "event"
[40575] "husband" "Atanu"
[40577] "needless" "say"
[40579] "carries" "country's"
[40581] "hopes" "archery"
[40583] "course" "fact"
[40585] "slipped" "London"
[40587] "Rio" "back"
[40589] "mind" "Deepika"
[40591] "trying" "steer"
[40593] "mind" "away"
[40595] "negative" "emotions"
[40597] "lone" "female"
[40599] "archer" "India"
[40601] "camp" "Pune"
[40603] "Deepika" "competing"
[40605] "Atanu" "fact"
[40607] "three" "male"
[40609] "members" "trying"
[40611] "best" "shoot"
[40613] "better" "always"
[40615] "fact" "winning"
[40617] "times" "Deepika"
[40619] "said" "recently"
[40621] "2010" "Commonwealth"
[40623] "Games" "gold"
[40625] "medallist" "become"
[40627] "world" "1"
[40629] "ahead" "maiden"
[40631] "Olympic" "appearance"
[40633] "London" "make"
[40635] "first" "round"
[40637] "exit" "first"
[40639] "Olympics" "ranked"
[40641] "world" "number"
[40643] "one" "though"
[40645] "aware" "much"
[40647] "kind" "fantasy"
[40649] "first" "Olympics"
[40651] "said" "Deepika"
[40653] "lone" "female"
[40655] "Indian" "archer"
[40657] "Olympics" "women's"
[40659] "team" "failed"
[40661] "qualify" "qualifications"
[40663] "round" "opening"
[40665] "day" "Games"
[40667] "Friday" "Deepika"
[40669] "first" "event"
[40671] "mixed" "pair"
[40673] "competition" "Saturday"
[40675] "individual" "event"
[40677] "begin" "July"
[40679] "27" "Mirabai"
[40681] "Chanu" "Weightlifting"
[40683] "Star" "Indian"
[40685] "weightlifter" "Mirabai"
[40687] "Chanu" "emerged"
[40689] "strong" "contender"
[40691] "women's" "49kg"
[40693] "category" "run"
[40695] "Olympics" "making"
[40697] "one" "brightest"
[40699] "medal" "prospects"
[40701] "Tokyo" "Games"
[40703] "lone" "Indian"
[40705] "weightlifter" "qualify"
[40707] "Tokyo" "Games"
[40709] "Chanu" "eager"
[40711] "make" "amends"
[40713] "disappointing" "show"
[40715] "2016" "Rio"
[40717] "Olympics" "failed"
[40719] "record" "legal"
[40721] "lift" "three"
[40723] "attempts" "clean"
[40725] "jerk" "thus"
[40727] "get" "overall"
[40729] "total" "women's"
[40731] "48kg" "silence"
[40733] "detractors" "winning"
[40735] "gold" "world"
[40737] "championship" "2017"
[40739] "Commonwealth" "Games"
[40741] "year" "later"
[40743] "diminutive" "Manipuri"
[40745] "also" "overcame"
[40747] "unspecified" "back"
[40749] "problem" "marred"
[40751] "progress" "2018"
[40753] "changed" "weight"
[40755] "category" "49kg"
[40757] "original" "48"
[40759] "kg" "international"
[40761] "federation" "decided"
[40763] "introduce" "new"
[40765] "categories" "sport"
[40767] "run" "Tokyo"
[40769] "Games" "Chanu"
[40771] "currently" "holds"
[40773] "world" "record"
[40775] "clean" "jerk"
[40777] "women's" "49kg"
[40779] "category" "successfully"
[40781] "heaved" "119kg"
[40783] "Asian" "Championship"
[40785] "last" "tournament"
[40787] "ahead" "Tokyo"
[40789] "Games" "April"
[40791] "win" "gold"
[40793] "medal" "section"
[40795] "overall" "bronze"
[40797] "performance" "bound"
[40799] "boost" "confidence"
[40801] "heads" "weightlifting"
[40803] "arena" "July"
[40805] "24" "today's"
[40807] "practice" "session"
[40809] "@mirabai_chanu" "#Tokyo2020"
[40811] "#ComeonIndia" "Vinesh"
[40813] "Phogat" "Wrestling"
[40815] "Vinesh" "Phogat"
[40817] "emerged" "one"
[40819] "best" "medal"
[40821] "prospects" "Tokyo"
[40823] "One" "disturbing"
[40825] "images" "Rio"
[40827] "2016" "sight"
[40829] "Vinesh" "writhing"
[40831] "pain" "mat"
[40833] "suffered" "career-threatening"
[40835] "injury" "ended"
[40837] "2016" "Olympic"
[40839] "campaign" "made"
[40841] "back" "competitive"
[40843] "arena" "earned"
[40845] "right" "fight"
[40847] "Tokyo" "winning"
[40849] "bronze" "53kg"
[40851] "category" "2019"
[40853] "World" "Wrestling"
[40855] "Championships" "Commonwealth"
[40857] "Asian" "Games"
[40859] "gold" "medal"
[40861] "winner" "also"
[40863] "won" "53kg"
[40865] "gold" "2021"
[40867] "Asian" "Championships"
[40869] "seems" "measure"
[40871] "competition" "may"
[40873] "face" "Tokyo"
[40875] "podium" "finish"
[40877] "much" "possible"
[40879] "Vinesh" "great"
[40881] "chance" "winning"
[40883] "medal" "shown"
[40885] "tremendous" "guts"
[40887] "recovered" "Rio"
[40889] "injury" "going"
[40891] "defeat" "top"
[40893] "wrestlers" "international"
[40895] "tournaments" "Vinesh's"
[40897] "uncle" "coach"
[40899] "Mahavir" "Phogat"
[40901] "told" "Telegraph"
[40903] "Neeraj" "Chopra"
[40905] "Javelin" "Neeraj"
[40907] "Chopra" "name"
[40909] "everyone" "banking"
[40911] "give" "India"
[40913] "first" "medal"
[40915] "track" "field"
[40917] "event" "23-year-old"
[40919] "javelin" "thrower"
[40921] "mountain" "climb"
[40923] "event" "host"
[40925] "others" "capable"
[40927] "winning" "medal"
[40929] "Defending" "Olympic"
[40931] "champion" "Germany's"
[40933] "Thomas" "Roehler"
[40935] "back" "injury"
[40937] "likes" "Johannes"
[40939] "Vetter" "Germany"
[40941] "Trinidad's" "Kreshorn"
[40943] "Walcott" "reigning"
[40945] "world" "champion"
[40947] "Grenada's" "Anderson"
[40949] "Peters" "enough"
[40951] "armoury" "stand"
[40953] "podium" "Games"
[40955] "debutant" "Neeraj's"
[40957] "personal" "best"
[40959] "throw" "88.07"
[40961] "metres" "rivals"
[40963] "Tokyo" "breached"
[40965] "90-metre" "mark"
[40967] "consistently" "Classification"
[40969] "Language" "ENGLISH"
[40971] "Publication-Type" "Newspaper"
[40973] "Body" "India"
[40975] "Aug" "7"
[40977] "Indian" "wrestler"
[40979] "Bajrang" "Punia"
[40981] "Saturday" "won"
[40983] "bronze" "medal"
[40985] "defeating" "Daulet"
[40987] "Niyazbekov" "Kazakhstan"
[40989] "men's" "freestyle"
[40991] "65kg" "category"
[40993] "second" "seed"
[40995] "faced" "crushing"
[40997] "5-12" "defeat"
[40999] "Azerbaijan's" "Haji"
[41001] "Aliyev" "semifinals"
[41003] "redeemed" "campaign"
[41005] "earned" "India's"
[41007] "sixth" "medal"
[41009] "Tokyo" "2020"
[41011] "clear" "8-0"
[41013] "victory" "bronze"
[41015] "medal" "bout"
[41017] "men's" "freestyle"
[41019] "65kg" "bronze"
[41021] "medal" "showdown"
[41023] "bout" "began"
[41025] "Punia" "taking"
[41027] "point" "Niyazbekov"
[41029] "score" "30"
[41031] "seconds" "attacking"
[41033] "zone" "Indian"
[41035] "got" "another"
[41037] "point" "take"
[41039] "2-0" "lead"
[41041] "break" "Full"
[41043] "Tokyo" "2020"
[41045] "Coverage" "Punia"
[41047] "started" "attacking"
[41049] "note" "last"
[41051] "three" "minutes"
[41053] "got" "two"
[41055] "points" "take"
[41057] "take" "4-0"
[41059] "lead" "India"
[41061] "gave" "chance"
[41063] "wrester" "Kazakhstan"
[41065] "scoring" "four"
[41067] "points" "two"
[41069] "take" "downs"
[41071] "Punia" "became"
[41073] "sixth" "Indian"
[41075] "wrestler" "finish"
[41077] "Olympic" "podium"
[41079] "KD" "Jadhav"
[41081] "Sushil" "Kumar"
[41083] "Yogeshwar" "Dutt"
[41085] "Sakshi" "Malik"
[41087] "Ravi" "Kumar"
[41089] "Dahiya" "became"
[41091] "second" "instance"
[41093] "2012" "London"
[41095] "Olympics" "two"
[41097] "Indian" "wrestlers"
[41099] "won" "medals"
[41101] "Games" "Ravi"
[41103] "Dahiya" "earlier"
[41105] "won" "silver"
[41107] "men's" "57"
[41109] "kg" "category"
[41111] "Olympic" "Twenty-seven-year-old"
[41113] "Punia" "began"
[41115] "challenge" "Kyrgyzstan's"
[41117] "Ernazar" "Akmataliev"
[41119] "defeating" "3-3"
[41121] "scoring" "later"
[41123] "point" "smart"
[41125] "take-down" "towards"
[41127] "end" "bout"
[41129] "1" "4"
[41131] "final" "enjoyed"
[41133] "successful" "second"
[41135] "period" "Morteza"
[41137] "Cheka" "Ghiasi"
[41139] "Iran" "win"
[41141] "fall" "TOKYO"
[41143] "2020" "OLYMPICS"
[41145] "DAY" "15"
[41147] "BLOG" "Bajrang"
[41149] "three-time" "world"
[41151] "championships" "medallist"
[41153] "won" "bronze"
[41155] "2019" "World"
[41157] "Championships" "won"
[41159] "silver" "2018"
[41161] "65kg" "category"
[41163] "won" "bronze"
[41165] "world" "championships"
[41167] "2013" "60"
[41169] "kg" "category"
[41171] "also" "reigning"
[41173] "Commonwealth" "Asian"
[41175] "games" "champion"
[41177] "65kg" "category"
[41179] "won" "gold"
[41181] "medal" "2018"
[41183] "Games" "won"
[41185] "silver" "medal"
[41187] "61kg" "category"
[41189] "CWG" "Asiad"
[41191] "2014" "respectively"
[41193] "details" "awaited"
[41195] "Published" "HT"
[41197] "Digital" "Content"
[41199] "Services" "permission"
[41201] "Hindustan" "Times"
[41203] "query" "respect"
[41205] "article" "content"
[41207] "requirement" "please"
[41209] "contact" "Editor"
[41211] "Classification" "Language"
[41213] "ENGLISH" "Publication-Type"
[41215] "Newswire" "Body"
[41217] "Manipur" "government"
[41219] "facilitated" "Olympic"
[41221] "silver" "medallist"
[41223] "Mirabai" "Chanu"
[41225] "presence" "Chief"
[41227] "Minister" "N"
[41229] "Biren" "Singh"
[41231] "Tuesday" "Chief"
[41233] "Minister" "handed"
[41235] "appointment" "letter"
[41237] "Additional" "Superintendent"
[41239] "Police" "Sports"
[41241] "Mirabai" "Chanu"
[41243] "speaking" "event"
[41245] "Chanu" "said"
[41247] "want" "thank"
[41249] "everyone" "support"
[41251] "support" "today"
[41253] "received" "silver"
[41255] "medal" "Olympics"
[41257] "dedicate" "medal"
[41259] "people" "Manipur"
[41261] "added" "Union"
[41263] "Minister" "Youth"
[41265] "Affairs" "Sports"
[41267] "Anurag" "Thakur"
[41269] "Monday" "felicitated"
[41271] "India's" "first"
[41273] "medal" "winner"
[41275] "Tokyo" "Olympics"
[41277] "Mirabai" "Chanu"
[41279] "felicitated" "Indian"
[41281] "weightlifter" "arrived"
[41283] "Imphal" "amid"
[41285] "roaring" "welcome"
[41287] "people" "Everyone"
[41289] "lined" "Imphal"
[41291] "streets" "welcome"
[41293] "Olympic" "champion"
[41295] "Manipur" "Chief"
[41297] "Minister" "N"
[41299] "Biren" "Singh"
[41301] "also" "Imphal"
[41303] "airport" "welcome"
[41305] "Mirabai" "Chanu"
[41307] "Manipur" "Government"
[41309] "Monday" "decided"
[41311] "appoint" "Chanu"
[41313] "Additional" "Superintendent"
[41315] "Police" "Sports"
[41317] "police" "department"
[41319] "Mirabai" "Chanu"
[41321] "also" "rewarded"
[41323] "Rs" "1"
[41325] "crore" "announced"
[41327] "government" "Biren"
[41329] "Singh" "told"
[41331] "media" "persons"
[41333] "Chief" "Minister"
[41335] "said" "participants"
[41337] "given" "Rs"
[41339] "25" "lakh"
[41341] "also" "said"
[41343] "state" "government"
[41345] "decided" "establish"
[41347] "world-class" "weightlifting"
[41349] "academy" "state"
[41351] "soon" "Chanu"
[41353] "opened" "India's"
[41355] "medals" "tally"
[41357] "Saturday" "bagged"
[41359] "silver" "Women's"
[41361] "49kg" "category"
[41363] "Tokyo" "International"
[41365] "Forum" "Classification"
[41367] "Language" "ENGLISH"
[41369] "Publication-Type" "Newspaper"
[41371] "Body" "Self-regulatory"
[41373] "ad" "industry"
[41375] "entity" "Advertising"
[41377] "Standards" "Council"
[41379] "India" "ASCI"
[41381] "said" "brands"
[41383] "piggybacking" "athletes"
[41385] "winning" "medals"
[41387] "Tokyo" "Olympics"
[41389] "advertising" "without"
[41391] "permission" "violation"
[41393] "code" "ads"
[41395] "refer" "showcase"
[41397] "celebrities" "without"
[41399] "explicit" "permission"
[41401] "ads" "potential"
[41403] "violation" "ASCI"
[41405] "code" "said"
[41407] "ASCI" "secretary"
[41409] "general" "Manisha"
[41411] "Kapoor" "adding"
[41413] "ads" "misleading"
[41415] "consumers" "may"
[41417] "think" "celebrities"
[41419] "genuinely" "endorse"
[41421] "products" "Indian"
[41423] "athletes" "including"
[41425] "weightlifter" "Mirabai"
[41427] "Chanu" "badminton"
[41429] "player" "PV"
[41431] "Sindhu" "boxer"
[41433] "Lovlina" "Borgohain"
[41435] "wrestler" "Ravi"
[41437] "Kumar" "Dahiya"
[41439] "won" "medals"
[41441] "men's" "women's"
[41443] "hockey" "teams"
[41445] "created" "history"
[41447] "Tokyo" "leading"
[41449] "surge" "brands"
[41451] "putting" "ads"
[41453] "messages" "social"
[41455] "media" "directly"
[41457] "leveraging" "athletes"
[41459] "names" "without"
[41461] "permissions" "contracts"
[41463] "athletes" "names"
[41465] "leveraged" "linked"
[41467] "brands" "across"
[41469] "corporates" "Aditya"
[41471] "Birla" "Group"
[41473] "Apollo" "Hospitals"
[41475] "Perfetti" "Van"
[41477] "Melle" "agencies"
[41479] "BrandOn-Wheelz" "out-of-home"
[41481] "media" "agency"
[41483] "Brand" "Sigma"
[41485] "ASCI" "guidelines"
[41487] "legally" "enforceable"
[41489] "violations" "treated"
[41491] "violation" "government's"
[41493] "rules" "Classification"
[41495] "Language" "ENGLISH"
[41497] "Publication-Type" "Newspaper"
[41499] "Body" "Tai"
[41501] "Tzu" "Ying"
[41503] "beat" "PV"
[41505] "Sindhu" "two"
[41507] "straight" "sets"
[41509] "reach" "final"
[41511] "Women's" "singles"
[41513] "Badminton" "Tokyo"
[41515] "Olympics" "Indian"
[41517] "star" "player"
[41519] "PV" "Sindhu"
[41521] "lost" "second"
[41523] "seed" "World"
[41525] "1" "Chinese"
[41527] "Taipei's" "Tai"
[41529] "Tzu" "Ying"
[41531] "two" "straight"
[41533] "sets" "semi-final"
[41535] "women's" "singles"
[41537] "Badminton" "ongoing"
[41539] "Tokyo" "Olympics"
[41541] "Tzu" "Ying"
[41543] "just" "good"
[41545] "Sindhu" "day"
[41547] "defeating" "21-18"
[41549] "21-12" "Thereby"
[41551] "gold" "medal"
[41553] "contention" "now"
[41555] "play" "Bronze"
[41557] "medal" "match"
[41559] "Sunday" "Sindhu"
[41561] "athletic" "self"
[41563] "Tzu" "Ying"
[41565] "attacked" "Sindhu"
[41567] "strength" "ie"
[41569] "power" "game"
[41571] "dumbed" "ran"
[41573] "around" "court"
[41575] "Sindhu" "just"
[41577] "answer" "Taipei"
[41579] "star's" "game"
[41581] "first" "game"
[41583] "pretty" "close"
[41585] "Sindhu" "matcher"
[41587] "shot" "shot"
[41589] "proving" "mouthwatering"
[41591] "well-fought" "set"
[41593] "score" "one"
[41595] "point" "opponent"
[41597] "score" "another"
[41599] "going" "well"
[41601] "till" "16-16"
[41603] "Tzu" "Ying"
[41605] "ended" "taking"
[41607] "first" "game"
[41609] "second" "set"
[41611] "Tzu" "Ying"
[41613] "despite" "Sindhu's"
[41615] "strong" "start"
[41617] "point" "two"
[41619] "Tzu" "Ying"
[41621] "just" "relentless"
[41623] "pursuit" "despite"
[41625] "Sindhu's" "best"
[41627] "efforts" "lost"
[41629] "game" "12-21"
[41631] "gold" "medal"
[41633] "contention" "match"
[41635] "lasted" "40"
[41637] "minutes" "now"
[41639] "Sindhu" "face"
[41641] "China's" "Bing"
[41643] "Jio" "bronze"
[41645] "medal" "Classification"
[41647] "Language" "ENGLISH"
[41649] "Publication-Type" "Newspaper"
[41651] "Body" "New"
[41653] "Delhi" "July"
[41655] "24" "Indian"
[41657] "weightlifter" "Mirabai"
[41659] "Canu" "wins"
[41661] "country's" "first"
[41663] "medal" "ongoing"
[41665] "Tokyo" "Olympics"
[41667] "won" "silver"
[41669] "medal" "49kg"
[41671] "category" "Women's"
[41673] "weighlifting" "event"
[41675] "became" "first"
[41677] "Indian" "weightlifter"
[41679] "win" "silver"
[41681] "medal" "Olympics"
[41683] "Chanu" "lifted"
[41685] "total" "202"
[41687] "kg" "87kg"
[41689] "snatch" "115kg"
[41691] "clean" "jerk"
[41693] "four" "successful"
[41695] "attempts" "across"
[41697] "competition" "China's"
[41699] "Zhihui" "Hou"
[41701] "bagged" "gold"
[41703] "total" "210kg"
[41705] "created" "new"
[41707] "Olympic" "Record"
[41709] "Indonesia's" "Windy"
[41711] "Cantika" "Aisah"
[41713] "grabbed" "bronze"
[41715] "total" "194kg"
[41717] "monumental" "silver"
[41719] "medal" "Chanu"
[41721] "become" "second"
[41723] "Indian" "weightlifter"
[41725] "win" "Olympic"
[41727] "medal" "Karnam"
[41729] "Malleswari" "bagged"
[41731] "bronze" "69kg"
[41733] "category" "2000"
[41735] "Sydney" "Games"
[41737] "weightlifting" "arena"
[41739] "opened" "women"
[41741] "first" "time"
[41743] "Mirabai" "got"
[41745] "flying" "start"
[41747] "completed" "lift"
[41749] "84" "kg"
[41751] "first" "attempt"
[41753] "snatch" "Manipur-born"
[41755] "weightlifter" "proceeded"
[41757] "complete" "87kg"
[41759] "weightlift" "ease"
[41761] "failed" "complete"
[41763] "89kg" "lift"
[41765] "last" "attempt"
[41767] "USA's" "Jourdan"
[41769] "Elizabeth" "Delacruz"
[41771] "posed" "challenge"
[41773] "Indian" "weightlifter"
[41775] "2nd" "place"
[41777] "first" "half"
[41779] "competition" "Delacruz"
[41781] "tragically" "missed"
[41783] "equalling" "personal"
[41785] "best" "89kg"
[41787] "placed" "second"
[41789] "spot" "judges"
[41791] "overruled" "attempt"
[41793] "Published" "HT"
[41795] "Digital" "Content"
[41797] "Services" "permission"
[41799] "MINT" "query"
[41801] "respect" "article"
[41803] "content" "requirement"
[41805] "please" "contact"
[41807] "Editor" "Classification"
[41809] "Language" "ENGLISH"
[41811] "Publication-Type" "Newspaper"
[41813] "Body" "New"
[41815] "Delhi" "July"
[41817] "30" "India"
[41819] "rejoiced" "Lovlina"
[41821] "Borgohain" "Friday"
[41823] "assured" "country"
[41825] "second" "medal"
[41827] "Tokyo" "Olympics"
[41829] "Sports" "Minister"
[41831] "Anurag" "Thakur"
[41833] "shooting" "ace"
[41835] "Abhinav" "Bindra"
[41837] "joining" "others"
[41839] "sending" "young"
[41841] "boxer" "congratulatory"
[41843] "messages" "Debutant"
[41845] "Borgohain" "69kg"
[41847] "assured" "India"
[41849] "first" "boxing"
[41851] "medal" "ongoing"
[41853] "Games" "upstaged"
[41855] "former" "world"
[41857] "champion" "Nien-Chin"
[41859] "Chen" "Chinese"
[41861] "Taipei" "enter"
[41863] "semifinals" "Lovlina"
[41865] "entered" "Semi"
[41867] "Finals" "Well"
[41869] "done" "@LovlinaBorgohai"
[41871] "amazing" "news"
[41873] "India" "wake"
[41875] "today" "glued"
[41877] "tv" "screen"
[41879] "watching" "action"
[41881] "Thakur" "wrote"
[41883] "social" "media"
[41885] "handles" "India's"
[41887] "individual" "gold"
[41889] "medallist" "Bindra"
[41891] "wrote" "Koo"
[41893] "Super" "super"
[41895] "show" "@LovlinaBorgohai"
[41897] "Two" "go"
[41899] "goforgold" "Assam"
[41901] "Chief" "Minister"
[41903] "Himanta" "Bisaw"
[41905] "Sarma" "one"
[41907] "first" "congratulate"
[41909] "boxer" "comes"
[41911] "northeastern" "state's"
[41913] "Golaghat" "district"
[41915] "BIG" "punch"
[41917] "continue" "make"
[41919] "us" "proud"
[41921] "LovlinaBorgohain" "keep"
[41923] "India's" "flag"
[41925] "high" "shining"
[41927] "TokyoOlympics2020" "Well"
[41929] "done" "Sarma"
[41931] "wrote" "regional"
[41933] "language" "Koo"
[41935] "Former" "sports"
[41937] "minister" "Kiren"
[41939] "Rijiju" "sent"
[41941] "congratulations" "India"
[41943] "confirmed" "2nd"
[41945] "Olympics" "medal"
[41947] "lovely" "Boxing"
[41949] "Lovlina" "LovlinaBorgohai"
[41951] "reached" "semi-finals"
[41953] "looking" "Gold"
[41955] "medal" "Tokyo2020"
[41957] "Olympics" "Rijiju"
[41959] "wrote" "23-year-old"
[41961] "Assam" "boxer"
[41963] "won" "4-1"
[41965] "make" "last-four"
[41967] "square" "reigning"
[41969] "world" "champion"
[41971] "Busenaz" "Surmeneli"
[41973] "Turkey" "hammered"
[41975] "Ukraine's" "Anna"
[41977] "Lysenko" "quarterfinal"
[41979] "bout" "Olympic"
[41981] "bronze" "medallist"
[41983] "Yogeshwar" "Dutt"
[41985] "said" "day"
[41987] "One" "Medal"
[41989] "confirmation" "win"
[41991] "Indian" "Women"
[41993] "proud" "Former"
[41995] "world" "champion"
[41997] "shooter" "Heena"
[41999] "Sidhu" "said"
[42001] "medal" "confirmed"
[42003] "Lovlina" "Great"
[42005] "show" "Amazing"
[42007] "amazing" "amazing"
[42009] "Former" "India"
[42011] "hockey" "team"
[42013] "captain" "Viren"
[42015] "Rasquinha" "wrote"
[42017] "means" "everything"
[42019] "Keep" "going"
[42021] "satisfied" "Borgohain"
[42023] "two-time" "world"
[42025] "championship" "bronze-medallist"
[42027] "displayed" "tremendous"
[42029] "calm" "face"
[42031] "plucky" "opponent"
[42033] "beaten" "past"
[42035] "cricket" "fraternity"
[42037] "BCCI" "secretary"
[42039] "Jay" "Shah"
[42041] "wrote" "Congratulations"
[42043] "@LovlinaBorgohai" "beating"
[42045] "former" "World"
[42047] "Champion" "Chen"
[42049] "Nien-Chin" "entering"
[42051] "semis" "women's"
[42053] "welterweight" "category"
[42055] "First" "place"
[42057] "medal" "go"
[42059] "Gold" "Lovlina"
[42061] "Shooter" "Joydeep"
[42063] "Karmakar" "said"
[42065] "Still" "hold"
[42067] "congratulatory" "message"
[42069] "courage" "deliberation"
[42071] "@LovlinaBorgohai" "Classification"
[42073] "Language" "ENGLISH"
[42075] "Publication-Type" "Newspaper"
[42077] "Body" "Personalities"
[42079] "different" "spectrums"
[42081] "showered" "praises"
[42083] "Neeraj" "Chopra"
[42085] "made" "history"
[42087] "becoming" "first"
[42089] "Indian" "win"
[42091] "gold" "athletics"
[42093] "Olympics" "Neeraj"
[42095] "Chopra" "made"
[42097] "history" "Saturday"
[42099] "becoming" "first-ever"
[42101] "Indian" "win"
[42103] "gold" "athletics"
[42105] "Olympics" "Personalities"
[42107] "different" "spectrums"
[42109] "showered" "praises"
[42111] "Neeraj" "Chopra"
[42113] "entities" "also"
[42115] "announced" "cash"
[42117] "rewards" "Javelin"
[42119] "thrower" "achievement"
[42121] "Haryana-born" "Neeraj"
[42123] "Chopra" "brought"
[42125] "home" "second"
[42127] "individual" "gold"
[42129] "medal" "Olympics"
[42131] "first" "athletics"
[42133] "won" "honour"
[42135] "87.58-meter" "throw"
[42137] "second" "attempt"
[42139] "remarkable" "win"
[42141] "honour" "Haryana"
[42143] "government" "announced"
[42145] "cash" "reward"
[42147] "Rs" "6"
[42149] "crore" "CM"
[42151] "Manohar" "Lal"
[42153] "Khattar" "said"
[42155] "Neeraj" "Chopra"
[42157] "made" "head"
[42159] "upcoming" "Centre"
[42161] "Excellence" "Athletics"
[42163] "Panchkula" "Punjab"
[42165] "government" "announced"
[42167] "cash" "reward"
[42169] "Rs" "2"
[42171] "crore" "23-year-old"
[42173] "whose" "roots"
[42175] "trace" "Punjab"
[42177] "serving" "soldier"
[42179] "Indian" "Army"
[42181] "Neeraj" "Chopra"
[42183] "initially" "interested"
[42185] "cricket" "took"
[42187] "sport" "2011"
[42189] "inspired" "watching"
[42191] "people" "throw"
[42193] "javelin" "Haryana"
[42195] "cricket" "board"
[42197] "India" "BCCI"
[42199] "announced" "cash"
[42201] "reward" "Rs"
[42203] "1" "crore"
[42205] "Neeraj" "Chopra"
[42207] "IPL" "franchise"
[42209] "Chennai" "Super"
[42211] "Kings" "also"
[42213] "declared" "cash"
[42215] "reward" "Rs"
[42217] "1" "crore"
[42219] "gold" "medallist"
[42221] "Manipur" "cabinet"
[42223] "also" "extended"
[42225] "cash" "reward"
[42227] "Rs" "1"
[42229] "crore" "23-yr-old"
[42231] "Meanwhile" "IndiGo"
[42233] "announced" "unlimited"
[42235] "free" "travel"
[42237] "one" "year"
[42239] "Neeraj" "Chopra"
[42241] "airline" "CEO"
[42243] "Ronojoy" "Dutta"
[42245] "said" "Neeraj"
[42247] "overjoyed" "hear"
[42249] "remarkable" "achievement"
[42251] "made" "country"
[42253] "proud" "know"
[42255] "IndiGo" "employees"
[42257] "truly" "honoured"
[42259] "welcome" "onboard"
[42261] "one" "flights"
[42263] "Classification" "Language"
[42265] "ENGLISH" "Publication-Type"
[42267] "Newspaper" "Body"
[42269] "Indian" "men"
[42271] "hockey" "team"
[42273] "take" "Belgium"
[42275] "semi-finals" "Tokyo"
[42277] "Olympics" "defeated"
[42279] "Great" "Britain"
[42281] "quarter-final" "Indian"
[42283] "men's" "hockey"
[42285] "team" "created"
[42287] "history" "defeated"
[42289] "Great" "Britain"
[42291] "3-1" "quarter-final"
[42293] "match" "qualify"
[42295] "semifinals" "Tokyo"
[42297] "Olympics" "Games"
[42299] "India" "scored"
[42301] "three" "field"
[42303] "goals" "courtesy"
[42305] "Dilpreet" "Singh"
[42307] "7th" "minute"
[42309] "Gurjant" "Singh"
[42311] "16th" "Hardik"
[42313] "Singh" "57th"
[42315] "India's" "last"
[42317] "eight" "Olympic"
[42319] "gold" "medals"
[42321] "come" "way"
[42323] "back" "1980"
[42325] "Moscow" "Games"
[42327] "last" "time"
[42329] "India" "featured"
[42331] "semifinals" "Olympics"
[42333] "1972" "Munich"
[42335] "Games" "lost"
[42337] "0-2" "arch-rivals"
[42339] "Pakistan" "thedetailsof"
[42341] "game" "India"
[42343] "vs" "Belgium"
[42345] "men's" "hockey"
[42347] "semi-final" "match"
[42349] "start" "TheIndia"
[42351] "vs" "Belgium"
[42353] "men's" "hockey"
[42355] "semi-final" "match"
[42357] "begin" "7"
[42359] "00" "IST"
[42361] "Tuesday" "August"
[42363] "3" "India"
[42365] "vs" "Belgiummen's"
[42367] "hockey" "semi-final"
[42369] "match" "played"
[42371] "TheIndia" "vs"
[42373] "Belgiummen's" "hockey"
[42375] "semi-final" "match"
[42377] "played" "Oi"
[42379] "Hockey" "Stadium"
[42381] "North" "Pitch"
[42383] "Tokyo" "Japan"
[42385] "TV" "channels"
[42387] "broadcast" "India"
[42389] "vs" "Belgiummen's"
[42391] "hockey" "semi-final"
[42393] "match" "TheIndia"
[42395] "vs" "Belgiummen's"
[42397] "hockey" "semi-final"
[42399] "matchwill" "broadcast"
[42401] "Sony" "Sports"
[42403] "Network" "India"
[42405] "watch" "live"
[42407] "streaming" "India"
[42409] "vs" "Belgiummen's"
[42411] "hockey" "semi-final"
[42413] "match" "Fans"
[42415] "can" "catch"
[42417] "live" "streaming"
[42419] "theIndia" "vs"
[42421] "Belgiummen's" "hockey"
[42423] "semi-final" "matchon"
[42425] "SonyLIV" "website"
[42427] "SonyLIV" "app"
[42429] "India" "Classification"
[42431] "Language" "ENGLISH"
[42433] "Publication-Type" "Newspaper"
[42435] "Body" "Indian"
[42437] "men's" "hockey"
[42439] "team" "clinched"
[42441] "bronze" "medal"
[42443] "Tokyo" "Olympic"
[42445] "2021" "Thursday"
[42447] "Shah" "Rukh"
[42449] "Khan" "Kareena"
[42451] "Kapoor" "Akshay"
[42453] "Kumar" "Reema"
[42455] "Kagti" "among"
[42457] "others" "shared"
[42459] "congratulatory" "messages"
[42461] "winning" "team"
[42463] "India" "cheered"
[42465] "one" "Team"
[42467] "India" "brought"
[42469] "home" "first"
[42471] "Olympic" "medal"
[42473] "hockey" "41"
[42475] "years" "Thursday"
[42477] "Indian" "men's"
[42479] "hockey" "team"
[42481] "defeated" "Germany"
[42483] "5-4" "points"
[42485] "clinch" "bronze"
[42487] "medal" "pulsating"
[42489] "match" "Tokyo"
[42491] "Olympics" "2021"
[42493] "saw" "tense"
[42495] "moments" "came"
[42497] "India's" "way"
[42499] "Bollywood" "celebrities"
[42501] "also" "took"
[42503] "social" "media"
[42505] "congratulate" "team"
[42507] "celebrate" "win"
[42509] "Shah" "Shah"
[42511] "Rukh" "Khan"
[42513] "Akshay" "Kumar"
[42515] "Farhan" "Akhtar"
[42517] "Ranveer" "Singh"
[42519] "celebs" "posted"
[42521] "historic" "win"
[42523] "social" "media"
[42525] "handles" "Shah"
[42527] "Rukh" "Khan"
[42529] "played" "hockey"
[42531] "coach" "Chak"
[42533] "De" "India"
[42535] "shared" "via"
[42537] "Twitter" "Wow"
[42539] "Indian" "Men's"
[42541] "Hockey" "Team"
[42543] "Congratulations" "Resilience"
[42545] "skill" "peak"
[42547] "exciting" "match"
[42549] "Akshay" "Kumar"
[42551] "dedicated" "sports"
[42553] "fan" "tweeted"
[42555] "Congratulations" "Team"
[42557] "India" "rewriting"
[42559] "history" "Olympic"
[42561] "medal" "41"
[42563] "years" "match"
[42565] "comeback" "#Tokyo2020"
[42567] "Kareena" "Kapoor"
[42569] "Khan" "Sonu"
[42571] "Sood" "Anushka"
[42573] "Sharma" "also"
[42575] "congratulated" "team"
[42577] "Filmmaker" "Reema"
[42579] "Kagti" "took"
[42581] "Twitter" "post"
[42583] "Olympic" "medal"
[42585] "Indian" "hockey"
[42587] "41" "years"
[42589] "Yay" "Well"
[42591] "played" "entire"
[42593] "team" "bringing"
[42595] "bronze" "home"
[42597] "Ranveer" "Singh"
[42599] "wrote" "Twitter"
[42601] "Historic" "Heroic"
[42603] "Humongous" "wait"
[42605] "finally" "Indian"
[42607] "Men's" "#Hockey"
[42609] "Team" "wins"
[42611] "#Bronze" "#Tokyo2020"
[42613] "entire" "nation"
[42615] "proud" "@TheHockeyIndia@WeAreTeamIndia"
[42617] "#Olympics" "#Cheer4India"
[42619] "#TeamIndia" "#IND"
[42621] "Actor" "Rajeev"
[42623] "Khandelwal" "tweeted"
[42625] "words" "emotions"
[42627] "#MensHockeyTeam" "Ashwin"
[42629] "Mushran" "shared"
[42631] "via" "Twitter"
[42633] "Sometimes" "#Bronze"
[42635] "worth" "weight"
[42637] "Gold" "Pulled"
[42639] "last" "5"
[42641] "minutes" "Well"
[42643] "done" "#ind"
[42645] "#Hockey" "#Olympics"
[42647] "See" "reactions"
[42649] "Indian" "men's"
[42651] "hockey" "team"
[42653] "winning" "bronze"
[42655] "Tokyo" "Olympic"
[42657] "2021" "#VineshPhogat#Wrestling"
[42659] "Randeep" "Hooda"
[42661] "@RandeepHooda" "August"
[42663] "5" "2021"
[42665] "Congratulations" "Real"
[42667] "Heroes" "India"
[42669] "Indian" "Men's"
[42671] "Hockey" "Team"
[42673] "Today" "made"
[42675] "every" "Indian"
[42677] "proud" "#TokyoOlympics2020"
[42679] "#MensHockeyTeam" "sonu"
[42681] "sood" "@SonuSood"
[42683] "August" "5"
[42685] "2021" "Wow"
[42687] "Indian" "Men's"
[42689] "Hockey" "Team"
[42691] "Congratulations" "Resilience"
[42693] "skill" "peak"
[42695] "exciting" "match"
[42697] "Shah" "Rukh"
[42699] "Khan" "@iamsrk"
[42701] "August" "5"
[42703] "2021" "Congratulations"
[42705] "Team" "India"
[42707] "rewriting" "history"
[42709] "Olympic" "medal"
[42711] "41" "years"
[42713] "match" "comeback"
[42715] "#Tokyo2020" "Akshay"
[42717] "Kumar" "@akshaykumar"
[42719] "August" "5"
[42721] "2021" "Historic"
[42723] "Heroic" "Humongous"
[42725] "wait" "finally"
[42727] "Indian" "Men's"
[42729] "#Hockey" "Team"
[42731] "wins" "#Bronze"
[42733] "#Tokyo2020" "entire"
[42735] "nation" "proud"
[42737] "@TheHockeyIndia" "@WeAreTeamIndia"
[42739] "#Olympics" "#Cheer4India"
[42741] "#TeamIndia" "#IND"
[42743] "83" "@83thefilm"
[42745] "August" "5"
[42747] "2021" "Olympic"
[42749] "medal" "Indian"
[42751] "hockey" "41"
[42753] "years" "Yay"
[42755] "Well" "played"
[42757] "entire" "team"
[42759] "bringing" "bronze"
[42761] "home" "Reema"
[42763] "Kagti" "@kagtireema"
[42765] "August" "5"
[42767] "2021" "Sometimes"
[42769] "#Bronze" "worth"
[42771] "weight" "Gold"
[42773] "Pulled" "last"
[42775] "5" "minutes"
[42777] "Well" "done"
[42779] "#ind" "#Hockey"
[42781] "#Olympics" "Ashwin"
[42783] "Mushran" "@ashwinmushran"
[42785] "August" "5"
[42787] "2021" "words"
[42789] "emotions" "#MensHockeyTeam"
[42791] "Rajeev" "Khandelwal"
[42793] "@RK1610IsMe" "August"
[42795] "5" "2021"
[42797] "Just" "Historic"
[42799] "MEDAL" "hockey"
[42801] "41" "years.#HockeyIndiaTeam"
[42803] "entire" "nation"
[42805] "extremely" "proud"
[42807] "Congratulations" "Thank"
[42809] "#Hockey" "Ankit"
[42811] "Tiwari" "@officiallyAnkit"
[42813] "August" "5"
[42815] "2021" "proud"
[42817] "#teamIndia" "showing"
[42819] "exemplary" "fighting"
[42821] "spirit" "bringing"
[42823] "4th" "medal"
[42825] "super" "stuff"
[42827] "#Tokyo2020" "#Hockey"
[42829] "Farhan" "Akhtar"
[42831] "@FarOutAkhtar" "August"
[42833] "5" "2021"
[42835] "Kritika" "Kamra"
[42837] "@Kritika_Kamra" "August"
[42839] "5" "2021"
[42841] "Earlier" "Mirabai"
[42843] "Chanu" "Saikhom"
[42845] "won" "silver"
[42847] "medal" "weightlifting"
[42849] "PV" "Sindhu"
[42851] "won" "bronze"
[42853] "badminton" "boxer"
[42855] "Lovlina" "Borgohain"
[42857] "won" "bronze"
[42859] "medal" "boxing"
[42861] "Classification" "Language"
[42863] "ENGLISH" "Publication-Type"
[42865] "Newspaper" "Body"
[42867] "New" "Delhi"
[42869] "Aug" "5"
[42871] "Indian" "wrestler"
[42873] "Ravi" "Kumar"
[42875] "Dahiya" "Thursday"
[42877] "clinched" "Olympic"
[42879] "silver" "medal"
[42881] "losing" "57"
[42883] "kg" "final"
[42885] "Russian" "two-time"
[42887] "defending" "world"
[42889] "champion" "Zavur"
[42891] "Uguev" "ROC"
[42893] "wrestler" "registered"
[42895] "7-4" "win"
[42897] "Dahiya" "expectations"
[42899] "23-year-old" "Dahiya"
[42901] "become" "India's"
[42903] "youngest" "Olympic"
[42905] "champion" "Russian"
[42907] "defended" "well"
[42909] "win" "comfortably"
[42911] "India's" "second"
[42913] "silver" "medal"
[42915] "fifth" "medal"
[42917] "overall" "Tokyo"
[42919] "Olympics" "Prime"
[42921] "Minister" "Narendra"
[42923] "Modi" "tweeted"
[42925] "Ravi" "Kumar"
[42927] "Dahiya" "remarkable"
[42929] "wrestler" "fighting"
[42931] "spirit" "tenacity"
[42933] "outstanding" "Congratulations"
[42935] "winning" "Silver"
[42937] "Medal" "Tokyo"
[42939] "2020" "India"
[42941] "takes" "great"
[42943] "pride" "accomplishments"
[42945] "Dahiya" "lost"
[42947] "Uguev" "2019"
[42949] "World" "Championship"
[42951] "also" "wrestler"
[42953] "Nahri" "village"
[42955] "Haryana" "outclassed"
[42957] "Colombia's" "Tigreros"
[42959] "Urbano" "13-2"
[42961] "opener" "outwitted"
[42963] "Bulgaria's" "Georgi"
[42965] "Valentinov" "Vangelov"
[42967] "14-4" "quarterfinals"
[42969] "semifinals" "erased"
[42971] "massive" "2-9"
[42973] "deficit" "pin"
[42975] "Nurislam" "Sanayev"
[42977] "Sushil" "Kumar"
[42979] "now" "jail"
[42981] "charges" "murder"
[42983] "Indian" "wrestler"
[42985] "made" "final"
[42987] "Olympics" "won"
[42989] "silver" "2012"
[42991] "London" "Games"
[42993] "Yogeshwar" "Dutt"
[42995] "also" "won"
[42997] "bronze" "Sushil"
[42999] "won" "bronze"
[43001] "2008" "Beijing"
[43003] "Games" "KD"
[43005] "Jadhav" "won"
[43007] "bronze" "1952"
[43009] "Helsinki" "Games"
[43011] "Sakshi" "Malik"
[43013] "become" "first"
[43015] "woman" "wrestler"
[43017] "win" "Olympic"
[43019] "medal" "clinched"
[43021] "bronze" "2016"
[43023] "Rio" "Olympic"
[43025] "Games" "Published"
[43027] "HT" "Digital"
[43029] "Content" "Services"
[43031] "permission" "MINT"
[43033] "query" "respect"
[43035] "article" "content"
[43037] "requirement" "please"
[43039] "contact" "Editor"
[43041] "Classification" "Language"
[43043] "ENGLISH" "Publication-Type"
[43045] "Newspaper" "Body"
[43047] "India" "Aug"
[43049] "3" "India"
[43051] "men's" "hockey"
[43053] "team" "lost"
[43055] "semifinal" "match"
[43057] "2018" "world"
[43059] "champions" "Belgium"
[43061] "Tuesday" "Tokyo"
[43063] "Olympics" "thus"
[43065] "missing" "chance"
[43067] "make" "first"
[43069] "Olympic" "final"
[43071] "four" "decades"
[43073] "last" "time"
[43075] "India" "played"
[43077] "men's" "hockey"
[43079] "final" "Olympics"
[43081] "back" "1980"
[43083] "team" "won"
[43085] "gold" "medal"
[43087] "India's" "first"
[43089] "meeting" "Belgium"
[43091] "since" "2-3"
[43093] "defeat" "FIH"
[43095] "Pro" "League"
[43097] "match" "February"
[43099] "2019" "India's"
[43101] "campaign" "still"
[43103] "compete" "Bronze"
[43105] "medal" "match"
[43107] "Thursday" "face"
[43109] "loser" "second"
[43111] "semifinal" "Australia"
[43113] "Germany" "Highlights"
[43115] "India" "vs"
[43117] "Belgium" "Men's"
[43119] "Hockey" "SF"
[43121] "India" "got"
[43123] "nervy" "start"
[43125] "conceding" "early"
[43127] "penalty" "corner"
[43129] "semifinal" "Felix"
[43131] "Denayer" "sent"
[43133] "ball" "inside"
[43135] "scoring" "circle"
[43137] "ball" "deflected"
[43139] "Rupinder" "Pal"
[43141] "Singh" "Despite"
[43143] "Alexander" "Hendrickx"
[43145] "turf" "point"
[43147] "Luick" "Luypaert"
[43149] "made" "opportunity"
[43151] "scored" "early"
[43153] "goal" "Belgium"
[43155] "second" "minute"
[43157] "first" "quarter"
[43159] "took" "India"
[43161] "nine" "minutes"
[43163] "get" "things"
[43165] "back" "level-pegging"
[43167] "Harmanpreet" "Singh"
[43169] "smashed" "powerful"
[43171] "dragflick" "past"
[43173] "Belgium" "goalkeeper"
[43175] "Vincent" "Vanasch"
[43177] "World" "Champions"
[43179] "conceded" "penalty"
[43181] "corner" "Two"
[43183] "minutes" "later"
[43185] "Amit" "Rohidas"
[43187] "passed" "ball"
[43189] "Mandeep" "Singh"
[43191] "inside" "circle"
[43193] "Indian" "forward"
[43195] "turned" "tomahawk"
[43197] "shot" "nets"
[43199] "give" "India"
[43201] "lead" "Tokyo"
[43203] "Olympics" "Day"
[43205] "11" "LIVE"
[43207] "Belgium" "came"
[43209] "back" "strong"
[43211] "2nd" "quarter"
[43213] "getting" "many"
[43215] "four" "penalty"
[43217] "corners" "within"
[43219] "matter" "minutes"
[43221] "Hendrickx" "scored"
[43223] "12th" "goal"
[43225] "Olympics" "penalty"
[43227] "corner" "getting"
[43229] "things" "back"
[43231] "level" "terms"
[43233] "teams" "went"
[43235] "halftime" "two"
[43237] "goals" "apiece"
[43239] "third" "quarter"
[43241] "cagey" "affair"
[43243] "neither" "two"
[43245] "teams" "getting"
[43247] "many" "opportunities"
[43249] "India's" "inability"
[43251] "prevent" "penalty"
[43253] "corners" "cost"
[43255] "final" "15"
[43257] "minutes" "Alexander"
[43259] "Hendrickx" "scored"
[43261] "two" "goals"
[43263] "fourth" "one"
[43265] "coming" "penalty"
[43267] "stroke" "India"
[43269] "putting" "extra"
[43271] "attacker" "field"
[43273] "PR" "Sreejesh"
[43275] "turf" "Belgium"
[43277] "veteran" "John-John"
[43279] "Dohmen" "scored"
[43281] "fifth" "goal"
[43283] "dying" "minutes"
[43285] "point" "mere"
[43287] "formality" "good"
[43289] "journey" "India"
[43291] "men's" "hockey"
[43293] "team" "Tokyo"
[43295] "Olympics" "far"
[43297] "defeating" "New"
[43299] "Zealand" "3-2"
[43301] "opening" "group"
[43303] "game" "picking"
[43305] "wins" "Germany"
[43307] "2-0" "Spain"
[43309] "3-1" "Argentina"
[43311] "3-1" "Japan"
[43313] "5-3" "group"
[43315] "matches" "Barring"
[43317] "7-1" "defeat"
[43319] "Australia" "India"
[43321] "won" "games"
[43323] "far" "surpass"
[43325] "Belgium" "test"
[43327] "details" "awaited"
[43329] "Published" "HT"
[43331] "Digital" "Content"
[43333] "Services" "permission"
[43335] "Hindustan" "Times"
[43337] "query" "respect"
[43339] "article" "content"
[43341] "requirement" "please"
[43343] "contact" "Editor"
[43345] "Classification" "Language"
[43347] "ENGLISH" "Publication-Type"
[43349] "Newswire" "Body"
[43351] "PV" "Sindhu"
[43353] "taking" "second"
[43355] "seed" "World"
[43357] "No1" "Chinese"
[43359] "Taipei's" "Tai"
[43361] "Tzu-Ying" "Badminton"
[43363] "Women's" "singles"
[43365] "semi-final" "Tokyo"
[43367] "Olympics" "One"
[43369] "biggest" "matches"
[43371] "Tokyo" "Olympics"
[43373] "far" "India's"
[43375] "medal" "hopes"
[43377] "concerned" "Badminton"
[43379] "star" "PV"
[43381] "Sindhu" "World"
[43383] "1" "second"
[43385] "seedChinese" "Taipei's"
[43387] "Tai" "Tzu-Ying"
[43389] "women's" "singles"
[43391] "semi-final" "ongoing"
[43393] "Tokyo" "Olympics"
[43395] "2020" "Sindhu"
[43397] "defeatedJapan's" "Akane"
[43399] "Yamaguchi" "quarterfinals"
[43401] "straight" "sets"
[43403] "21-13" "22-20"
[43405] "game" "lasted"
[43407] "56" "minutes"
[43409] "reigning" "World"
[43411] "champion" "won"
[43413] "first" "game"
[43415] "easily" "Yamaguchi"
[43417] "stormed" "back"
[43419] "spectacular" "game"
[43421] "long" "rallies"
[43423] "just" "classic"
[43425] "mouthwatering" "badminton"
[43427] "15" "minutes"
[43429] "However" "Sindhu"
[43431] "came" "back"
[43433] "18-20" "won"
[43435] "four" "points"
[43437] "row" "finish"
[43439] "22-20" "advance"
[43441] "semi-final" "PV"
[43443] "Sindhu" "vs"
[43445] "Tai" "Tzu"
[43447] "Ying" "Live"
[43449] "streaming" "match"
[43451] "currently" "telecasted"
[43453] "Sony" "Ten1"
[43455] "Sony" "Ten"
[43457] "2" "live-streamed"
[43459] "SonyLiv" "Olympics"
[43461] "Spotlight" "2"
[43463] "Live" "Scores"
[43465] "Updates" "Sindhu"
[43467] "took" "early"
[43469] "lead" "Tai"
[43471] "won" "flurry"
[43473] "points" "Taipei"
[43475] "star" "came"
[43477] "back" "take"
[43479] "13-12" "lead"
[43481] "first" "game"
[43483] "Sindhu" "came"
[43485] "back" "level"
[43487] "scoreline" "took"
[43489] "two" "points"
[43491] "row" "Tai"
[43493] "smashed" "back"
[43495] "brought" "scoreline"
[43497] "14-14" "encounter"
[43499] "went" "back"
[43501] "forth" "however"
[43503] "Tai" "came"
[43505] "back" "outstanding"
[43507] "smashed" "gameplays"
[43509] "win" "set"
[43511] "21-18" "led"
[43513] "1-0" "semi-final"
[43515] "Sindhu" "started"
[43517] "second" "set"
[43519] "strong" "note"
[43521] "2-1" "lead"
[43523] "Tai" "came"
[43525] "back" "strongly"
[43527] "overcame" "every"
[43529] "Sindhu" "smash"
[43531] "respond" "much"
[43533] "aggression" "took"
[43535] "10-6" "lead"
[43537] "one" "shot"
[43539] "got" "entangle"
[43541] "net" "Tai"
[43543] "relentless" "pursuit"
[43545] "give" "Sindhu"
[43547] "chance" "kept"
[43549] "playing" "stamina"
[43551] "end" "Tai"
[43553] "Tzu" "Ying"
[43555] "proved" "good"
[43557] "Sindhu" "defeating"
[43559] "21-18" "21-12"
[43561] "two" "straight"
[43563] "sets" "Classification"
[43565] "Language" "ENGLISH"
[43567] "Publication-Type" "Newspaper"
[43569] "Body" "Advertising"
[43571] "Standards" "Council"
[43573] "India" "ASCI"
[43575] "said" "brands"
[43577] "piggybacking" "athletes"
[43579] "winning" "medals"
[43581] "Tokyo" "Olympics"
[43583] "advertising" "without"
[43585] "permission" "violation"
[43587] "code" "ads"
[43589] "refer" "showcase"
[43591] "celebrities" "without"
[43593] "explicit" "permission"
[43595] "ads" "potential"
[43597] "violation" "ASCI"
[43599] "code" "said"
[43601] "ASCI" "secretary"
[43603] "general" "Manisha"
[43605] "Kapoor" "said"
[43607] "ads" "misleading"
[43609] "consumers" "may"
[43611] "think" "celebrities"
[43613] "genuinely" "endorse"
[43615] "products" "ASCI"
[43617] "guidelines" "legally"
[43619] "enforceable" "violations"
[43621] "council's" "guidelines"
[43623] "treated" "violation"
[43625] "government's" "rules"
[43627] "Indian" "athletes"
[43629] "like" "weightlifter"
[43631] "Mirabai" "Chanu"
[43633] "badminton" "player"
[43635] "PV" "Sindhu"
[43637] "boxer" "Lovlina"
[43639] "Borgohain" "wrestler"
[43641] "Ravi" "Kumar"
[43643] "Dahiya" "won"
[43645] "medals" "hockey"
[43647] "teams" "created"
[43649] "history" "Tokyo"
[43651] "leading" "surge"
[43653] "brands" "putting"
[43655] "ads" "messages"
[43657] "social" "media"
[43659] "directly" "leveraging"
[43661] "athletes" "names"
[43663] "without" "permissions"
[43665] "contracts" "Thursday"
[43667] "men's" "hockey"
[43669] "team" "defeated"
[43671] "Germany" "claim"
[43673] "bronze-medal" "match"
[43675] "many" "brands"
[43677] "corporate" "chief"
[43679] "executives" "said"
[43681] "felt" "like"
[43683] "gold" "Team"
[43685] "captain" "Manpreet"
[43687] "Singh" "dedicating"
[43689] "medal" "Covid-19"
[43691] "warriors" "became"
[43693] "trend" "athletes"
[43695] "names" "leveraged"
[43697] "linked" "brands"
[43699] "across" "corporates"
[43701] "Aditya" "Birla"
[43703] "Group" "Apollo"
[43705] "Hospitals" "Perfetti"
[43707] "Van" "Melle"
[43709] "agencies" "BrandOn-Wheelz"
[43711] "out-of-home" "media"
[43713] "agency" "Brand"
[43715] "Sigma" "Classification"
[43717] "Language" "ENGLISH"
[43719] "Publication-Type" "Newspaper"
[43721] "Body" "New"
[43723] "Delhi" "Aug"
[43725] "8" "India"
[43727] "capped" "best-ever"
[43729] "performance" "Tokyo"
[43731] "Olympics" "haul"
[43733] "seven" "medals"
[43735] "including" "gold"
[43737] "token" "appreciation"
[43739] "Go" "First"
[43741] "previously" "known"
[43743] "GoAir" "today"
[43745] "announced" "free"
[43747] "travel" "network"
[43749] "5" "years"
[43751] "medal" "winners"
[43753] "token" "appreciation"
[43755] "brought" "us"
[43757] "glory" "#Olympics2021"
[43759] "happy" "offer"
[43761] "free" "travel"
[43763] "network" "5"
[43765] "years" "medal"
[43767] "winners" "Go"
[43769] "First" "said"
[43771] "tweet" "token"
[43773] "appreciation" "brought"
[43775] "us" "glory"
[43777] "#Olympics2021" "happy"
[43779] "offer" "free"
[43781] "travel" "network"
[43783] "5" "years"
[43785] "medal" "winners"
[43787] "#Tokyo2020" "#GoFirst"
[43789] "@mirabai_chanu" "@Pvsindhu1"
[43791] "@LovlinaBorgohai" "@BajrangPunia"
[43793] "@Neeraj_chopra1" "#RaviDahiya"
[43795] "@TheHockeyIndia" "GO"
[43797] "FIRST" "@GoFirstairways"
[43799] "August" "8"
[43801] "2021" "Saturday"
[43803] "Javelin" "thrower"
[43805] "Neeraj" "Chopra"
[43807] "became" "second"
[43809] "Indian" "win"
[43811] "individual" "gold"
[43813] "Olympics" "Budget"
[43815] "carrier" "IndiGo"
[43817] "announced" "offer"
[43819] "unlimited" "free"
[43821] "travel" "Gold"
[43823] "Medallist" "Neeraj"
[43825] "Chopra" "period"
[43827] "one" "year"
[43829] "offer" "applicable"
[43831] "August" "8"
[43833] "2021" "till"
[43835] "August" "7"
[43837] "2022" "Ronojoy"
[43839] "Dutta" "Whole-time"
[43841] "Director" "Chief"
[43843] "Executive" "Officer"
[43845] "IndiGo" "said"
[43847] "Neeraj" "overjoyed"
[43849] "hear" "remarkable"
[43851] "achievement" "made"
[43853] "country" "proud"
[43855] "know" "IndiGo"
[43857] "employees" "truly"
[43859] "honoured" "welcome"
[43861] "onboard" "one"
[43863] "flights" "humility"
[43865] "like" "offer"
[43867] "free" "flights"
[43869] "IndiGo" "year"
[43871] "shown" "us"
[43873] "hard" "work"
[43875] "resilience" "passion"
[43877] "can" "achieve"
[43879] "sure" "torchbearer"
[43881] "future" "Indian"
[43883] "athletes" "Well"
[43885] "done" "Neeraj"
[43887] "India" "now"
[43889] "won" "seven"
[43891] "medals" "multi-sporting"
[43893] "event" "best-ever"
[43895] "performance" "ongoing"
[43897] "Tokyo" "2020"
[43899] "Bajrang" "Punia"
[43901] "Bronze" "Mirabai"
[43903] "Chanu" "silver"
[43905] "PV" "Sindhu"
[43907] "bronze" "Lovlina"
[43909] "Borgohain" "bronze"
[43911] "men's" "hockey"
[43913] "team" "bronze"
[43915] "Ravi" "Kumar"
[43917] "Dahiya" "silver"
[43919] "also" "won"
[43921] "medals" "Published"
[43923] "HT" "Digital"
[43925] "Content" "Services"
[43927] "permission" "MINT"
[43929] "query" "respect"
[43931] "article" "content"
[43933] "requirement" "please"
[43935] "contact" "Editor"
[43937] "Classification" "Language"
[43939] "ENGLISH" "Publication-Type"
[43941] "Newspaper" "Body"
[43943] "India" "Aug"
[43945] "2" "India's"
[43947] "star" "discus"
[43949] "throw" "athlete"
[43951] "Kamalpreet" "Kaur"
[43953] "impressed" "one"
[43955] "ongoing" "Tokyo"
[43957] "Olympics" "finishing"
[43959] "6th" "final"
[43961] "women's" "event"
[43963] "Monday" "Soon"
[43965] "maiden" "Olympic"
[43967] "campaign" "came"
[43969] "end" "India's"
[43971] "legendary" "cricketer"
[43973] "Sachin" "Tendulkar"
[43975] "took" "Twitter"
[43977] "send" "good"
[43979] "wishes" "congratulate"
[43981] "inspired" "performance"
[43983] "biggest" "stage"
[43985] "Sometimes" "win"
[43987] "sometimes" "learn"
[43989] "Hard" "luck"
[43991] "Kamalpreet" "proud"
[43993] "giving" "best"
[43995] "representing" "India"
[43997] "big" "stage.This"
[43999] "experience" "make"
[44001] "stronger" "athlete"
[44003] "future" "Tendulkar"
[44005] "tweeted" "Full"
[44007] "Tokyo" "2020"
[44009] "Coverage" "25-year-old"
[44011] "Kaur" "qualified"
[44013] "final" "second-best"
[44015] "Saturday" "never"
[44017] "running" "medal"
[44019] "eight" "rounds"
[44021] "competition" "interrupted"
[44023] "rain" "hour"
[44025] "TOKYO" "2020"
[44027] "OLYMPICS" "DAY"
[44029] "10" "BLOG"
[44031] "third-round" "throw"
[44033] "63.70m" "end"
[44035] "sixth" "equal"
[44037] "2010" "Commonwealth"
[44039] "Games" "gold"
[44041] "medallist" "Krishna"
[44043] "Poonia's" "performance"
[44045] "2012" "London"
[44047] "Olympics" "Kaur"
[44049] "without" "personal"
[44051] "coach" "looked"
[44053] "nervous" "short"
[44055] "confidence" "throughout"
[44057] "competition" "lacked"
[44059] "international" "exposure"
[44061] "taken" "part"
[44063] "World" "University"
[44065] "Games" "2017"
[44067] "lone" "international"
[44069] "competition" "farmer's"
[44071] "daughter" "Punjab's"
[44073] "Kabarwala" "village"
[44075] "Kaur" "raised"
[44077] "hopes" "India's"
[44079] "elusive" "athletics"
[44081] "medal" "finishing"
[44083] "second" "qualification"
[44085] "round" "Saturday"
[44087] "best" "throw"
[44089] "64m" "American"
[44091] "Valarie" "Allman"
[44093] "took" "gold"
[44095] "first-round" "throw"
[44097] "68.98m" "Kristin"
[44099] "Pudenz" "66.86m"
[44101] "Germany" "reigning"
[44103] "world" "champion"
[44105] "Yaime" "Perez"
[44107] "65.72m" "Cuba"
[44109] "won" "silver"
[44111] "bronze" "respectively"
[44113] "Two-time" "defending"
[44115] "champion" "Sandra"
[44117] "Perkovic" "Croatia"
[44119] "fourth" "best"
[44121] "throw" "65.01m"
[44123] "Published" "HT"
[44125] "Digital" "Content"
[44127] "Services" "permission"
[44129] "Hindustan" "Times"
[44131] "query" "respect"
[44133] "article" "content"
[44135] "requirement" "please"
[44137] "contact" "Editor"
[44139] "Classification" "Language"
[44141] "ENGLISH" "Publication-Type"
[44143] "Newswire" "Body"
[44145] "India" "Aug"
[44147] "4" "Indian"
[44149] "women's" "hockey"
[44151] "team's" "first"
[44153] "ever" "Olympic"
[44155] "semi-final" "ended"
[44157] "heart-break" "edged"
[44159] "2-1" "Argentina"
[44161] "India" "took"
[44163] "early" "lead"
[44165] "penalty" "corner"
[44167] "Argentine" "captain"
[44169] "Maria" "Noel"
[44171] "Barrionuevo" "scored"
[44173] "brace" "help"
[44175] "four-time" "Olympic"
[44177] "medallists" "ensure"
[44179] "least" "silver"
[44181] "medal" "Indian"
[44183] "women" "fight"
[44185] "bronze" "medal"
[44187] "just" "like"
[44189] "men's" "team"
[44191] "Rani" "Rampal's"
[44193] "team" "take"
[44195] "2016" "Rio"
[44197] "Olympics" "gold"
[44199] "medallists" "Great"
[44201] "Britain" "bronze"
[44203] "medal" "match"
[44205] "GBR" "team"
[44207] "lost" "first"
[44209] "semi-final" "Netherlands"
[44211] "always" "going"
[44213] "tough" "task"
[44215] "Indian" "women"
[44217] "Argentinians" "medal"
[44219] "winners" "Olympics"
[44221] "four" "occasions"
[44223] "Argentinians" "won"
[44225] "silver" "Sydney"
[44227] "2000" "followed"
[44229] "bronze" "medals"
[44231] "Athens" "2004"
[44233] "Beijing" "2008"
[44235] "won" "bronze"
[44237] "medal" "London"
[44239] "2012" "now"
[44241] "assured" "least"
[44243] "silver" "medal"
[44245] "missed" "Rio"
[44247] "2016" "dream"
[44249] "start" "Indian"
[44251] "team" "won"
[44253] "penalty" "corner"
[44255] "first" "entry"
[44257] "Argentine" "circle"
[44259] "second" "minute"
[44261] "first" "quarter"
[44263] "Gurjit" "Kaur"
[44265] "converted" "style"
[44267] "took" "clean"
[44269] "strike" "pushing"
[44271] "ball" "left"
[44273] "Argentine" "goal-keeper"
[44275] "low" "air"
[44277] "beat" "defence"
[44279] "Latin" "Americans"
[44281] "Tokyo" "Olympics"
[44283] "India" "vs"
[44285] "Argentina" "Highlights"
[44287] "Stunned" "early"
[44289] "goal" "Argentine"
[44291] "women" "pushed"
[44293] "attack" "Indian"
[44295] "women" "defended"
[44297] "bravely" "just"
[44299] "done" "Australia"
[44301] "quarter-final" "India"
[44303] "stayed" "resolute"
[44305] "end" "first"
[44307] "quarter" "1-0"
[44309] "Argentina" "knew"
[44311] "ante" "second"
[44313] "quarter" "came"
[44315] "guns" "blazing"
[44317] "pushing" "Indians"
[44319] "inside" "half"
[44321] "pressure" "yielded"
[44323] "results" "Argentina"
[44325] "won" "back"
[44327] "back" "penalty"
[44329] "corners" "captain"
[44331] "Maria" "Noel"
[44333] "Barrionuevo" "scored"
[44335] "scintillating" "goal"
[44337] "equalise" "penalty"
[44339] "corner" "inch-perfect"
[44341] "strike" "rifled"
[44343] "past" "India"
[44345] "goal-keeper" "Savita"
[44347] "Punia's" "stretched"
[44349] "left" "leg"
[44351] "India" "needed"
[44353] "jolt" "get"
[44355] "slumber" "goal"
[44357] "effect" "Rani"
[44359] "Rampal" "company"
[44361] "Indians" "made"
[44363] "repeated" "circle"
[44365] "entries" "won"
[44367] "two" "penalty"
[44369] "corners" "towards"
[44371] "end" "second"
[44373] "half" "Argentine"
[44375] "defence" "stood"
[44377] "strong" "Tokyo"
[44379] "Olympics" "Day"
[44381] "13" "Live"
[44383] "Updates" "Indians"
[44385] "contend" "repeated"
[44387] "Argentinian" "attacks"
[44389] "left" "flank"
[44391] "managed" "keep"
[44393] "score" "1-1"
[44395] "half-time" "hooter"
[44397] "balance" "tilted"
[44399] "Argentinians" "clearly"
[44401] "started" "dominate"
[44403] "encounter" "Indians"
[44405] "left" "defending"
[44407] "early" "phases"
[44409] "third" "quarter"
[44411] "Barrionuevo" "converted"
[44413] "penalty" "corner"
[44415] "withing" "five"
[44417] "minutes" "start"
[44419] "third" "quarter"
[44421] "India" "needed"
[44423] "play" "freely"
[44425] "fourth" "quarter"
[44427] "started" "front"
[44429] "foot" "Captain"
[44431] "Rani" "Rampal"
[44433] "fabulous" "run"
[44435] "opening" "minutes"
[44437] "setting" "momentum"
[44439] "team" "India"
[44441] "won" "penalty"
[44443] "corner" "6th"
[44445] "minute" "35-year-old"
[44447] "Argentine" "goal-keeper"
[44449] "saved" "Gurjit"
[44451] "Kaur's" "attempt"
[44453] "India" "kept"
[44455] "attacking" "came"
[44457] "close" "equalising"
[44459] "couple" "occasions"
[44461] "Argentina" "held"
[44463] "book" "place"
[44465] "final" "take"
[44467] "mighty" "Netherlands"
[44469] "silver" "medallists"
[44471] "Rio" "Olympics"
[44473] "Published" "HT"
[44475] "Digital" "Content"
[44477] "Services" "permission"
[44479] "Hindustan" "Times"
[44481] "query" "respect"
[44483] "article" "content"
[44485] "requirement" "please"
[44487] "contact" "Editor"
[44489] "Classification" "Language"
[44491] "ENGLISH" "Publication-Type"
[44493] "Newswire" "Body"
[44495] "New" "Delhi"
[44497] "July" "30"
[44499] "Ace" "Indian"
[44501] "shuttler" "PV"
[44503] "Sindhu" "Friday"
[44505] "stormed" "semi-finals"
[44507] "women's" "singles"
[44509] "badminton" "Tokyo"
[44511] "Olympics" "2020"
[44513] "defeated" "fourth-seeded"
[44515] "Akane" "Yamaguchi"
[44517] "Japan" "21-13"
[44519] "22-20" "56-minute"
[44521] "quarterfinal" "clash"
[44523] "keep" "Olympic"
[44525] "medal" "hopes"
[44527] "alive" "Sindhu"
[44529] "won" "silver"
[44531] "2016" "Rio"
[44533] "Olympics" "came"
[44535] "match" "11-7"
[44537] "head-to-head" "count"
[44539] "Japanese" "last"
[44541] "beaten" "England"
[44543] "Championship" "March"
[44545] "year" "lone"
[44547] "Indian" "fray"
[44549] "badminton" "Sai"
[44551] "Praneeth" "men's"
[44553] "doubles" "pair"
[44555] "Chirag" "Shetty"
[44557] "Satwiksairaj" "Rankireddy"
[44559] "knocked" "Tokyo"
[44561] "Games" "Reactions"
[44563] "started" "pour"
[44565] "social" "soon"
[44567] "Indian" "shuttler"
[44569] "played" "final"
[44571] "shot" "shouted"
[44573] "loud" "announce"
[44575] "victory" "People"
[44577] "Indian" "cricket"
[44579] "fraternity" "came"
[44581] "forward" "wish"
[44583] "Sindhu" "terrific"
[44585] "victory" "Former"
[44587] "Indian" "cricketer"
[44589] "Wasim" "Jaffer"
[44591] "said" "champion"
[44593] "played" "like"
[44595] "one" "Superb"
[44597] "Sindhu" "Storms"
[44599] "Semis" "Congratulations"
[44601] "@Pvsindhu1" "Indian"
[44603] "off-spinner" "Ravichandran"
[44605] "Ashwin" "also"
[44607] "took" "Twitter"
[44609] "congratulated" "Sindhu"
[44611] "qualifying" "semi-finals"
[44613] "Tokyo" "Olympics"
[44615] "Indian" "Premier"
[44617] "League" "franchises"
[44619] "wished" "ace"
[44621] "Indian" "shuttler"
[44623] "success" "Tokyo"
[44625] "Earlier" "Thursday"
[44627] "Sindhu" "notched"
[44629] "straight-game" "triumph"
[44631] "Denmark's" "Mia"
[44633] "Blichfeldt" "13th"
[44635] "seed" "pre-quarterfinals"
[44637] "defeating" "Yamaguchi"
[44639] "face" "winner"
[44641] "quarterfinal" "Thailand's"
[44643] "Ratchanok" "Inthanon"
[44645] "Chinese" "Taipei's"
[44647] "Tai" "Tzu"
[44649] "Ying" "Agency"
[44651] "Inputs" "Published"
[44653] "HT" "Digital"
[44655] "Content" "Services"
[44657] "permission" "Hindustan"
[44659] "Times" "query"
[44661] "respect" "article"
[44663] "content" "requirement"
[44665] "please" "contact"
[44667] "Editor" "Classification"
[44669] "Language" "ENGLISH"
[44671] "Publication-Type" "Newswire"
[44673] "Body" "NEW"
[44675] "DELHI" "July"
[44677] "25" "Forty-five"
[44679] "years" "ago"
[44681] "Indian" "men's"
[44683] "hockey" "team"
[44685] "suffered" "worst"
[44687] "loss" "Olympics"
[44689] "Less" "year"
[44691] "winning" "1975"
[44693] "World" "Cup"
[44695] "Kuala" "Lumpur"
[44697] "team" "hit"
[44699] "nadir" "beaten"
[44701] "1-6" "group"
[44703] "stages" "Montreal"
[44705] "1976" "Australia"
[44707] "went" "claim"
[44709] "silver" "team"
[44711] "compelling" "reason"
[44713] "offer" "explain"
[44715] "heavy" "defeat-Olympic"
[44717] "hockey" "played"
[44719] "artificial" "turf"
[44721] "first" "time"
[44723] "Masters" "sport"
[44725] "grass" "team"
[44727] "adjust" "new"
[44729] "fast-paced" "surface"
[44731] "batch" "2021"
[44733] "really" "excuse"
[44735] "morale-shattering" "1-7"
[44737] "hammering" "got"
[44739] "hands" "Australia"
[44741] "Tokyo's" "Oi"
[44743] "Hockey" "Stadium"
[44745] "Graham" "Reid's"
[44747] "side" "response"
[44749] "salvo" "goals"
[44751] "Australia" "team"
[44753] "India" "beaten"
[44755] "via" "penalties"
[44757] "Pro" "League"
[44759] "last" "year"
[44761] "fired" "throughout"
[44763] "60" "minutes"
[44765] "contest" "reminiscent"
[44767] "2010" "Commonwealth"
[44769] "Games" "final"
[44771] "opponent" "thrashed"
[44773] "India" "8-0"
[44775] "final" "silencing"
[44777] "capacity" "crowd"
[44779] "Major" "Dhyan"
[44781] "Chand" "National"
[44783] "Stadium" "Despite"
[44785] "penetrating" "Australia's"
[44787] "circle" "24"
[44789] "times" "two"
[44791] "Australia" "managed"
[44793] "India" "failed"
[44795] "convert" "chances"
[44797] "Dilpreet" "Singh"
[44799] "34th" "minute"
[44801] "managed" "breach"
[44803] "Australia's" "watertight"
[44805] "defence" "Manpreet"
[44807] "Singh-led" "side"
[44809] "wasted" "five"
[44811] "penalty" "corner"
[44813] "opportunities" "poor"
[44815] "trapping" "execution"
[44817] "world" "1"
[44819] "outfit" "top"
[44821] "Group" "six"
[44823] "points" "two"
[44825] "games" "shaky"
[44827] "5-3" "win"
[44829] "Japan" "Saturday"
[44831] "Australia" "medalled"
[44833] "six" "last"
[44835] "seven" "Olympics"
[44837] "ripped" "apart"
[44839] "India's" "defence"
[44841] "PR" "Sreejesh"
[44843] "helpless" "goal"
[44845] "still" "early"
[44847] "days" "tournament"
[44849] "India" "fourth"
[44851] "group" "six"
[44853] "win" "New"
[44855] "Zealand" "Saturday"
[44857] "top" "four"
[44859] "making" "quarter-finals"
[44861] "India" "scheduled"
[44863] "play" "Spain"
[44865] "July" "27"
[44867] "Argentina" "July"
[44869] "29" "hosts"
[44871] "Japan" "July"
[44873] "30" "next"
[44875] "Published" "HT"
[44877] "Digital" "Content"
[44879] "Services" "permission"
[44881] "Hindustan" "Times"
[44883] "query" "respect"
[44885] "article" "content"
[44887] "requirement" "please"
[44889] "contact" "Editor"
[44891] "Classification" "Language"
[44893] "ENGLISH" "Publication-Type"
[44895] "Newswire" "Body"
[44897] "felicitation" "event"
[44899] "held" "Tuesday"
[44901] "award" "Rs"
[44903] "1" "crore"
[44905] "appointment" "letter"
[44907] "post" "Additional"
[44909] "Superintendent" "Police"
[44911] "Sports" "handed"
[44913] "CM" "Slogans"
[44915] "Long" "live"
[44917] "Mirabai" "long"
[44919] "live" "Manipur"
[44921] "rent" "air"
[44923] "people" "lined"
[44925] "streets" "catch"
[44927] "glimpse" "crowd"
[44929] "swelled" "Bir"
[44931] "Tikendrajit" "International"
[44933] "Airport" "Imphal"
[44935] "also" "present"
[44937] "among" "hundreds"
[44939] "well-wishers" "supporters"
[44941] "waited" "arrival"
[44943] "Chief" "Minister"
[44945] "N" "Biren"
[44947] "Singh" "Mirabai"
[44949] "Chanu" "set"
[44951] "India's" "campaign"
[44953] "Tokyo" "glorious"
[44955] "start" "winning"
[44957] "silver" "medal"
[44959] "weightlifting" "Olympics"
[44961] "returned" "Manipur"
[44963] "hero's" "welcome"
[44965] "Tuesday" "Chanu"
[44967] "landed" "airport"
[44969] "afternoon" "escorted"
[44971] "city" "convention"
[44973] "centre" "Imphal"
[44975] "given" "grand"
[44977] "reception" "state"
[44979] "government" "felicitation"
[44981] "event" "award"
[44983] "Rs" "1"
[44985] "crore" "appointment"
[44987] "letter" "post"
[44989] "Additional" "Superintendent"
[44991] "Police" "Sports"
[44993] "handed" "CM"
[44995] "state" "earlier"
[44997] "announced" "decision"
[44999] "appoint" "Chanu"
[45001] "ASP" "sports"
[45003] "police" "department"
[45005] "Moreover" "cash"
[45007] "awards" "state"
[45009] "athletes" "win"
[45011] "medals" "Olympics"
[45013] "felicitation" "Chanu"
[45015] "headed" "Nongpok"
[45017] "Kakching" "led"
[45019] "motorcade" "well-wishers"
[45021] "local" "clubs"
[45023] "police" "Nongpok"
[45025] "Kakching" "lies"
[45027] "eastern" "side"
[45029] "Imphal" "valley"
[45031] "20" "km"
[45033] "capital" "city"
[45035] "Despite" "ongoing"
[45037] "curfew" "owing"
[45039] "Covid" "hordes"
[45041] "people" "across"
[45043] "age" "groups"
[45045] "lined" "streets"
[45047] "cheer" "Chanu"
[45049] "way" "village"
[45051] "Many" "even"
[45053] "tried" "gift"
[45055] "flowers" "garlands"
[45057] "stopped" "cops"
[45059] "due" "Covid"
[45061] "curbs" "place"
[45063] "words" "express"
[45065] "happy" "love"
[45067] "support" "extended"
[45069] "overwhelming" "Right"
[45071] "airport" "till"
[45073] "warm" "welcome"
[45075] "made" "greatest"
[45077] "day" "life"
[45079] "Chanu" "said"
[45081] "addressing" "gathering"
[45083] "village" "thanked"
[45085] "people" "Prime"
[45087] "Minister" "Narendra"
[45089] "Modi" "called"
[45091] "congratulate" "medal"
[45093] "win" "Nongpok"
[45095] "Kakching" "villagers"
[45097] "also" "organised"
[45099] "grand" "reception"
[45101] "Chanu" "community"
[45103] "hall" "Gifts"
[45105] "presented" "Chanu"
[45107] "village" "elders"
[45109] "delivered" "congratulatory"
[45111] "speeches" "Sharing"
[45113] "experiences" "Chanu"
[45115] "said" "One"
[45117] "driving" "forces"
[45119] "achieved" "desire"
[45121] "put" "Manipur"
[45123] "world" "map"
[45125] "pains" "see"
[45127] "many" "people"
[45129] "even" "know"
[45131] "state" "like"
[45133] "Manipur" "exists"
[45135] "also" "said"
[45137] "main" "focus"
[45139] "start" "preparing"
[45141] "next" "Olympics"
[45143] "though" "still"
[45145] "three" "years"
[45147] "away" "Classification"
[45149] "Language" "ENGLISH"
[45151] "Publication-Type" "Newspaper"
[45153] "Body" "Indian"
[45155] "contingent's" "first"
[45157] "day" "Tokyo"
[45159] "Olympics" "brought"
[45161] "range" "emotions"
[45163] "Mirabai" "Chanu"
[45165] "led" "India"
[45167] "first" "ever"
[45169] "podium" "finish"
[45171] "Day" "One"
[45173] "Olympics" "silver"
[45175] "medal" "49kg"
[45177] "weightlifting" "event"
[45179] "Sourav" "Chaudhury"
[45181] "made" "hopes"
[45183] "soar" "fine"
[45185] "display" "qualifying"
[45187] "round" "crash"
[45189] "finals" "7th"
[45191] "place" "finish"
[45193] "India" "strikes"
[45195] "first" "medal"
[45197] "Olympic" "#Tokyo2020"
[45199] "Mirabai" "Chanu"
[45201] "wins" "silver"
[45203] "Medal" "49"
[45205] "kg" "Women's"
[45207] "Weightlifting" "made"
[45209] "India" "proud"
[45211] "Congratulations" "@mirabai_chanu"
[45213] "#Cheer4India" "Kiren"
[45215] "Rijiju" "@KirenRijiju"
[45217] "July" "24"
[45219] "2021" "Archers"
[45221] "disappoint" "India's"
[45223] "campaign" "mixed"
[45225] "team" "archery"
[45227] "event" "Tokyo"
[45229] "Olympics" "came"
[45231] "end" "Saturday"
[45233] "Deepika" "Kumari"
[45235] "Pravin" "Jadhav"
[45237] "lost" "2-6"
[45239] "Korea's" "San"
[45241] "Kim" "Je"
[45243] "Deok" "Deepika"
[45245] "Jadhav" "gone"
[45247] "0-4" "first"
[45249] "two" "sets"
[45251] "fought" "back"
[45253] "make" "2-4"
[45255] "However" "Koreans"
[45257] "heavy" "favourites"
[45259] "going" "match"
[45261] "prevailed" "Indian"
[45263] "pair" "progressed"
[45265] "semi-final" "Badminton"
[45267] "India" "lose"
[45269] "Mixed" "Doubles"
[45271] "Badminton" "Mixed"
[45273] "Doubles" "event"
[45275] "India's" "Sharath"
[45277] "Kamal" "Manika"
[45279] "Batra" "lost"
[45281] "toChinese" "Taipei'sYun"
[45283] "Ju" "Ching"
[45285] "straight" "sets"
[45287] "crash" "tournament"
[45289] "Chinese" "Taipei"
[45291] "side" "looked"
[45293] "sharper" "hungrier"
[45295] "Indian" "duo"
[45297] "left" "reeling"
[45299] "single" "set"
[45301] "end" "well-earned"
[45303] "victory" "forChinese"
[45305] "Taipei" "However"
[45307] "Manika" "Batra"
[45309] "made" "amends"
[45311] "Singles" "event"
[45313] "oustingGreat" "Britain's"
[45315] "Tin-Tin" "Ho"
[45317] "Round" "1"
[45319] "just" "30"
[45321] "minutes" "Batra"
[45323] "demolished" "opponent"
[45325] "11-7,11-6,12-10,11-9" "MyGovIndia"
[45327] "@mygovindia" "July"
[45329] "24" "2021"
[45331] "Fired" "Manika"
[45333] "Batra's" "win"
[45335] "Sutirtha" "Mukherjee"
[45337] "carved" "winagainst"
[45339] "Sweden's" "Linda"
[45341] "Bergstrm" "Women's"
[45343] "Singles" "first-round"
[45345] "match" "Sutirtha"
[45347] "trailing" "3-1"
[45349] "one" "point"
[45351] "time" "comeback"
[45353] "surely" "add"
[45355] "confidence" "going"
[45357] "second" "round"
[45359] "Table" "Tennis"
[45361] "Amazing" "comeback"
[45363] "girl" "Sutirtha"
[45365] "Mukherjee" "WR"
[45367] "98" "come"
[45369] "back" "1-3"
[45371] "beat" "higher"
[45373] "ranked" "Linda"
[45375] "Bergstrom" "WR"
[45377] "78" "4-3"
[45379] "Sweden" "opening"
[45381] "round" "Next"
[45383] "Sutritha" "take"
[45385] "WR" "55"
[45387] "Fu" "Yu"
[45389] "Portugal" "#Tokyo2020withIndia_AllSports"
[45391] "India_AllSports" "@India_AllSports"
[45393] "July" "24"
[45395] "2021" "Vikas"
[45397] "Krishnan" "loses"
[45399] "Boxing" "prelims"
[45401] "Indianboxer" "Vikas"
[45403] "Krishanlost" "Quincy"
[45405] "Mensah" "Okazawa"
[45407] "Japan" "Preliminaries"
[45409] "Round" "32"
[45411] "bout" "Vikas"
[45413] "Krishan" "dominated"
[45415] "25-year-old" "Japanese"
[45417] "10-9" "home"
[45419] "boxer" "first"
[45421] "round" "10-8"
[45423] "second" "third"
[45425] "round" "confirmed"
[45427] "result" "Krishan"
[45429] "left" "bloodied"
[45431] "eye" "failingto"
[45433] "win" "medal"
[45435] "Shooting" "Chandela"
[45437] "Valarivan" "day"
[45439] "began" "Indian"
[45441] "duo" "Apurvi"
[45443] "Chandela" "Elavenil"
[45445] "Valarivan" "kickstartingIndia's"
[45447] "Olympic" "campaign"
[45449] "participating" "thewomen's"
[45451] "10m" "air"
[45453] "rifleshooting" "qualification"
[45455] "round" "Elavenil"
[45457] "finishedwith" "qualification"
[45459] "score" "626.5"
[45461] "whileChandela" "finishedwith"
[45463] "qualification" "score"
[45465] "621.5" "scores"
[45467] "good" "enough"
[45469] "qualify" "shooters"
[45471] "bowed" "finals"
[45473] "Hockey" "Men"
[45475] "qualify" "women"
[45477] "lose" "another"
[45479] "tale" "ofgritin"
[45481] "Tokyo" "Olympics"
[45483] "Indian" "men's"
[45485] "hockey" "team"
[45487] "came" "behind"
[45489] "beat" "New"
[45491] "Zealand" "3-2"
[45493] "opening" "match.Harmanpreet"
[45495] "Singh" "scored"
[45497] "brace" "goalieSreejesh"
[45499] "produced" "brilliant"
[45501] "saves" "ensure"
[45503] "India" "finished"
[45505] "three" "points"
[45507] "opening" "match"
[45509] "India" "face"
[45511] "favourites" "Australiaon"
[45513] "Sunday" "However"
[45515] "Indian" "women's"
[45517] "hockey" "team"
[45519] "match" "intensity"
[45521] "world" "1Dutch"
[45523] "team" "Rani"
[45525] "Cofought" "valiantly"
[45527] "first" "two"
[45529] "quarters" "losing"
[45531] "steam" "go"
[45533] "1-5" "Netherlands"
[45535] "opening" "pool"
[45537] "match" "Tokyo"
[45539] "Olympics" "Saturday"
[45541] "Felice" "Albers"
[45543] "gave" "Netherlands"
[45545] "lead" "sixth"
[45547] "minute" "advantage"
[45549] "evened" "India"
[45551] "skipper" "Rani"
[45553] "Rampal" "10th"
[45555] "minute" "Indians"
[45557] "defended" "bravely"
[45559] "first" "two"
[45561] "quarters" "go"
[45563] "half" "time"
[45565] "locked" "1-1"
[45567] "break" "seemed"
[45569] "broken" "momentum"
[45571] "Dutch" "came"
[45573] "guns" "blazing"
[45575] "change" "ends"
[45577] "pumped" "three"
[45579] "goals" "nip"
[45581] "chance" "upset"
[45583] "bud" "Rowers"
[45585] "finish" "5"
[45587] "men's" "Rowing"
[45589] "India" "pair"
[45591] "Arvind" "Singh"
[45593] "Arjun" "Jat"
[45595] "finished" "fifth"
[45597] "place" "Lightweight"
[45599] "Men's" "Sculls"
[45601] "time" "6"
[45603] "40" "33"
[45605] "qualifyingfor" "Repechage"
[45607] "India" "Judo"
[45609] "Judo" "Sushila"
[45611] "Devi" "lostin"
[45613] "first" "round"
[45615] "Air" "pistol"
[45617] "Saurabh" "Chaudhary"
[45619] "final" "round"
[45621] "Men's" "10m"
[45623] "air" "pistol"
[45625] "event" "Saurabh"
[45627] "Chaudhary" "produced"
[45629] "one" "best"
[45631] "displays" "Indian"
[45633] "contingentsso" "far"
[45635] "topping" "qualifying"
[45637] "round" "event"
[45639] "score" "of586"
[45641] "However" "19-year-old"
[45643] "replicate" "form"
[45645] "finals" "finished"
[45647] "7th" "finals"
[45649] "ignited" "hopes"
[45651] "podium" "finish"
[45653] "flawless" "display"
[45655] "qualifying" "round"
[45657] "#Tokyo2020" "India"
[45659] "@Tokyo2020hi" "July"
[45661] "24" "2021"
[45663] "Although" "hopes"
[45665] "lost" "asSaurabh"
[45667] "Chaudhury" "still"
[45669] "another" "chance"
[45671] "mixed" "team"
[45673] "event" "Manu"
[45675] "Bhaker" "Men's"
[45677] "singles" "Group"
[45679] "D" "match"
[45681] "B" "Sai"
[45683] "Praneeth" "lost"
[45685] "opening" "men's"
[45687] "singles" "Group"
[45689] "D" "match"
[45691] "going" "Israel's"
[45693] "Misha" "Zilberman"
[45695] "17-21" "15-21"
[45697] "Tennis" "Sumit"
[45699] "Nagal" "moves"
[45701] "ahead" "Tennis"
[45703] "Sumit" "Nagal"
[45705] "India's" "last"
[45707] "entrant" "Olympics"
[45709] "beatthe" "2018"
[45711] "Asian" "Games"
[45713] "gold" "medallist"
[45715] "Denis" "Istomin"
[45717] "6-4" "6-7"
[45719] "6" "6-4"
[45721] "first" "men's"
[45723] "singles" "encounter"
[45725] "last" "time"
[45727] "India" "won"
[45729] "match" "tennis"
[45731] "singles" "25"
[45733] "years" "ago"
[45735] "Leander" "Paes"
[45737] "won" "historic"
[45739] "bronze" "1996"
[45741] "Atlanta" "Classification"
[45743] "Language" "ENGLISH"
[45745] "Publication-Type" "Newspaper"
[45747] "Body" "long"
[45749] "41-year" "wait"
[45751] "India's" "men's"
[45753] "hockey" "team"
[45755] "clinched" "bronze"
[45757] "medal" "Tokyo"
[45759] "Olympics" "2020"
[45761] "India" "played"
[45763] "Germany" "Thursday"
[45765] "August" "5"
[45767] "Samantha" "Sarathkumr"
[45769] "Anil" "Ravipudi"
[45771] "several" "south"
[45773] "celebrities" "took"
[45775] "social" "media"
[45777] "congratulate" "men"
[45779] "blue" "bringing"
[45781] "glory" "country"
[45783] "India's" "first"
[45785] "win" "since"
[45787] "1980" "Moscow"
[45789] "Olympics" "SAMANTHA"
[45791] "SARATHKUMAR" "CONGRATULATE"
[45793] "MEN'S" "HOCKEY"
[45795] "TEAM" "41"
[45797] "years" "since"
[45799] "Indian" "hockey"
[45801] "team" "registered"
[45803] "win" "Olympic"
[45805] "games" "Samantha"
[45807] "Sarathkumar" "Pranitha"
[45809] "Subhash" "several"
[45811] "stars" "took"
[45813] "social" "media"
[45815] "congratulate" "team"
[45817] "Samantha" "took"
[45819] "Instagram" "stories"
[45821] "share" "photo"
[45823] "Indian's" "team"
[45825] "wrote" "41"
[45827] "years" "sic"
[45829] "three" "folded-hands"
[45831] "emojis" "post"
[45833] "Veteran" "actor"
[45835] "Sarathkumar" "took"
[45837] "Twitter" "wrote"
[45839] "Indian" "Hockey"
[45841] "Men" "create"
[45843] "HISTORY" "medal"
[45845] "Olympic" "41"
[45847] "years" "stupendous"
[45849] "performance" "Entire"
[45851] "nation" "Proud"
[45853] "boys" "bronze"
[45855] "medal" "Indian"
[45857] "Hockey" "team"
[45859] "Congratulations" "men"
[45861] "Blue" "#Hockey"
[45863] "#Olympics" "5-4"
[45865] "sic" "Indian"
[45867] "Hockey" "Men"
[45869] "create" "HISTORY"
[45871] "medal" "Olympic"
[45873] "41" "years"
[45875] "stupendous" "performance"
[45877] "Entire" "nation"
[45879] "Proud" "boys"
[45881] "bronze" "medal"
[45883] "Indian" "Hockey"
[45885] "team" "Congratulations"
[45887] "men" "Blue"
[45889] "5-4" "R"
[45891] "Sarath" "Kumar"
[45893] "@realsarathkumar" "CELEBS"
[45895] "WISHED" "INDIAN"
[45897] "MEN'S" "HOCKEY"
[45899] "TEAM" "Rahul"
[45901] "Ravindran" "director"
[45903] "Bobby" "Anil"
[45905] "Ravipudi" "Pranitha"
[45907] "Subhash" "many"
[45909] "celebrities" "took"
[45911] "time" "congratulate"
[45913] "Indian" "team"
[45915] "monumental" "win"
[45917] "tweets" "Really"
[45919] "emotional" "words"
[45921] "describe" "national"
[45923] "sport" "successful"
[45925] "hockey" "nation"
[45927] "history" "Olympics"
[45929] "decades" "decades"
[45931] "hurt" "gloom"
[45933] "gone" "Manpreet"
[45935] "boys" "thank"
[45937] "Rahul" "Ravindran"
[45939] "@23_rahulr" "Proud"
[45941] "moment" "India"
[45943] "Congratulations" "team"
[45945] "History" "re"
[45947] "written" "Shanthnu"
[45949] "Buddy" "@imKBRshanthnu"
[45951] "level" "feel"
[45953] "guilty" "today"
[45955] "asked" "name"
[45957] "hockey" "stars"
[45959] "would've" "probably"
[45961] "said" "Dhanraj"
[45963] "Pillai" "Dhyan"
[45965] "Chand" "stopped"
[45967] "Talent" "nothing"
[45969] "recognised" "onus"
[45971] "also" "us"
[45973] "citizens" "celebrate"
[45975] "encourage" "hockey"
[45977] "stars" "Danish"
[45979] "Sait" "@DanishSait"
[45981] "41" "long"
[45983] "years" "bring"
[45985] "home" "medal"
[45987] "Hockey" "congratulations"
[45989] "KhushbuSundar" "@khushsundar"
[45991] "Congratulations" "winning"
[45993] "41" "years"
[45995] "Played" "like"
[45997] "Champion" "team"
[45999] "till" "end"
[46001] "proud" "Jai"
[46003] "hind" "Bobby"
[46005] "@dirbobby" "Indian"
[46007] "Hockey" "Team"
[46009] "Wins" "Bronze"
[46011] "Medal" "Germany"
[46013] "41" "Years"
[46015] "Olympics" "Well"
[46017] "Done" "Boys"
[46019] "Anil" "Ravipudi"
[46021] "@AnilRavipudi" "4"
[46023] "decades" "proud"
[46025] "Pranitha" "Subhash"
[46027] "@pranitasubhash" "Congratulations"
[46029] "pouring" "Indian"
[46031] "men's" "hockey"
[46033] "team" "quarters"
[46035] "ALSO" "SEE"
[46037] "|" "ALSO"
[46039] "SEE" "|"
[46041] "Graphic" "Samantha"
[46043] "Sarathkumar" "South"
[46045] "stars" "cheer"
[46047] "men's" "hockey"
[46049] "team" "Olympic"
[46051] "bronze" "win"
[46053] "Classification" "Language"
[46055] "ENGLISH" "Publication-Type"
[46057] "Web" "Publication"
[46059] "Body" "New"
[46061] "Delhi" "July"
[46063] "24" "Indian"
[46065] "weightlifter" "Mirabai"
[46067] "Chanu" "wins"
[46069] "country's" "first"
[46071] "medal" "ongoing"
[46073] "Tokyo" "Olympics"
[46075] "won" "silver"
[46077] "medal" "49kg"
[46079] "category" "Women's"
[46081] "weighlifting" "event"
[46083] "became" "first"
[46085] "Indian" "weightlifter"
[46087] "win" "silver"
[46089] "medal" "Olympics"
[46091] "Chanu" "lifted"
[46093] "total" "202"
[46095] "kg" "87kg"
[46097] "snatch" "115kg"
[46099] "clean" "jerk"
[46101] "four" "successful"
[46103] "attempts" "across"
[46105] "competition" "China's"
[46107] "Zhihui" "Hou"
[46109] "bagged" "gold"
[46111] "total" "210kg"
[46113] "created" "new"
[46115] "Olympic" "Record"
[46117] "Indonesia's" "Windy"
[46119] "Cantika" "Aisah"
[46121] "grabbed" "bronze"
[46123] "total" "194kg"
[46125] "monumental" "silver"
[46127] "medal" "Chanu"
[46129] "become" "second"
[46131] "Indian" "weightlifter"
[46133] "win" "Olympic"
[46135] "medal" "Karnam"
[46137] "Malleswari" "bagged"
[46139] "bronze" "69kg"
[46141] "category" "2000"
[46143] "Sydney" "Games"
[46145] "weightlifting" "arena"
[46147] "opened" "women"
[46149] "first" "time"
[46151] "Mirabai" "got"
[46153] "flying" "start"
[46155] "completed" "lift"
[46157] "84" "kg"
[46159] "first" "attempt"
[46161] "snatch" "Manipur-born"
[46163] "weightlifter" "proceeded"
[46165] "complete" "87kg"
[46167] "weightlift" "ease"
[46169] "failed" "complete"
[46171] "89kg" "lift"
[46173] "last" "attempt"
[46175] "USA's" "Jourdan"
[46177] "Elizabeth" "Delacruz"
[46179] "posed" "challenge"
[46181] "Indian" "weightlifter"
[46183] "2nd" "place"
[46185] "first" "half"
[46187] "competition" "Delacruz"
[46189] "tragically" "missed"
[46191] "equalling" "personal"
[46193] "best" "89kg"
[46195] "placed" "second"
[46197] "spot" "judges"
[46199] "overruled" "attempt"
[46201] "Published" "HT"
[46203] "Digital" "Content"
[46205] "Services" "permission"
[46207] "MINT" "query"
[46209] "respect" "article"
[46211] "content" "requirement"
[46213] "please" "contact"
[46215] "Editor" "Classification"
[46217] "Language" "ENGLISH"
[46219] "Publication-Type" "Newspaper"
[46221] "Body" "Indian"
[46223] "athletes" "making"
[46225] "everyone" "proud"
[46227] "performance" "Tokyo"
[46229] "Olympics" "PV"
[46231] "Sindhu" "scripted"
[46233] "history" "women's"
[46235] "singles" "bronze"
[46237] "medal" "match"
[46239] "Tokyo" "Olympics"
[46241] "Sunday" "August"
[46243] "1" "women's"
[46245] "men's" "hockey"
[46247] "teams" "qualified"
[46249] "semis" "Bollywood"
[46251] "celebs" "lauding"
[46253] "praising" "milestone"
[46255] "social" "media"
[46257] "BOLLYWOOD" "CELEBS"
[46259] "LAUD" "INDIAN"
[46261] "WOMEN'S" "HOCKEY"
[46263] "TEAM" "Bollywood"
[46265] "celebs" "including"
[46267] "Anushka" "Sharma"
[46269] "Preity" "Zinta"
[46271] "Taapsee" "Pannu"
[46273] "lauded" "appreciated"
[46275] "Indian" "women's"
[46277] "hockey" "team"
[46279] "reaching" "semis"
[46281] "Tokyo" "Olympics"
[46283] "India's" "biggest"
[46285] "win" "women's"
[46287] "hockey" "team"
[46289] "playing" "Olympics"
[46291] "third" "time"
[46293] "Anushka" "wrote"
[46295] "India" "creates"
[46297] "history" "Congratulations"
[46299] "Indian" "women's"
[46301] "hockey" "team"
[46303] "qualifying" "semi-finals"
[46305] "sic" "Taapsee"
[46307] "Pannu" "wrote"
[46309] "Chakk" "de"
[46311] "semis" "Rani"
[46313] "Rampal" "queens"
[46315] "sic" "Disha"
[46317] "Patani" "tweeted"
[46319] "wrote" "inspirational"
[46321] "performance" "Indian"
[46323] "women's" "hockey"
[46325] "team" "#Tokyo2020"
[46327] "#GirlPower" "sic"
[46329] "inspirational" "performance"
[46331] "Indian" "women's"
[46333] "hockey" "team"
[46335] "Disha" "Patani"
[46337] "@DishPatani" "See"
[46339] "wishes" "Earlier"
[46341] "Sunday" "August"
[46343] "1" "Indian"
[46345] "men's" "team"
[46347] "also" "reached"
[46349] "first-ever" "semi-final"
[46351] "Olympics" "ALSO"
[46353] "READ" "|"
[46355] "ALSO" "READ"
[46357] "|" "Graphic"
[46359] "Taapsee" "Pannu"
[46361] "Disha" "Patani"
[46363] "hail" "Indian"
[46365] "women's" "hockey"
[46367] "team" "reaching"
[46369] "Olympic" "semis"
[46371] "Classification" "Language"
[46373] "ENGLISH" "Publication-Type"
[46375] "Web" "Publication"
[46377] "Body" "Men's"
[46379] "singles" "player"
[46381] "Sumit" "Nagal"
[46383] "blown" "away"
[46385] "world" "number"
[46387] "two" "Daniil"
[46389] "Medvedev" "straight"
[46391] "sets" "6-2"
[46393] "6-1" "India's"
[46395] "hopes" "Tokyo"
[46397] "2020" "Olympics"
[46399] "ended" "far"
[46401] "tennis" "concerned"
[46403] "new" "possibilities"
[46405] "emerged" "Sumit"
[46407] "Nagal" "Sania"
[46409] "Mirza" "found"
[46411] "names" "entry"
[46413] "list" "mixed"
[46415] "doubles" "events"
[46417] "However" "mean"
[46419] "playing" "event"
[46421] "draw" "set"
[46423] "announced" "Tuesday"
[46425] "India" "tennis"
[46427] "far" "Monday"
[46429] "men's" "singles"
[46431] "player" "Sumit"
[46433] "Nagal" "blown"
[46435] "away" "world"
[46437] "number" "two"
[46439] "Daniil" "Medvedev"
[46441] "straight" "sets"
[46443] "6-2" "6-1"
[46445] "Nagal" "entered"
[46447] "second" "round"
[46449] "won" "first-round"
[46451] "match" "Uzbekistan"
[46453] "Denis" "Istomin"
[46455] "India's" "first"
[46457] "men's" "singles"
[46459] "win" "Olympics"
[46461] "25" "years"
[46463] "Nagal's" "exit"
[46465] "came" "doubles"
[46467] "pair" "Sania"
[46469] "Mirza" "Ankita"
[46471] "Raina" "knocked"
[46473] "first" "round"
[46475] "women's" "doubles"
[46477] "defeated" "Ukrainian"
[46479] "twins" "Nadiia"
[46481] "Liudmyla" "Kichenok"
[46483] "Sunday" "Sania"
[46485] "Ankita" "won"
[46487] "first" "set"
[46489] "leading" "5-2"
[46491] "second" "set"
[46493] "yet" "went"
[46495] "lose" "match"
[46497] "6-0" "6-7"
[46499] "8-10" "Tennis"
[46501] "Olympics" "Elsewhere"
[46503] "World" "1"
[46505] "Wimbledon" "champion"
[46507] "Ash" "Barty"
[46509] "lost" "Sara"
[46511] "Sorribes-Tormo" "Spain"
[46513] "4-6" "3-6"
[46515] "home" "favourites"
[46517] "Naomi" "Osaka"
[46519] "Kei" "Nishikori"
[46521] "progressed" "Stefanos"
[46523] "Tsitsipas" "Garbine"
[46525] "Muguruza" "Karolina"
[46527] "Pliskova" "Alexander"
[46529] "Zverev" "Petra"
[46531] "Kvitova" "made"
[46533] "winning" "starts"
[46535] "singles" "campaigns"
[46537] "Classification" "Language"
[46539] "ENGLISH" "Publication-Type"
[46541] "Newspaper" "Body"
[46543] "India" "July"
[46545] "24" "Tokyo"
[46547] "Olympics" "2020"
[46549] "Day" "2"
[46551] "India" "Schedule"
[46553] "Several" "Indian"
[46555] "athletes" "action"
[46557] "Day" "2"
[46559] "Tokyo" "Olympics"
[46561] "shooters" "Apurvi"
[46563] "Chandela" "Elavenil"
[46565] "Valarivan" "Saurabh"
[46567] "Chaudhary" "Abhishek"
[46569] "Verma" "eye"
[46571] "medals" "Saturday"
[46573] "weightlifter" "Mirabai"
[46575] "Chanu" "also"
[46577] "look" "earn"
[46579] "Tokyo" "podium"
[46581] "finish" "India"
[46583] "men's" "women's"
[46585] "hockey" "team"
[46587] "also" "open"
[46589] "campaigns" "look"
[46591] "full" "schedule"
[46593] "Indian" "athletes"
[46595] "Day" "2"
[46597] "Tokyo" "Olympics"
[46599] "Tokyo" "2020"
[46601] "Full" "Coverage"
[46603] "5" "00"
[46605] "10m" "Air"
[46607] "Rifle" "Women's"
[46609] "Qualification" "Apurvi"
[46611] "Chandela" "Elavenil"
[46613] "Valarivan" "6"
[46615] "00" "Mixed"
[46617] "team" "archery"
[46619] "India" "Deepika"
[46621] "Kumari" "Pravin"
[46623] "Jadav" "vs"
[46625] "Chinese" "Taipei"
[46627] "LIN" "Chia-En"
[46629] "TANG" "Chih-Chun"
[46631] "6" "20"
[46633] "Women's" "49kg"
[46635] "Weightlifting" "Mirabai"
[46637] "Chanu" "6"
[46639] "30" "Men's"
[46641] "Hockey" "India"
[46643] "vs" "New"
[46645] "Zealand" "7"
[46647] "15" "10m"
[46649] "Air" "Rifle"
[46651] "Women's" "Final"
[46653] "Possibly" "Apurvi"
[46655] "Chandela" "Elavenil"
[46657] "Valarivan" "8"
[46659] "50" "Badminton"
[46661] "LEE" "Yang"
[46663] "WANG" "Chi-Lin"
[46665] "vs" "RANKIREDDY"
[46667] "Satwiksairaj" "SHETTY"
[46669] "Chirag" "7"
[46671] "30" "Judo"
[46673] "Shushila" "Devi"
[46675] "vs" "CSERNOVICZKI"
[46677] "Eva" "7"
[46679] "30" "Tennis"
[46681] "Sumit" "Nagal"
[46683] "vs" "Denis"
[46685] "Istomin" "9"
[46687] "30" "Badminton"
[46689] "B" "Sai"
[46691] "Praneeth" "vs"
[46693] "ZILBERMAN" "Misha"
[46695] "9" "30"
[46697] "10m" "Air"
[46699] "Pistol" "Men's"
[46701] "Qualification" "Abhishek"
[46703] "Verma" "Saurabh"
[46705] "Chaudhary" "9"
[46707] "30" "Table"
[46709] "Tennis" "LIN"
[46711] "Yun" "Ju"
[46713] "CHENG" "Ching"
[46715] "vs" "Sharath"
[46717] "Kamal" "BATRA"
[46719] "Manika" "12"
[46721] "00" "PM"
[46723] "10m" "Air"
[46725] "Pistol" "Men's"
[46727] "Final" "Possibly"
[46729] "Abhishek" "Verma"
[46731] "Saurabh" "Chaudhary"
[46733] "12" "15"
[46735] "PM" "Table"
[46737] "Tennis" "BATRA"
[46739] "Manika" "vs"
[46741] "Ho" "Tin-Tin"
[46743] "13" "00"
[46745] "PM" "Table"
[46747] "Tennis" "BERGSTROEM"
[46749] "Linda" "vs"
[46751] "MUKHERJEE" "Sutirtha"
[46753] "15" "54"
[46755] "PM" "Boxing"
[46757] "Vikas" "Krishan"
[46759] "vs" "OKAZAWA"
[46761] "Sewonrets" "Quincy"
[46763] "Mensah" "17"
[46765] "15" "PM"
[46767] "Women's" "Hockey"
[46769] "Netherlands" "vs"
[46771] "India" "Published"
[46773] "HT" "Digital"
[46775] "Content" "Services"
[46777] "permission" "Hindustan"
[46779] "Times" "query"
[46781] "respect" "article"
[46783] "content" "requirement"
[46785] "please" "contact"
[46787] "Editor" "Classification"
[46789] "Language" "ENGLISH"
[46791] "Publication-Type" "Newswire"
[46793] "Body" "India"
[46795] "July" "27"
[46797] "Raninder" "Singh"
[46799] "president" "National"
[46801] "Rifle" "Association"
[46803] "India" "NRAI"
[46805] "spoke" "performances"
[46807] "Indian" "Shooting"
[46809] "squad" "far"
[46811] "Tokyo" "Olympics"
[46813] "Raninder" "said"
[46815] "need" "overhaul"
[46817] "coaching" "support"
[46819] "staff" "Indian"
[46821] "shooters" "failed"
[46823] "qualify" "medal"
[46825] "rounds" "Yes"
[46827] "definitely" "performances"
[46829] "expected" "lines"
[46831] "spoken" "overhaul"
[46833] "coaching" "support"
[46835] "staff" "feel"
[46837] "something" "lacking"
[46839] "getting" "shooters"
[46841] "prepared" "big"
[46843] "occasions" "clearly"
[46845] "talent" "seen"
[46847] "well" "Raninder"
[46849] "said" "India"
[46851] "went" "Tokyo"
[46853] "Olympics" "strongest"
[46855] "ever" "contingent"
[46857] "15" "shooters"
[46859] "far" "managed"
[46861] "win" "medal"
[46863] "fact" "apart"
[46865] "Saurabh" "Chaudhary"
[46867] "finished" "seventh"
[46869] "Men's" "10m"
[46871] "Air" "Pistol"
[46873] "event" "none"
[46875] "shooters" "managed"
[46877] "qualify" "medal"
[46879] "rounds" "India's"
[46881] "Manu" "Bhaker"
[46883] "Saurabh" "Chaudhary"
[46885] "finished" "seventh"
[46887] "qualification" "stage"
[46889] "2" "10M"
[46891] "Air" "Pistol"
[46893] "Mixed" "Team"
[46895] "competitions" "Tuesday"
[46897] "day" "four"
[46899] "Tokyo" "2020"
[46901] "Olympics" "Shooting"
[46903] "competition" "Asaka"
[46905] "Shooting" "range"
[46907] "Tokyo" "topping"
[46909] "first" "qualification"
[46911] "round" "score"
[46913] "586" "600"
[46915] "showing" "glimpses"
[46917] "form" "made"
[46919] "win" "four"
[46921] "world" "cup"
[46923] "gold" "medals"
[46925] "Manu" "Saurabh"
[46927] "fell" "short"
[46929] "medals" "rounds"
[46931] "four" "points"
[46933] "second" "finishing"
[46935] "score" "380"
[46937] "400" "second"
[46939] "Indian" "pair"
[46941] "Abhishek" "Verma"
[46943] "Yashaswini" "Deswal"
[46945] "make" "beyond"
[46947] "first" "qualification"
[46949] "round" "finishing"
[46951] "17thwith" "score"
[46953] "564" "two"
[46955] "Indian" "pairs"
[46957] "10M" "Air"
[46959] "Rifle" "Mixed"
[46961] "Team" "event"
[46963] "also" "progress"
[46965] "beyond" "first"
[46967] "round" "qualification"
[46969] "Elavenil" "Valarivan"
[46971] "Divyansh" "Singh"
[46973] "Panwar" "shot"
[46975] "combined" "626.5"
[46977] "12thplace" "finish"
[46979] "Deepak" "Kumar"
[46981] "Anjum" "Moudgil"
[46983] "shot" "623.8"
[46985] "also" "finish"
[46987] "outside" "top"
[46989] "eight" "18thspot"
[46991] "Raninder" "however"
[46993] "urged" "everyone"
[46995] "back" "shooters"
[46997] "still" "shot"
[46999] "getting" "medal"
[47001] "said" "still"
[47003] "starts" "left"
[47005] "team" "fighting"
[47007] "continue" "back"
[47009] "team" "sure"
[47011] "get" "results"
[47013] "Post-mortems" "can"
[47015] "wait" "till"
[47017] "Games" "Day"
[47019] "five" "Trap"
[47021] "competitions" "schedule"
[47023] "India" "entry"
[47025] "day" "six"
[47027] "see" "Rahi"
[47029] "Sarnobat" "Manu"
[47031] "Bhaker" "pick"
[47033] "fight" "Women's"
[47035] "25M" "Pistol"
[47037] "qualifications" "Published"
[47039] "HT" "Digital"
[47041] "Content" "Services"
[47043] "permission" "Hindustan"
[47045] "Times" "query"
[47047] "respect" "article"
[47049] "content" "requirement"
[47051] "please" "contact"
[47053] "Editor" "Classification"
[47055] "Language" "ENGLISH"
[47057] "Publication-Type" "Newswire"
[47059] "Body" "historic"
[47061] "day" "Indian"
[47063] "hockey" "entire"
[47065] "nation" "Indian"
[47067] "men's" "hockey"
[47069] "team" "won"
[47071] "bronze" "medal"
[47073] "ongoing" "Tokyo"
[47075] "Olympics" "Shah"
[47077] "Rukh" "Khan"
[47079] "Akshay" "Kumar"
[47081] "Bollywood" "celebrities"
[47083] "elated" "win"
[47085] "took" "social"
[47087] "media" "shower"
[47089] "love" "players"
[47091] "congratulate" "achieving"
[47093] "feat" "41"
[47095] "years" "Indian"
[47097] "hockey" "team"
[47099] "won" "medal"
[47101] "Olympics" "SHAH"
[47103] "RUKH" "KHAN"
[47105] "SAYS" "RESILIENCE"
[47107] "SKILL" "PEAK"
[47109] "Shah" "Rukh"
[47111] "Khan" "among"
[47113] "first" "ones"
[47115] "took" "social"
[47117] "media" "shower"
[47119] "praise" "Indian"
[47121] "men's" "hockey"
[47123] "team" "Olympic"
[47125] "bronze" "medal"
[47127] "actor" "wrote"
[47129] "Wow" "Indian"
[47131] "Men's" "Hockey"
[47133] "Team" "Congratulations"
[47135] "Resilience" "skill"
[47137] "peak" "exciting"
[47139] "match" "sic"
[47141] "Wow" "Indian"
[47143] "Men's" "Hockey"
[47145] "Team" "Congratulations"
[47147] "Resilience" "skill"
[47149] "peak" "exciting"
[47151] "match" "Shah"
[47153] "Rukh" "Khan"
[47155] "@iamsrk" "AKSHAY"
[47157] "KUMAR" "CONGRATULATES"
[47159] "TEAM" "REWRITING"
[47161] "HISTORY" "Akshay"
[47163] "Kumar" "closely"
[47165] "watching" "Indian"
[47167] "men's" "hockey"
[47169] "team's" "performance"
[47171] "Tokyo" "Olympics"
[47173] "watched" "match"
[47175] "bronze" "medal"
[47177] "start" "finish"
[47179] "Congratulating" "team"
[47181] "bronze" "medal"
[47183] "win" "shared"
[47185] "photo" "team"
[47187] "Indian" "National"
[47189] "Flag" "Instagram"
[47191] "story" "wrote"
[47193] "Congratulations" "Team"
[47195] "India" "rewriting"
[47197] "history" "Olympic"
[47199] "medal" "41"
[47201] "years" "match"
[47203] "comeback" "#Tokyo2020"
[47205] "sic" "BOLLYWOOD"
[47207] "SAYS" "INCREDIBLE"
[47209] "Many" "Bollywood"
[47211] "celebrities" "also"
[47213] "extended" "wishes"
[47215] "men's" "hockey"
[47217] "team" "Nimrat"
[47219] "Kaur" "called"
[47221] "win" "incredible"
[47223] "wrote" "Huge"
[47225] "congratulations" "men's"
[47227] "hockey" "team"
[47229] "Absolutely" "incredible"
[47231] "#Olympics" "sic"
[47233] "Huge" "congratulations"
[47235] "men's" "hockey"
[47237] "team" "Absolutely"
[47239] "incredible" "Nimrat"
[47241] "Kaur" "@NimratOfficial"
[47243] "Tamannaah" "Bhatia"
[47245] "shared" "photo"
[47247] "winning" "team"
[47249] "wrote" "win"
[47251] "go" "history"
[47253] "phenomenal" "performance"
[47255] "men's" "hockey"
[47257] "team" "Bringing"
[47259] "home" "bronze"
[47261] "41" "years"
[47263] "Congratulations" "Team"
[47265] "India" "#Olympics"
[47267] "#Cheer4India" "#BackTheBlue"
[47269] "sic" "win"
[47271] "go" "history"
[47273] "phenomenal" "performance"
[47275] "men's" "hockey"
[47277] "team" "Bringing"
[47279] "home" "bronze"
[47281] "41" "years"
[47283] "Congratulations" "Team"
[47285] "India" "Tamannaah"
[47287] "Bhatia" "@tamannaahspeaks"
[47289] "Kunal" "Kapoor"
[47291] "wrote" "proud"
[47293] "team" "added"
[47295] "Historic" "incredible"
[47297] "match" "incredible"
[47299] "spirit" "determination"
[47301] "proud" "y'all"
[47303] "Jai" "Hind"
[47305] "#Tokyo2020" "#IndianHockey"
[47307] "sic" "Historic"
[47309] "incredible" "match"
[47311] "incredible" "spirit"
[47313] "determination" "proud"
[47315] "y'all" "Jai"
[47317] "Hind" "Kunal"
[47319] "Kapoor" "@kapoorkkunal"
[47321] "Filmmaker" "Madhur"
[47323] "Bhandarkar" "also"
[47325] "congratulated" "team"
[47327] "social" "media"
[47329] "wrote" "Congratulations"
[47331] "Indian" "Men's"
[47333] "hockey" "team"
[47335] "Bronze" "medal"
[47337] "Olympics" "2020"
[47339] "#TeamIndia" "#Nationalpride"
[47341] "#Tokyo2020" "sic"
[47343] "Congratulations" "Indian"
[47345] "Men's" "hockey"
[47347] "team" "Bronze"
[47349] "medal" "Olympics"
[47351] "2020" "Madhur"
[47353] "Bhandarkar" "@imbhandarkar"
[47355] "India" "ended"
[47357] "41-year" "wait"
[47359] "hockey" "medal"
[47361] "Tokyo" "Olympics"
[47363] "2020" "beat"
[47365] "four-time" "champions"
[47367] "Germany" "5-4"
[47369] "nail-biter" "bronze"
[47371] "medal" "match"
[47373] "win" "first"
[47375] "Games" "medal"
[47377] "since" "1980"
[47379] "Moscow" "ALSO"
[47381] "READ" "|"
[47383] "ALSO" "READ"
[47385] "|" "Graphic"
[47387] "Shah" "Rukh"
[47389] "Khan" "Akshay"
[47391] "Kumar" "celebs"
[47393] "congratulate" "men's"
[47395] "hockey" "team"
[47397] "Olympic" "bronze"
[47399] "Classification" "Language"
[47401] "ENGLISH" "Publication-Type"
[47403] "Web" "Publication"
[47405] "Body" "23-year-old"
[47407] "missed" "whisker"
[47409] "done" "big"
[47411] "step" "forward"
[47413] "Indian" "golf"
[47415] "Saturday" "day"
[47417] "remember" "Indian"
[47419] "golf" "Especially"
[47421] "women's" "golf"
[47423] "Aditi" "Ashok"
[47425] "made" "us"
[47427] "proud" "may"
[47429] "won" "medal"
[47431] "23-year-old" "missed"
[47433] "whisker" "done"
[47435] "big" "step"
[47437] "forward" "Indian"
[47439] "golf" "Obviously"
[47441] "medal" "given"
[47443] "us" "little"
[47445] "bit" "joy"
[47447] "immaterial" "now"
[47449] "Since" "Friday"
[47451] "morning" "whole"
[47453] "nation" "talking"
[47455] "Aditi" "closely"
[47457] "associated" "sport"
[47459] "long" "seen"
[47461] "kind" "euphoria"
[47463] "World" "1"
[47465] "Nelly" "Korda"
[47467] "US" "won"
[47469] "gold" "medal"
[47471] "Aditi" "just"
[47473] "two" "strokes"
[47475] "behind" "Nelly"
[47477] "took" "gold"
[47479] "four-round" "total"
[47481] "17-under" "267"
[47483] "Japan's" "Mone"
[47485] "Inami" "New"
[47487] "Zealand's" "Lydia"
[47489] "Ko" "won"
[47491] "silver" "bronze"
[47493] "respectively" "play-off"
[47495] "second" "place"
[47497] "finished" "stroke"
[47499] "ahead" "Aditi"
[47501] "Indian" "finished"
[47503] "fourth" "place"
[47505] "15-under" "269"
[47507] "incredible" "performance"
[47509] "outplayed" "fought"
[47511] "till" "end"
[47513] "strongly" "believe"
[47515] "fighting" "spirit"
[47517] "help" "women's"
[47519] "golf" "India"
[47521] "coming" "days"
[47523] "Playing" "golf"
[47525] "almost" "rhythm"
[47527] "four" "days"
[47529] "tough" "Many"
[47531] "factors" "involved"
[47533] "level" "concentration"
[47535] "muscles" "behave"
[47537] "weather" "course"
[47539] "course" "determined"
[47541] "throughout" "rounds"
[47543] "four" "days"
[47545] "Aditi" "contention"
[47547] "bag" "Olympic"
[47549] "medal" "easy"
[47551] "job" "cherish"
[47553] "moment" "country"
[47555] "nobody" "talks"
[47557] "golf" "blame"
[47559] "golfers" "won"
[47561] "anything" "remarkable"
[47563] "Aditi" "won"
[47565] "hearts" "millions"
[47567] "people" "talking"
[47569] "expect" "anything"
[47571] "giving" "us"
[47573] "joy" "encash"
[47575] "opportunity" "Today"
[47577] "President" "country"
[47579] "Prime" "Minister"
[47581] "important" "political"
[47583] "persons" "sports"
[47585] "lovers" "others"
[47587] "talking" "golf"
[47589] "good" "Indian"
[47591] "golf" "Aditi's"
[47593] "second" "Olympics"
[47595] "Rio" "2016"
[47597] "made" "Olympics"
[47599] "debut" "finished"
[47601] "distant" "41st"
[47603] "get" "enough"
[47605] "opportunities" "prepare"
[47607] "Tokyo" "Games"
[47609] "owing" "pandemic"
[47611] "still" "managed"
[47613] "kind" "performance"
[47615] "strong" "statement"
[47617] "Aditi" "Diksha"
[47619] "Dagar" "woman"
[47621] "golfer" "represented"
[47623] "country" "also"
[47625] "decent" "job"
[47627] "Aditi's" "performance"
[47629] "Tokyo" "gave"
[47631] "satisfaction" "like"
[47633] "completing" "full"
[47635] "cycle" "started"
[47637] "playing" "golf"
[47639] "people" "idea"
[47641] "people" "used"
[47643] "discuss" "game"
[47645] "used" "think"
[47647] "one" "day"
[47649] "people" "know"
[47651] "game" "time"
[47653] "arrived" "Courtesy"
[47655] "Aditi" "Ashok"
[47657] "Smriti" "Mehra"
[47659] "pioneer" "women's"
[47661] "golf" "India"
[47663] "first" "woman"
[47665] "country" "tobecome"
[47667] "member" "ofthe"
[47669] "world's" "leading"
[47671] "golftour" "women"
[47673] "theUS-based" "LPGA"
[47675] "Tour" "Classification"
[47677] "Language" "ENGLISH"
[47679] "Publication-Type" "Newspaper"
[47681] "Body" "India"
[47683] "Aug" "1"
[47685] "PV" "Sindhu"
[47687] "created" "history"
[47689] "Sunday" "winning"
[47691] "bronze" "medal"
[47693] "match" "China's"
[47695] "Bing" "Jiao"
[47697] "Tokyo" "Olympics"
[47699] "won" "match"
[47701] "21-13" "21-15"
[47703] "become" "first"
[47705] "Indian" "woman"
[47707] "ever" "win"
[47709] "two" "individual"
[47711] "Olympics" "medals"
[47713] "lost" "final"
[47715] "women's" "singles"
[47717] "event" "2016"
[47719] "Rio" "Olympics"
[47721] "settle" "silver"
[47723] "medal" "Sindhu"
[47725] "needed" "start"
[47727] "strong" "match"
[47729] "get" "self-confidence"
[47731] "must" "rattled"
[47733] "one-sided" "semi-final"
[47735] "loss" "Saturday"
[47737] "Tai" "Tzu-Ying"
[47739] "Sindhu" "blocks"
[47741] "immediately" "clutch"
[47743] "winners" "took"
[47745] "4-0" "lead"
[47747] "first" "game"
[47749] "thanks" "attacking"
[47751] "display" "unforced"
[47753] "error" "Sindhu"
[47755] "gave" "Chinese"
[47757] "first" "point"
[47759] "made" "2-4"
[47761] "well" "played"
[47763] "point" "net"
[47765] "unforced" "error"
[47767] "put" "Sindhu"
[47769] "5-2" "ahead"
[47771] "Bing" "Jiao"
[47773] "played" "great"
[47775] "cross" "court"
[47777] "shot" "end"
[47779] "long" "rally"
[47781] "won" "couple"
[47783] "points" "bounce"
[47785] "tie" "first"
[47787] "game" "5-5"
[47789] "PV" "Sindhu"
[47791] "vs" "Bing"
[47793] "Jiao" "Highlights"
[47795] "Women's" "singles"
[47797] "bronze" "medal"
[47799] "match" "Tokyo"
[47801] "Olympics" "Bing"
[47803] "Jiao" "continued"
[47805] "force" "Sindhu"
[47807] "play" "net"
[47809] "Indian" "challenge"
[47811] "went" "ahead"
[47813] "8-6" "two"
[47815] "players" "played"
[47817] "great" "rally"
[47819] "Sindhu" "leading"
[47821] "9-8" "Bing"
[47823] "Jiao" "produced"
[47825] "great" "defensive"
[47827] "play" "Indian"
[47829] "closed" "point"
[47831] "powerful" "smash"
[47833] "go" "ahead"
[47835] "10-8" "Sindhu"
[47837] "took" "advantage"
[47839] "11-8" "another"
[47841] "smash" "two"
[47843] "players" "went"
[47845] "mid-game" "break"
[47847] "Sindhu" "came"
[47849] "guns" "blazing"
[47851] "break" "dictated"
[47853] "pace" "rallies"
[47855] "really" "well"
[47857] "break" "away"
[47859] "14-8" "lead"
[47861] "Bing" "Jiao"
[47863] "started" "mini"
[47865] "revival" "went"
[47867] "11" "points"
[47869] "Sindhu" "kept"
[47871] "sizeable" "lead"
[47873] "opponent" "great"
[47875] "display" "attack"
[47877] "defence" "went"
[47879] "18-11" "Sindhu"
[47881] "eventually" "closed"
[47883] "first" "game"
[47885] "21-13" "take"
[47887] "lead" "match"
[47889] "Sindhu" "early"
[47891] "second" "game"
[47893] "made" "two"
[47895] "good" "line"
[47897] "calls" "played"
[47899] "great" "cross"
[47901] "court" "smash"
[47903] "go" "4-1"
[47905] "Bing" "Jiao"
[47907] "won" "couple"
[47909] "points" "bring"
[47911] "deficit" "just"
[47913] "point" "Sindhu"
[47915] "produced" "another"
[47917] "solid" "smash"
[47919] "end" "rally"
[47921] "go" "6-4"
[47923] "employed" "weapon"
[47925] "hitting" "line"
[47927] "smash" "end"
[47929] "another" "longish"
[47931] "rally" "go"
[47933] "7-5" "narrative"
[47935] "continued" "Sindhu"
[47937] "hit" "another"
[47939] "solid" "smash"
[47941] "make" "8-5"
[47943] "Bing" "Jiao"
[47945] "won" "couple"
[47947] "points" "drop"
[47949] "close" "gap"
[47951] "committed" "two"
[47953] "unforced" "errors"
[47955] "go" "10-7"
[47957] "Sindhu" "eventually"
[47959] "went" "mid-game"
[47961] "break" "leading"
[47963] "11-8" "Chinese"
[47965] "though" "started"
[47967] "well" "break"
[47969] "showing" "good"
[47971] "court" "speed"
[47973] "win" "three"
[47975] "points" "trot"
[47977] "level" "game"
[47979] "11" "points"
[47981] "apiece" "Sindhu"
[47983] "stemmed" "rot"
[47985] "playing" "two"
[47987] "brilliant" "drop"
[47989] "shots" "sped"
[47991] "away" "14-11"
[47993] "lead" "unforced"
[47995] "error" "gave"
[47997] "Sindhu" "15-11"
[47999] "lead" "Bing"
[48001] "Jiao" "won"
[48003] "two" "points"
[48005] "trot" "bring"
[48007] "deficit" "just"
[48009] "two" "points"
[48011] "Another" "rally"
[48013] "ensued" "thereafter"
[48015] "players" "badly"
[48017] "wanted" "next"
[48019] "point" "another"
[48021] "Sindhu" "cross"
[48023] "court" "smash"
[48025] "gave" "16-13"
[48027] "lead" "Sindhu"
[48029] "kept" "pressure"
[48031] "Chinese" "opponent"
[48033] "never" "letting"
[48035] "chance" "took"
[48037] "18-14" "lead"
[48039] "Bing" "Jiao"
[48041] "won" "point"
[48043] "Sindhu" "made"
[48045] "commit" "unforced"
[48047] "error" "go"
[48049] "19-15" "Sindhu"
[48051] "raced" "match"
[48053] "point" "another"
[48055] "scintillating" "smash"
[48057] "won" "bronze"
[48059] "medal" "closing"
[48061] "second" "game"
[48063] "21-15" "Published"
[48065] "HT" "Digital"
[48067] "Content" "Services"
[48069] "permission" "Hindustan"
[48071] "Times" "query"
[48073] "respect" "article"
[48075] "content" "requirement"
[48077] "please" "contact"
[48079] "Editor" "Classification"
[48081] "Language" "ENGLISH"
[48083] "Publication-Type" "Newswire"
[48085] "Body" "Indians"
[48087] "stop" "celebrate"
[48089] "Neeraj" "Chopra's"
[48091] "outstanding" "victory"
[48093] "Tokyo" "Olympics"
[48095] "clinching" "first"
[48097] "ever" "gold"
[48099] "India" "Javelin"
[48101] "Throw" "Chopra's"
[48103] "opponent" "Pakistan"
[48105] "Arshad" "Nadeem"
[48107] "also" "participant"
[48109] "Javelin" "Thow"
[48111] "event" "congratulated"
[48113] "Neeraj" "feat"
[48115] "besides" "congratulating"
[48117] "Neeraj" "Arshad"
[48119] "also" "apologised"
[48121] "country" "Pakistan"
[48123] "bagging" "gold"
[48125] "medal" "Nadeem"
[48127] "one" "12"
[48129] "throwers" "hoping"
[48131] "capture" "Olympic"
[48133] "gold" "perpetual"
[48135] "glory" "countries"
[48137] "man" "Mian"
[48139] "Channu" "personal"
[48141] "season" "best"
[48143] "86.38" "metres"
[48145] "ranked" "23rd"
[48147] "world" "Arshad"
[48149] "Tweet" "wrote"
[48151] "Congratulations" "Idol"
[48153] "#NeerajChopra" "winning"
[48155] "gold" "medal"
[48157] "Sorry" "Pakistan"
[48159] "win" "medal"
[48161] "Neeraj" "Chopra"
[48163] "bagging" "gold"
[48165] "medal" "Nadeem"
[48167] "threw" "brilliant"
[48169] "85.16" "qualification"
[48171] "top" "Group"
[48173] "B" "aiming"
[48175] "podium" "spot"
[48177] "today" "long"
[48179] "back" "Pakistani"
[48181] "javelin" "thrower"
[48183] "cited" "Indian"
[48185] "counterpart" "one"
[48187] "idols" "Nadeem"
[48189] "won" "bronze"
[48191] "2016" "South"
[48193] "Asian" "Games"
[48195] "hosted" "India"
[48197] "Chopra" "won"
[48199] "gold" "Nadeem"
[48201] "finished" "fourth"
[48203] "opening" "round"
[48205] "throw" "84.62"
[48207] "metres" "third"
[48209] "attempt" "India's"
[48211] "Neeraj" "Chopra"
[48213] "topped" "opening"
[48215] "round" "throw"
[48217] "87.58m" "Nadeem's"
[48219] "first" "throw"
[48221] "landed" "distance"
[48223] "82.40" "well"
[48225] "personal" "best"
[48227] "86.38m" "second"
[48229] "attempt" "deemed"
[48231] "foul" "qualified"
[48233] "finals" "overall"
[48235] "third" "behind"
[48237] "Chopra" "Vetter"
[48239] "However" "Neeraj"
[48241] "Chopra" "Neeraj"
[48243] "Chopra" "Saturday"
[48245] "made" "history"
[48247] "becoming" "first"
[48249] "Indian" "win"
[48251] "gold" "medal"
[48253] "athletics" "Olympic"
[48255] "Games" "Chopra"
[48257] "also" "become"
[48259] "second" "Indian"
[48261] "Abhinav" "Bindra"
[48263] "win" "individual"
[48265] "gold" "medal"
[48267] "Olympics" "Chopra"
[48269] "now" "holds"
[48271] "gold" "medals"
[48273] "javelin" "throw"
[48275] "Commonwealth" "Games"
[48277] "Asian" "Games"
[48279] "now" "Olympics"
[48281] "time" "win"
[48283] "prime" "minister"
[48285] "Narendra" "Modi"
[48287] "said" "history"
[48289] "scripted" "stressed"
[48291] "Neeraj" "achieved"
[48293] "today" "remembered"
[48295] "forever" "Classification"
[48297] "Language" "ENGLISH"
[48299] "Publication-Type" "Newspaper"
[48301] "Body" "beating"
[48303] "Germany" "5-4"
[48305] "win" "bronze"
[48307] "medal" "Tokyo"
[48309] "Olympics" "Thursday"
[48311] "Indian" "hockey"
[48313] "team" "coach"
[48315] "got" "call"
[48317] "Prime" "Minister"
[48319] "Narendra" "Modi"
[48321] "thanked" "inspirational"
[48323] "talk" "semi-final"
[48325] "loss" "coaches"
[48327] "told" "Modi"
[48329] "talk" "motivated"
[48331] "team" "perform"
[48333] "well" "Exactly"
[48335] "85" "years"
[48337] "ago" "month"
[48339] "August" "Indian"
[48341] "hockey" "team"
[48343] "led" "Major"
[48345] "Dhyanchand" "need"
[48347] "motivation" "taking"
[48349] "Germany" "finals"
[48351] "hockey" "1936"
[48353] "Berlin" "Olympics"
[48355] "Maharaja" "Sayajirao"
[48357] "Gaekwad" "Baroda"
[48359] "state" "whose"
[48361] "pep" "talk"
[48363] "lifted" "morale"
[48365] "team" "halftime"
[48367] "Historian" "art"
[48369] "curator" "Chandrashekhar"
[48371] "Patil" "said"
[48373] "Maharaja" "Sayajirao"
[48375] "gone" "Germany"
[48377] "1936" "watch"
[48379] "Berlin" "Olympics"
[48381] "watched" "hockey"
[48383] "finals" "India"
[48385] "Germany" "stadium"
[48387] "pavilion" "Adolf"
[48389] "Hitler" "present"
[48391] "first" "half"
[48393] "Indian" "team"
[48395] "score" "just"
[48397] "one" "goal"
[48399] "Sayajirao" "noticed"
[48401] "players" "struggling"
[48403] "decided" "meet"
[48405] "players" "halftime"
[48407] "players" "told"
[48409] "struggling" "play"
[48411] "properly" "wearing"
[48413] "shoes" "used"
[48415] "playing" "bare"
[48417] "feet" "Sayajirao"
[48419] "given" "shoes"
[48421] "playing" "finals"
[48423] "Patil" "told"
[48425] "TOI" "king"
[48427] "immediately" "asked"
[48429] "remove" "shoes"
[48431] "play" "natural"
[48433] "game" "team"
[48435] "bit" "nervous"
[48437] "playing" "Germans"
[48439] "Germany" "Sayajirao"
[48441] "gave" "pep"
[48443] "talk" "Major"
[48445] "Dhyanchand" "team"
[48447] "asked" "win"
[48449] "finals" "Patil"
[48451] "added" "Dhyanchand"
[48453] "scored" "three"
[48455] "goals" "second"
[48457] "half" "India"
[48459] "beat" "Germany"
[48461] "8-1" "win"
[48463] "gold" "medal"
[48465] "Classification" "Language"
[48467] "ENGLISH" "Publication-Type"
[48469] "Newspaper" "Body"
[48471] "Tokyo" "July"
[48473] "22" "sense"
[48475] "intrigue" "surrounding"
[48477] "preparation" "Chinese"
[48479] "athletes" "Tokyo"
[48481] "Olympics" "Since"
[48483] "outbreak" "Covid-19"
[48485] "pandemic" "year"
[48487] "half" "back"
[48489] "Chinese" "Olympic"
[48491] "hopefuls" "mostly"
[48493] "stayed" "China"
[48495] "either" "choosing"
[48497] "participate" "international"
[48499] "events" "travel"
[48501] "bans" "Apart"
[48503] "disciplines" "qualification"
[48505] "stake" "Chinese"
[48507] "athletes" "quietly"
[48509] "prepared" "home"
[48511] "opportunity" "comes"
[48513] "World" "7"
[48515] "PV" "Sindhu"
[48517] "face" "World"
[48519] "2" "Chen"
[48521] "Yu" "Fei"
[48523] "World" "8"
[48525] "Bing" "Jiao"
[48527] "Amit" "Panghal"
[48529] "fight" "Hu"
[48531] "Jianguan" "ring"
[48533] "Indians" "may"
[48535] "feel" "like"
[48537] "facing" "unknown"
[48539] "opponent" "last"
[48541] "time" "Sindhu"
[48543] "faced" "Yu"
[48545] "Fei" "2019"
[48547] "World" "Championships"
[48549] "Sindhu" "beat"
[48551] "straight" "sets"
[48553] "semi-final" "Since"
[48555] "March" "2020"
[48557] "Yu" "Fei"
[48559] "played" "international"
[48561] "tournament" "Bing"
[48563] "Jiao" "beat"
[48565] "Sindhu" "2019"
[48567] "India" "Open"
[48569] "retreating" "pandemic-scarred"
[48571] "2020" "2021"
[48573] "calendar" "China"
[48575] "looking" "forward"
[48577] "Tokyo" "Olympics"
[48579] "hopes" "improving"
[48581] "medal" "count"
[48583] "precipitous" "fall"
[48585] "Rio" "2016"
[48587] "topping" "medal"
[48589] "tally" "home"
[48591] "2008" "48"
[48593] "gold" "medals"
[48595] "finished" "behind"
[48597] "USA" "2012"
[48599] "China's" "gold"
[48601] "count" "dropped"
[48603] "26" "Riom"
[48605] "making" "worst"
[48607] "Olympics" "two"
[48609] "decades" "still"
[48611] "finished" "third"
[48613] "Tokyo" "opportunity"
[48615] "strike" "back"
[48617] "Pandemic" "began"
[48619] "Wuhan" "ground"
[48621] "zero" "preparations"
[48623] "Olympic-bound" "athletes"
[48625] "took" "different"
[48627] "turn" "China"
[48629] "come" "431"
[48631] "athletes" "largest"
[48633] "Olympics" "contingent"
[48635] "Beijing" "expects"
[48637] "hold" "sway"
[48639] "table" "tennis"
[48641] "badminton" "gymnastics"
[48643] "weightlifting" "shooting"
[48645] "diving" "training"
[48647] "Chinese" "stars"
[48649] "quality" "sparring"
[48651] "partners" "home"
[48653] "enhanced" "intense"
[48655] "domestic" "calendar"
[48657] "also" "one"
[48659] "first" "countries"
[48661] "open" "training"
[48663] "centres" "restart"
[48665] "sporting" "leagues"
[48667] "pandemic-enforced" "lockdowns"
[48669] "China's" "preparation"
[48671] "different" "Covid"
[48673] "restrictions" "played"
[48675] "tournaments" "said"
[48677] "India" "table"
[48679] "tennis" "star"
[48681] "G" "Sathiyan"
[48683] "force" "plenty"
[48685] "tournaments" "inside"
[48687] "China" "simulating"
[48689] "Olympic" "atmosphere"
[48691] "formats" "well"
[48693] "prepared" "China"
[48695] "called" "experts"
[48697] "UFC" "Ultimate"
[48699] "Fighting" "Championship"
[48701] "world's" "top"
[48703] "MMA" "tournament"
[48705] "work" "strength"
[48707] "conditioning" "many"
[48709] "Olympians" "shooting"
[48711] "lot" "new"
[48713] "young" "faces"
[48715] "Chinese" "team"
[48717] "picked" "long"
[48719] "series" "trials"
[48721] "qualification" "system"
[48723] "made" "difficult"
[48725] "step" "team"
[48727] "includes" "16-year-old"
[48729] "Sheng" "Lihao"
[48731] "men's" "10m"
[48733] "air" "rifle"
[48735] "individual" "mixed"
[48737] "team" "events"
[48739] "come" "India's"
[48741] "18-year-old" "Divyansh"
[48743] "Panwar" "current"
[48745] "world" "2"
[48747] "excludes" "big"
[48749] "names" "like"
[48751] "Rio" "2016"
[48753] "gold" "medalist"
[48755] "Zhang" "Mengxue"
[48757] "women's" "10m"
[48759] "air" "pistol"
[48761] "reigning" "world"
[48763] "champion" "air"
[48765] "rifle" "Im"
[48767] "Hana" "plenty"
[48769] "talent" "choose"
[48771] "point" "Indian"
[48773] "shooters" "dominant"
[48775] "last" "two"
[48777] "seasons" "beaten"
[48779] "China" "World"
[48781] "Cups" "said"
[48783] "rifle" "coach"
[48785] "Deepali" "Deshpande"
[48787] "worry" "us"
[48789] "boxing" "besides"
[48791] "Panghal's" "rival"
[48793] "Hu" "Jianguan"
[48795] "Chinese" "women's"
[48797] "team" "formidable"
[48799] "reputation" "China"
[48801] "strong" "women's"
[48803] "boxing" "good"
[48805] "boxers" "men"
[48807] "well" "competed"
[48809] "ask" "gone"
[48811] "Olympics" "without"
[48813] "facing" "competition"
[48815] "long" "said"
[48817] "Santiago" "Nieva"
[48819] "India's" "high"
[48821] "performance" "boxing"
[48823] "coach" "strong"
[48825] "domestic" "structure"
[48827] "good" "sparring"
[48829] "partners" "quality"
[48831] "training" "without"
[48833] "competition" "difficult"
[48835] "get" "intensity"
[48837] "competition" "forget"
[48839] "post" "COVID"
[48841] "sporting" "world"
[48843] "also" "changed"
[48845] "added" "anxiety"
[48847] "travelling" "getting"
[48849] "tested" "taking"
[48851] "precautions" "teams"
[48853] "competed" "prepared"
[48855] "take" "mental"
[48857] "stress" "two"
[48859] "Chinese" "badminton"
[48861] "stars" "last"
[48863] "played" "England"
[48865] "March" "2020"
[48867] "world" "different"
[48869] "place" "China's"
[48871] "domination" "badminton"
[48873] "waning" "won"
[48875] "two" "five"
[48877] "gold" "medals"
[48879] "Rio" "task"
[48881] "cut" "China"
[48883] "disadvantage" "go"
[48885] "biggest" "sporting"
[48887] "event" "world"
[48889] "without" "facing"
[48891] "competition" "anti-Chinese"
[48893] "feelings" "start"
[48895] "pandemic" "perhaps"
[48897] "made" "train"
[48899] "home" "doubt"
[48901] "great" "structure"
[48903] "sporting" "world"
[48905] "changed" "Everyone"
[48907] "access" "modern"
[48909] "training" "regimes"
[48911] "sports" "science"
[48913] "said" "former"
[48915] "international" "India"
[48917] "national" "selector"
[48919] "Vimal" "Kumar"
[48921] "Published" "HT"
[48923] "Digital" "Content"
[48925] "Services" "permission"
[48927] "Hindustan" "Times"
[48929] "query" "respect"
[48931] "article" "content"
[48933] "requirement" "please"
[48935] "contact" "Editor"
[48937] "Classification" "Language"
[48939] "ENGLISH" "Publication-Type"
[48941] "Newswire" "Body"
[48943] "Advertising" "Standards"
[48945] "Council" "India"
[48947] "ASCI" "said"
[48949] "brands" "piggybacking"
[48951] "athletes" "winning"
[48953] "medals" "ongoing"
[48955] "Tokyo" "Olympics"
[48957] "advertising" "without"
[48959] "permission" "violation"
[48961] "code" "ads"
[48963] "refer" "showcase"
[48965] "celebrities" "without"
[48967] "explicit" "permission"
[48969] "ads" "potential"
[48971] "violation" "ASCI"
[48973] "code" "said"
[48975] "ASCI" "secretary"
[48977] "general" "Manisha"
[48979] "Kapoor" "said"
[48981] "ads" "misleading"
[48983] "consumers" "may"
[48985] "think" "celebrities"
[48987] "genuinely" "endorse"
[48989] "products" "ASCI"
[48991] "guidelines" "legally"
[48993] "enforceable" "violations"
[48995] "council's" "guidelines"
[48997] "treated" "violation"
[48999] "government" "rules"
[49001] "Indian" "athletes"
[49003] "including" "weightlifter"
[49005] "Mirabai" "Chanu"
[49007] "badminton" "player"
[49009] "PV" "Sindhu"
[49011] "boxer" "Lovlina"
[49013] "Borgohain" "wrestler"
[49015] "Ravi" "Kumar"
[49017] "Dahiya" "won"
[49019] "medals" "men's"
[49021] "women's" "hockey"
[49023] "teams" "created"
[49025] "history" "Tokyo"
[49027] "leading" "surge"
[49029] "brands" "putting"
[49031] "ads" "messages"
[49033] "social" "media"
[49035] "directly" "leveraging"
[49037] "athletes" "names"
[49039] "neither" "permissions"
[49041] "contracts" "Thursday"
[49043] "men's" "hockey"
[49045] "team" "defeated"
[49047] "Germany" "claim"
[49049] "bronze" "medal"
[49051] "many" "brands"
[49053] "corporate" "CEOs"
[49055] "said" "felt"
[49057] "like" "gold"
[49059] "Team" "captain"
[49061] "Manpreet" "Singh"
[49063] "dedicating" "medal"
[49065] "Covid-19" "warriors"
[49067] "became" "trend"
[49069] "athletes" "names"
[49071] "leveraged" "linked"
[49073] "brands" "across"
[49075] "corporates" "Aditya"
[49077] "Birla" "Group"
[49079] "Apollo" "Hospitals"
[49081] "Perfetti" "Van"
[49083] "Melle" "agencies"
[49085] "like" "Brandonwheelz"
[49087] "out-of-home" "media"
[49089] "agency" "Brand"
[49091] "Sigma" "Advertisers"
[49093] "shall" "without"
[49095] "permission" "person"
[49097] "firm" "institution"
[49099] "reference" "contain"
[49101] "reference" "person"
[49103] "firm" "institution"
[49105] "confers" "unjustified"
[49107] "advantage" "product"
[49109] "advertised" "states"
[49111] "ASCI" "code"
[49113] "Classification" "Language"
[49115] "ENGLISH" "Publication-Type"
[49117] "Newspaper" "Body"
[49119] "Debutant" "Pravin"
[49121] "Jadhav" "finished"
[49123] "ahead" "experienced"
[49125] "Atanu" "Das"
[49127] "Tarundeep" "Rai"
[49129] "India" "managed"
[49131] "ninth-place" "finishes"
[49133] "men's" "team"
[49135] "mixed" "team"
[49137] "rankings" "Games"
[49139] "archery" "competition"
[49141] "Yumenoshima" "Park"
[49143] "Tokyo" "Friday"
[49145] "Chasing" "elusive"
[49147] "Olympic" "medal"
[49149] "archery" "India"
[49151] "braces" "tough"
[49153] "challenges" "ahead"
[49155] "men's" "team"
[49157] "mixed" "pair"
[49159] "likely" "face"
[49161] "Korea" "quarterfinals"
[49163] "Indian" "mixed"
[49165] "team" "open"
[49167] "campaign" "eighth-ranked"
[49169] "Chinese" "Taipei"
[49171] "overcome" "first-round"
[49173] "hurdle" "top-seed"
[49175] "Korea" "waiting"
[49177] "last-eight" "Likewise"
[49179] "Indian" "men's"
[49181] "team" "might"
[49183] "run" "top-seed"
[49185] "Korea" "got"
[49187] "bye" "quarters"
[49189] "beat" "eighth-ranked"
[49191] "Kazakhstan" "opening"
[49193] "round" "individual"
[49195] "rankings" "three"
[49197] "Indian" "male"
[49199] "archers" "finished"
[49201] "top-30" "Jadhav"
[49203] "ahead" "Das"
[49205] "number" "X"
[49207] "counts" "halfway"
[49209] "mark" "scores"
[49211] "329" "Maharashtra"
[49213] "archer" "nosed"
[49215] "ahead" "final"
[49217] "six" "sets"
[49219] "finish" "31st"
[49221] "656" "points"
[49223] "maximum" "720"
[49225] "Das" "35th"
[49227] "place" "finish"
[49229] "former" "Asian"
[49231] "Games" "silver-medalist"
[49233] "Rai" "third"
[49235] "Olympics" "appearance"
[49237] "took" "37th"
[49239] "spot" "among"
[49241] "64" "archers"
[49243] "Taking" "Jadhav's"
[49245] "tally" "account"
[49247] "Deepika's" "663"
[49249] "women's" "event"
[49251] "India" "ranked"
[49253] "ninth" "mixed"
[49255] "team" "competition"
[49257] "country" "best-ever"
[49259] "medal" "hope"
[49261] "Deepika" "finished"
[49263] "ninth" "women's"
[49265] "ranking" "round"
[49267] "earlier" "day"
[49269] "Despite" "Jadhav's"
[49271] "top" "finish"
[49273] "among" "Indians"
[49275] "country" "field"
[49277] "power" "couple"
[49279] "Deepika" "Das"
[49281] "mixed" "pair"
[49283] "competition" "set"
[49285] "Olympics" "debut"
[49287] "Saturday" "team"
[49289] "call" "decision"
[49291] "made" "within"
[49293] "45" "minutes"
[49295] "today" "World"
[49297] "Archery" "official"
[49299] "said" "men's"
[49301] "trio's" "combined"
[49303] "performance" "just"
[49305] "enough" "finish"
[49307] "inside" "top-10"
[49309] "totalled" "1961"
[49311] "ninth" "place"
[49313] "finish" "first"
[49315] "Olympic" "appearance"
[49317] "since" "London"
[49319] "2012" "Indian"
[49321] "men's" "team"
[49323] "failed" "qualify"
[49325] "2016" "Rio"
[49327] "Games" "Das"
[49329] "male" "competitor"
[49331] "individual" "section"
[49333] "Meanwhile" "17-year-old"
[49335] "Korean" "phenomenon"
[49337] "Kim" "Je"
[49339] "Deok" "labelled"
[49341] "greatest" "talent"
[49343] "100" "years"
[49345] "missed" "Olympic"
[49347] "record" "two"
[49349] "points" "en"
[49351] "route" "topping"
[49353] "men's" "ranking"
[49355] "round" "688"
[49357] "points" "six"
[49359] "ahead" "world"
[49361] "1" "Brady"
[49363] "Ellison" "Ellison"
[49365] "2012" "Olympic"
[49367] "Champion" "39-year-old"
[49369] "veteran" "Oh"
[49371] "Jin" "Hyek"
[49373] "finished" "third"
[49375] "Hyek's" "compatriot"
[49377] "Kim" "Woojin"
[49379] "fourth" "place"
[49381] "finish" "defending"
[49383] "champions" "Korea"
[49385] "topped" "ranking"
[49387] "round" "men's"
[49389] "team" "event"
[49391] "Classification" "Language"
[49393] "ENGLISH" "Publication-Type"
[49395] "Newspaper" "Body"
[49397] "Minutes" "Indian"
[49399] "men's" "Hockey"
[49401] "team" "won"
[49403] "bronze" "medal"
[49405] "Thursday" "several"
[49407] "Bollywood" "celebrities"
[49409] "congratulated" "team"
[49411] "rewriting" "history"
[49413] "team" "claimed"
[49415] "Olympic" "medal"
[49417] "41" "years"
[49419] "beating" "Germany"
[49421] "5-4" "claim"
[49423] "bronze" "edge-of-the-seat"
[49425] "play-off" "match"
[49427] "ongoing" "Tokyo"
[49429] "Olympics" "Superstar"
[49431] "Shah" "Rukh"
[49433] "Khan" "took"
[49435] "Twitter" "lauded"
[49437] "players" "resilience"
[49439] "skills" "Wow"
[49441] "Indian" "Men's"
[49443] "Hockey" "Team"
[49445] "Congratulations" "Resilience"
[49447] "skill" "peak"
[49449] "exciting" "match"
[49451] "tweeted" "Superstar"
[49453] "Akshay" "Kumar"
[49455] "shared" "picture"
[49457] "team" "tricolour"
[49459] "tweeted" "Congratulations"
[49461] "Team" "India"
[49463] "rewriting" "history"
[49465] "Olympic" "medal"
[49467] "41" "years"
[49469] "match" "comeback"
[49471] "#Tokyo2020" "Reacting"
[49473] "news" "Twitter"
[49475] "actress" "Taapsee"
[49477] "Pannu" "wrote"
[49479] "bronze" "won"
[49481] "great" "victory"
[49483] "Kudos" "team"
[49485] "Bronze" "medal"
[49487] "Indian" "Men's"
[49489] "hockey" "team"
[49491] "actor-turned-politician" "Sunny"
[49493] "Deol" "wrote"
[49495] "Twitter" "Determined"
[49497] "clinch" "medal"
[49499] "Indians" "made"
[49501] "one" "memorable"
[49503] "comebacks" "history"
[49505] "game" "fighting"
[49507] "back" "two-goal"
[49509] "deficit" "turn"
[49511] "match" "favour"
[49513] "tears" "hugs"
[49515] "field" "Indians"
[49517] "led" "Manpreet"
[49519] "Singh" "coached"
[49521] "Australian" "Graham"
[49523] "Reid" "savoured"
[49525] "historic" "moment"
[49527] "India's" "third"
[49529] "hockey" "bronze"
[49531] "medal" "history"
[49533] "Olympics" "two"
[49535] "came" "1968"
[49537] "Mexico" "City"
[49539] "1972" "Munich"
[49541] "Games" "Classification"
[49543] "Language" "ENGLISH"
[49545] "Publication-Type" "Newspaper"
[49547] "Body" "India"
[49549] "July" "23"
[49551] "turn" "India's"
[49553] "Super" "Saturday"
[49555] "Olympic" "Games"
[49557] "time" "India's"
[49559] "history" "Olympics"
[49561] "day" "seven"
[49563] "athletes" "four"
[49565] "different" "events"
[49567] "going" "real"
[49569] "chance" "winning"
[49571] "medals" "just"
[49573] "win" "medals"
[49575] "though" "historic"
[49577] "enough" "air"
[49579] "redemption" "TOKYO"
[49581] "OLYMPICS" "2020"
[49583] "FULL" "COVERAGE"
[49585] "Redemption" "top"
[49587] "lifter" "moment"
[49589] "weakness" "clear"
[49591] "even" "single"
[49593] "attempt" "one"
[49595] "category" "event"
[49597] "Rio" "2016"
[49599] "one" "favourites"
[49601] "Redemption" "India's"
[49603] "vaunted" "shooters"
[49605] "returned" "without"
[49607] "medal" "Rio"
[49609] "first" "time"
[49611] "four" "editions"
[49613] "Games" "Indian"
[49615] "shooter" "stand"
[49617] "podium" "Redemption"
[49619] "Deepika" "Kumari"
[49621] "long" "one"
[49623] "best" "archers"
[49625] "world" "exiting"
[49627] "second" "round"
[49629] "second" "Olympics"
[49631] "events" "medals"
[49633] "offer" "India"
[49635] "Day" "1"
[49637] "discipline" "Indians"
[49639] "competing" "ranked"
[49641] "top" "three"
[49643] "world" "includes"
[49645] "Kumari" "world"
[49647] "1" "women's"
[49649] "archer" "third"
[49651] "Olympics" "Mirabai"
[49653] "Chanu" "world"
[49655] "2" "women's"
[49657] "49kg" "category"
[49659] "weightlifting" "failed"
[49661] "spectacularly" "Rio"
[49663] "improved" "leaps"
[49665] "bounds" "range"
[49667] "Asaka" "Shooting"
[49669] "Range" "temporary"
[49671] "shooting" "venue"
[49673] "reorganized" "comply"
[49675] "standards" "2020"
[49677] "Olympics" "Yet"
[49679] "rich" "history"
[49681] "tucked" "away"
[49683] "corner" "Tokyo"
[49685] "range" "1964"
[49687] "Olympics" "shooting"
[49689] "events" "also"
[49691] "stood" "small"
[49693] "venue" "60"
[49695] "lanes" "convertible"
[49697] "range" "50m"
[49699] "10m" "range"
[49701] "10m" "competitions"
[49703] "starting" "first"
[49705] "training" "50m"
[49707] "stopped" "last"
[49709] "couple" "days"
[49711] "allow" "air"
[49713] "conditioning" "cool"
[49715] "range" "come"
[49717] "reprieve" "air"
[49719] "rifle" "shooters"
[49721] "perform" "wearing"
[49723] "stiff" "heavy"
[49725] "attire" "went"
[49727] "pre-event" "training"
[49729] "comfortably" "Friday"
[49731] "range" "Indian"
[49733] "shooters" "eager"
[49735] "bury" "ghosts"
[49737] "Rio" "Since"
[49739] "burst" "young"
[49741] "talent" "nurtured"
[49743] "former" "India"
[49745] "players" "taken"
[49747] "shooting" "world"
[49749] "storm" "2019"
[49751] "India" "swept"
[49753] "shooting" "world"
[49755] "cup" "cycle"
[49757] "first" "time"
[49759] "leaving" "behind"
[49761] "powerhouses" "like"
[49763] "China" "Russia"
[49765] "US" "terrific"
[49767] "run" "Indian"
[49769] "shooters" "last"
[49771] "four" "years"
[49773] "enter" "edition"
[49775] "Games" "contenders"
[49777] "several" "categories"
[49779] "Saturday" "best"
[49781] "show-Abhishek" "Verma"
[49783] "Saurabh" "Chaudhary"
[49785] "seeded" "1"
[49787] "2" "Tokyo"
[49789] "10m" "air"
[49791] "pistol" "Apurvi"
[49793] "Chandela" "Elavenil"
[49795] "Valarivan" "seeded"
[49797] "1" "10m"
[49799] "Air" "Rifle"
[49801] "go" "event"
[49803] "just" "contenders"
[49805] "ones" "beat"
[49807] "Barbells" "bows"
[49809] "Far" "another"
[49811] "part" "city"
[49813] "Mirabai" "Chanu"
[49815] "look" "finally"
[49817] "get" "heart-break"
[49819] "Rio" "time"
[49821] "takes" "stage"
[49823] "world" "record"
[49825] "holder" "clean"
[49827] "jerk" "category"
[49829] "failed" "lift"
[49831] "three" "attempts"
[49833] "Rio" "Talk"
[49835] "turning" "things"
[49837] "around" "yet"
[49839] "another" "part"
[49841] "city" "Kumari"
[49843] "pair" "Pravin"
[49845] "Jadhav" "archery"
[49847] "mixed" "team"
[49849] "event" "athletes"
[49851] "come" "Tokyo"
[49853] "solid" "preparatory"
[49855] "phase" "behind"
[49857] "shooting" "team"
[49859] "isolated" "two"
[49861] "half" "months"
[49863] "Croatia" "training"
[49865] "camp" "brutal"
[49867] "second" "wave"
[49869] "pandemic" "swept"
[49871] "India" "Chanu"
[49873] "trained" "large"
[49875] "parts" "year"
[49877] "last" "famous"
[49879] "lifting" "gym"
[49881] "St" "Louis"
[49883] "USA" "lot"
[49885] "ride" "young"
[49887] "shooters" "perform"
[49889] "world's" "biggest"
[49891] "stage" "Eleven"
[49893] "15-member" "team"
[49895] "making" "Games"
[49897] "debuts" "including"
[49899] "Valarivan" "rose"
[49901] "top" "competitive"
[49903] "event" "Indian"
[49905] "shooting" "booked"
[49907] "berth" "Olympics"
[49909] "two" "world"
[49911] "cup" "golds"
[49913] "even" "world"
[49915] "championship" "silver"
[49917] "medallist" "Anjum"
[49919] "Moudgil" "make"
[49921] "cut" "event"
[49923] "Moudgil" "team"
[49925] "different" "event"
[49927] "though" "50m"
[49929] "rifle" "three-positions"
[49931] "Valarivan" "Chandela"
[49933] "top" "form"
[49935] "2019" "struggled"
[49937] "2021" "global"
[49939] "shooting" "competitions"
[49941] "restarted" "pandemic-enforced"
[49943] "break" "2020"
[49945] "Valarivan" "qualify"
[49947] "finals" "last"
[49949] "two" "world"
[49951] "cups" "Chandela"
[49953] "contend" "regaining"
[49955] "posture" "form"
[49957] "losing" "weight"
[49959] "fitting" "original"
[49961] "shooting" "gear"
[49963] "Indian" "woman"
[49965] "shooter" "ever"
[49967] "won" "medal"
[49969] "India" "qualification"
[49971] "score" "630"
[49973] "good" "enough"
[49975] "qualify" "eight-shooter"
[49977] "final" "anybody's"
[49979] "game" "come"
[49981] "handles" "pressure"
[49983] "better" "said"
[49985] "rifle" "coach"
[49987] "Deepali" "Deshpande"
[49989] "air" "pistol"
[49991] "Chaudhary" "Verma"
[49993] "best" "possible"
[49995] "space" "19-year-old"
[49997] "Chaudhary" "Asian"
[49999] "Games" "gold"
[50001] "medallist" "16"
[50003] "far" "shown"
[50005] "signs" "nervous"
[50007] "big" "stage"
[50009] "Whether" "small"
[50011] "competitions" "big"
[50013] "shoots" "inscrutable"
[50015] "look" "face"
[50017] "zone" "metronymic"
[50019] "accuracy" "two"
[50021] "top" "competitors"
[50023] "category" "China's"
[50025] "Pang" "Wei"
[50027] "Olympic" "world"
[50029] "championships" "gold"
[50031] "medallist" "South"
[50033] "Korean" "great"
[50035] "four-time" "Olympic"
[50037] "champion" "world"
[50039] "record" "holder"
[50041] "Jin" "Jong-oh"
[50043] "Chaudhary" "beaten"
[50045] "Jon-oh" "second"
[50047] "place" "Asian"
[50049] "Games" "Iran's"
[50051] "Javad" "Foroughi"
[50053] "won" "back-to-back"
[50055] "world" "cup"
[50057] "golds" "coming"
[50059] "Tokyo" "also"
[50061] "great" "form"
[50063] "Verma" "31-year-old"
[50065] "lawyer" "turned"
[50067] "shooter" "whose"
[50069] "steep" "rise"
[50071] "sport-he" "picked"
[50073] "gun" "first"
[50075] "time" "25"
[50077] "years" "old-is"
[50079] "story" "inspiration"
[50081] "obsession" "also"
[50083] "medal-winning" "form"
[50085] "recent" "world"
[50087] "cups" "archery"
[50089] "Deepika" "Kumari"
[50091] "get" "pair"
[50093] "husband" "Atanu"
[50095] "Das" "finished"
[50097] "lowly" "35th"
[50099] "individual" "ranking"
[50101] "round" "Friday"
[50103] "top" "male"
[50105] "archer" "India"
[50107] "Pravin" "Jadhav"
[50109] "31st" "archery"
[50111] "team" "made"
[50113] "last" "minute"
[50115] "change" "based"
[50117] "form" "pair"
[50119] "Jadhav" "Kumari"
[50121] "mixed" "team"
[50123] "event" "making"
[50125] "debut" "Tokyo"
[50127] "Kumari" "9th"
[50129] "individual" "ranking"
[50131] "round" "road"
[50133] "medal" "extremely"
[50135] "tough" "pair"
[50137] "face" "Chinese"
[50139] "Taipei" "one"
[50141] "world's" "preeminent"
[50143] "archery" "teams"
[50145] "first" "elimination"
[50147] "round" "Published"
[50149] "HT" "Digital"
[50151] "Content" "Services"
[50153] "permission" "Hindustan"
[50155] "Times" "query"
[50157] "respect" "article"
[50159] "content" "requirement"
[50161] "please" "contact"
[50163] "Editor" "Classification"
[50165] "Language" "ENGLISH"
[50167] "Publication-Type" "Newswire"
[50169] "Body" "New"
[50171] "Delhi" "Aug"
[50173] "2" "India's"
[50175] "Women's" "hockey"
[50177] "team" "qualified"
[50179] "semis" "defeated"
[50181] "Australian" "team"
[50183] "1-0" "quarter-final"
[50185] "match" "today"
[50187] "register" "historic"
[50189] "win" "ongoing"
[50191] "Tokyo" "Olympics"
[50193] "India" "scored"
[50195] "victory" "goal"
[50197] "Gurjit" "Kaur"
[50199] "scored" "penalty"
[50201] "corner" "victory"
[50203] "came" "day"
[50205] "men's" "hockey"
[50207] "team" "qualified"
[50209] "semi-final" "match"
[50211] "India's" "women"
[50213] "team" "finished"
[50215] "Pool" "proceedings"
[50217] "fourth" "place"
[50219] "six" "points"
[50221] "riding" "back-to-back"
[50223] "wins" "Ireland"
[50225] "South" "Africa"
[50227] "top" "four"
[50229] "teams" "pool"
[50231] "made" "knockout"
[50233] "stage" "Indian"
[50235] "women" "hockey"
[50237] "team's" "best"
[50239] "finish" "Olympics"
[50241] "came" "debut"
[50243] "Moscow" "back"
[50245] "1980" "ended"
[50247] "fourth" "position"
[50249] "among" "six"
[50251] "teams" "edition"
[50253] "six" "teams"
[50255] "participated" "India"
[50257] "finished" "fourth"
[50259] "round-robin" "format"
[50261] "competition" "classification"
[50263] "elimination" "matches"
[50265] "losing" "first"
[50267] "three" "matches"
[50269] "Netherlands" "Germany"
[50271] "defending" "champions"
[50273] "Great" "Britain"
[50275] "Indian" "women"
[50277] "made" "brilliant"
[50279] "comeback" "defeating"
[50281] "higher-ranked" "Ireland"
[50283] "1-0" "overpowering"
[50285] "South" "Africa"
[50287] "4-3" "keep"
[50289] "hunt" "Rani-led"
[50291] "forward" "line"
[50293] "impressive" "throughout"
[50295] "pool" "stages"
[50297] "likes" "Sharmila"
[50299] "Devi" "Lalremsiami"
[50301] "Rani" "squandered"
[50303] "many" "chances"
[50305] "Indians" "also"
[50307] "below-par" "penalty"
[50309] "corner" "conversions"
[50311] "far" "star"
[50313] "drag-flicker" "Gurjit"
[50315] "Kaur" "looking"
[50317] "pale" "shadow"
[50319] "team" "secured"
[50321] "33" "penalty"
[50323] "corners" "far"
[50325] "five" "pool"
[50327] "matches" "managed"
[50329] "utilise" "just"
[50331] "four" "chances"
[50333] "goals" "coming"
[50335] "variations" "Published"
[50337] "HT" "Digital"
[50339] "Content" "Services"
[50341] "permission" "MINT"
[50343] "query" "respect"
[50345] "article" "content"
[50347] "requirement" "please"
[50349] "contact" "Editor"
[50351] "Classification" "Language"
[50353] "ENGLISH" "Publication-Type"
[50355] "Newspaper" "Body"
[50357] "Novak" "Djokovic"
[50359] "squares" "Hugo"
[50361] "Dellien" "Indian"
[50363] "men's" "hockey"
[50365] "team" "take"
[50367] "New" "Zealand"
[50369] "opener" "eye"
[50371] "first" "podium"
[50373] "finish" "41"
[50375] "years" "day"
[50377] "Opening" "Ceremony"
[50379] "started" "Deepika"
[50381] "Kumari" "Indian"
[50383] "men's" "archery"
[50385] "contingent" "grabbing"
[50387] "limelight" "Kumari"
[50389] "grabbed" "ninth"
[50391] "spot" "women's"
[50393] "ranking" "event"
[50395] "Pravin" "Jadhav"
[50397] "outlasted" "Atanu"
[50399] "Das" "Tarundeep"
[50401] "Rai" "Jadhav"
[50403] "finished" "ahead"
[50405] "experienced" "Das"
[50407] "Rai" "India"
[50409] "managed" "ninth-place"
[50411] "finishes" "men's"
[50413] "team" "mixed"
[50415] "team" "rankings"
[50417] "Games" "archery"
[50419] "competition" "Yumenoshima"
[50421] "Park" "Now"
[50423] "time" "look"
[50425] "next" "day's"
[50427] "featured" "events"
[50429] "Tokyo" "Olympics"
[50431] "Shooting" "Women's"
[50433] "10m" "air"
[50435] "rifle" "5"
[50437] "00" "IST"
[50439] "Apurvi" "Chandela"
[50441] "Elevanil" "Valarivan"
[50443] "Chandela" "Elavenil"
[50445] "enter" "competition"
[50447] "plenty" "look"
[50449] "forward" "despite"
[50451] "occasional" "blips"
[50453] "Three-time" "ISSF"
[50455] "World" "Cup"
[50457] "gold" "medallist"
[50459] "Chandela" "endured"
[50461] "bit" "rough"
[50463] "time" "run"
[50465] "Games" "contracted"
[50467] "Covid-19" "testing"
[50469] "negative" "just"
[50471] "time" "board"
[50473] "flight" "Indian"
[50475] "team's" "training-cum-competition"
[50477] "tour" "Croatia"
[50479] "21-year-old" "Elavenil"
[50481] "world" "number"
[50483] "1" "considered"
[50485] "one" "country's"
[50487] "finest" "rifle"
[50489] "shooters" "fine"
[50491] "performances" "since"
[50493] "breaking" "senior"
[50495] "team" "certainly"
[50497] "fancy" "chances"
[50499] "Hockey" "Pool"
[50501] "Men's" "6"
[50503] "30" "IST"
[50505] "India" "vs"
[50507] "New" "Zealand"
[50509] "Ranked" "fourth"
[50511] "world" "India"
[50513] "looking" "break"
[50515] "four-decade-long" "Olympics"
[50517] "medal" "drought"
[50519] "last" "eight"
[50521] "gold" "medals"
[50523] "came" "way"
[50525] "back" "1980"
[50527] "Moscow" "Games"
[50529] "India" "play"
[50531] "New" "Zealand"
[50533] "opener" "Saturday"
[50535] "Mandeep" "said"
[50537] "geared" "job"
[50539] "ahead" "now"
[50541] "allowed" "interact"
[50543] "teams" "Today"
[50545] "first" "day"
[50547] "also" "got"
[50549] "play" "main"
[50551] "competition" "pitch"
[50553] "doubt" "fantastic"
[50555] "stadium" "eager"
[50557] "play" "first"
[50559] "match" "New"
[50561] "Zealand" "said"
[50563] "Tennis" "Men's"
[50565] "Singles" "7"
[50567] "30" "Novak"
[50569] "Djokovic" "vs"
[50571] "Hugo" "Dellien"
[50573] "Novak" "Djokovic"
[50575] "take" "Bolivia's"
[50577] "Hugo" "Dellien"
[50579] "first" "round"
[50581] "Saturday" "Serb"
[50583] "aiming" "first"
[50585] "ever" "Olympic"
[50587] "gold" "medal"
[50589] "eye" "historic"
[50591] "Golden" "Slam"
[50593] "provided" "wins"
[50595] "US" "Open"
[50597] "year" "Djoker"
[50599] "winning" "bronze"
[50601] "2008" "failed"
[50603] "secure" "podium"
[50605] "finish" "2012"
[50607] "2016" "Djokovic"
[50609] "prime" "form"
[50611] "year" "winning"
[50613] "Australian" "Open"
[50615] "French" "Open"
[50617] "Wimbledon" "Taking"
[50619] "Djoker" "easy"
[50621] "Tennis" "First"
[50623] "round" "7"
[50625] "30" "IST"
[50627] "Sumit" "Nagal"
[50629] "vs" "David"
[50631] "Istomin" "Indian"
[50633] "tennis" "player"
[50635] "Sumit" "Nagal"
[50637] "face" "Uzbekistan's"
[50639] "Denis" "Istomin"
[50641] "opening" "round"
[50643] "men's" "singles"
[50645] "event" "Tokyo"
[50647] "Olympics" "Nagal"
[50649] "qualified" "Games"
[50651] "last" "week"
[50653] "large-scale" "withdrawals"
[50655] "pitted" "lower-ranked"
[50657] "Uzbek" "draw"
[50659] "Thursday" "first-round"
[50661] "win" "23-year-old"
[50663] "Indian" "ranked"
[50665] "160" "see"
[50667] "face" "second-seeded"
[50669] "Russia's" "Daniil"
[50671] "Medvedev" "takes"
[50673] "Alexander" "Bublik"
[50675] "opening" "round"
[50677] "match" "Table"
[50679] "Tennis" "Round"
[50681] "16" "8"
[50683] "30" "IST"
[50685] "YJ" "Lin"
[50687] "IC" "Cheng"
[50689] "vs" "S"
[50691] "Achanta" "Manika"
[50693] "Batra" "world"
[50695] "number" "one"
[50697] "duo" "Chinese"
[50699] "Taipei" "tough"
[50701] "challenge" "Sharath"
[50703] "Kamal" "Manika"
[50705] "Batra" "Asian"
[50707] "Games" "bronze-medallists"
[50709] "brilliant" "Olympic"
[50711] "qualifiers" "ended"
[50713] "winning" "competition"
[50715] "However" "run"
[50717] "Olympics" "Sharath"
[50719] "Manika" "got"
[50721] "three" "sessions"
[50723] "train" "together"
[50725] "boarded" "flight"
[50727] "Tokyo" "Men's"
[50729] "10m" "air"
[50731] "pistol" "Qualification"
[50733] "9" "30"
[50735] "Sourabh" "Chaudhuary"
[50737] "Abhishek" "Verma"
[50739] "highly-skilled" "Saurabh"
[50741] "Chaudhary" "Olympic"
[50743] "world" "champions"
[50745] "standing" "way"
[50747] "glory" "sport's"
[50749] "biggest" "showpiece"
[50751] "Alongside" "Abhishek"
[50753] "Verma" "Chaudhary"
[50755] "part" "first"
[50757] "competition" "day"
[50759] "action" "men's"
[50761] "10m" "air"
[50763] "pistol" "event"
[50765] "Table" "Tennis"
[50767] "Women's" "Singles"
[50769] "12" "15"
[50771] "pm" "Manika"
[50773] "Batra" "vs"
[50775] "Tin-Tin" "Ho"
[50777] "unseeded" "Manika"
[50779] "expected" "beat"
[50781] "Britain's" "Tin-Tin"
[50783] "Ho" "first"
[50785] "round" "drawn"
[50787] "meet" "20th"
[50789] "seed" "Margaryta"
[50791] "Pestoska" "second"
[50793] "manages" "win"
[50795] "second" "match"
[50797] "62nd-ranked" "Indian"
[50799] "meets" "10th"
[50801] "seed" "Sofia"
[50803] "Polcanova" "Austria"
[50805] "place" "pre-quarterfinals"
[50807] "Weightlifting" "49kg"
[50809] "Mirabai" "Chanu"
[50811] "10" "20"
[50813] "Former" "world"
[50815] "champion" "Mirabai"
[50817] "Chanu" "focus"
[50819] "high" "medal-winning"
[50821] "chances" "Tokyo"
[50823] "Olympics" "Indian"
[50825] "hopes" "exorcise"
[50827] "ghosts" "disappointing"
[50829] "Rio" "Games"
[50831] "write" "new"
[50833] "chapter" "country's"
[50835] "weightlifting" "history"
[50837] "Competing" "49kg"
[50839] "category" "Chanu"
[50841] "considered" "sure"
[50843] "shot" "medal"
[50845] "prospect" "India"
[50847] "personal" "best"
[50849] "205kg" "second"
[50851] "China's" "Hou"
[50853] "Zhihui's" "effort"
[50855] "213kg" "eight-woman"
[50857] "field" "hype"
[50859] "similar" "one"
[50861] "five" "years"
[50863] "ago" "Rio"
[50865] "Chanu" "manage"
[50867] "one" "lift"
[50869] "six" "attempts"
[50871] "thus" "get"
[50873] "overall" "total"
[50875] "women's" "48kg"
[50877] "event" "diminutive"
[50879] "Manipuri" "desperately"
[50881] "hope" "different"
[50883] "script" "time"
[50885] "round" "one"
[50887] "involves" "podium"
[50889] "events" "India"
[50891] "part" "Equestrian"
[50893] "Individual" "dressage"
[50895] "grand" "prix"
[50897] "day" "1"
[50899] "Table" "tennis"
[50901] "Men's" "singles"
[50903] "preliminary" "round"
[50905] "5" "30"
[50907] "Table" "tennis"
[50909] "Women's" "singles"
[50911] "preliminary" "round"
[50913] "5" "30"
[50915] "Archery" "Mixed"
[50917] "team" "round"
[50919] "16" "6"
[50921] "00" "Pravin"
[50923] "Jadav" "Deepika"
[50925] "Kumari" "vs"
[50927] "Chinese" "Taipei"
[50929] "Judo" "Women's"
[50931] "48kg" "rounds"
[50933] "7" "30"
[50935] "Rowing" "Men's"
[50937] "lightweight" "double"
[50939] "sculls" "heats"
[50941] "7" "50"
[50943] "Boxing" "Women's"
[50945] "welterweight" "8"
[50947] "00" "Shooting"
[50949] "Men's" "10m"
[50951] "air" "pistol"
[50953] "qualification" "9"
[50955] "30" "Archery"
[50957] "Mixed" "team"
[50959] "medal" "rounds"
[50961] "10" "45"
[50963] "Shooting" "Men's"
[50965] "10m" "air"
[50967] "pistol" "final"
[50969] "12" "00"
[50971] "Badminton" "Men's"
[50973] "doubles" "Chirag"
[50975] "Shetty" "Satwiksairaj"
[50977] "Rankireddy" "vs"
[50979] "Lee" "Yang"
[50981] "Chi-Lin" "Wang"
[50983] "Taipei" "12"
[50985] "20" "Badminton"
[50987] "Men's" "singles"
[50989] "B" "Sai"
[50991] "Praneeth" "vs"
[50993] "Misha" "Zilberman"
[50995] "Israel" "13"
[50997] "00" "Boxing"
[50999] "Men's" "welterweight"
[51001] "round" "32"
[51003] "Vikas" "Krishan"
[51005] "vs" "Sewonrets"
[51007] "Quincy" "Mensah"
[51009] "Okazawa" "15"
[51011] "54" "Hockey"
[51013] "India" "Women"
[51015] "vs" "Netherlands"
[51017] "17.15" "Classification"
[51019] "Language" "ENGLISH"
[51021] "Publication-Type" "Newspaper"
[51023] "Body" "Mirabai"
[51025] "Chanu" "ended"
[51027] "India's" "21-year"
[51029] "wait" "weightlifting"
[51031] "medal" "Olympics"
[51033] "clinching" "silver"
[51035] "medal" "49kg"
[51037] "category" "open"
[51039] "country's" "account"
[51041] "Saturday" "26-year-old"
[51043] "lifted" "total"
[51045] "202kg" "87kg"
[51047] "+" "115kg"
[51049] "better" "Karnam"
[51051] "Malleswari's" "bronze"
[51053] "2000" "Sydney"
[51055] "Olympics" "exorcised"
[51057] "ghosts" "2016"
[51059] "Games" "failed"
[51061] "log" "single"
[51063] "legitimate" "lift"
[51065] "gold" "went"
[51067] "China's" "Hou"
[51069] "Zhihui" "effort"
[51071] "210kg" "94kg"
[51073] "+" "116kg"
[51075] "Aisah" "Windy"
[51077] "Cantika" "Indonesia"
[51079] "took" "home"
[51081] "bronze" "effort"
[51083] "194kg" "84kg"
[51085] "+" "110kg"
[51087] "Considered" "weakness"
[51089] "run" "marquee"
[51091] "event" "Chanu"
[51093] "attempted" "84kg"
[51095] "first" "snatch"
[51097] "attempt" "Manipuri"
[51099] "took" "time"
[51101] "cleanly" "heaved"
[51103] "barbell" "lifted"
[51105] "87kg" "next"
[51107] "attempt" "raised"
[51109] "weight" "89kg"
[51111] "one" "1kg"
[51113] "personal" "best"
[51115] "88kg" "lifted"
[51117] "national" "championship"
[51119] "last" "year"
[51121] "However" "unable"
[51123] "better" "personal"
[51125] "best" "settled"
[51127] "87kg" "snatch"
[51129] "event" "behind"
[51131] "leader" "Zhihui"
[51133] "created" "new"
[51135] "Olympic" "record"
[51137] "effort" "94kg"
[51139] "Chinese" "lifter"
[51141] "also" "holds"
[51143] "world" "mark"
[51145] "96kg" "category"
[51147] "clean" "jerk"
[51149] "Chanu" "world"
[51151] "record" "holder"
[51153] "section" "lifted"
[51155] "110kg" "115kg"
[51157] "first" "two"
[51159] "attempts" "However"
[51161] "unable" "raise"
[51163] "117kg" "final"
[51165] "attempt" "enough"
[51167] "fetch" "medal"
[51169] "open" "India's"
[51171] "account" "diminutive"
[51173] "Mannipuri" "broke"
[51175] "realising" "secured"
[51177] "medal" "hugged"
[51179] "coach" "jubiliation"
[51181] "later" "broke"
[51183] "dance" "celebrate"
[51185] "historic" "podium"
[51187] "finish" "Classification"
[51189] "Language" "ENGLISH"
[51191] "Publication-Type" "Newspaper"
[51193] "Body" "India"
[51195] "Aug" "5"
[51197] "Actor" "Shah"
[51199] "Rukh" "Khan"
[51201] "congratulated" "Indian"
[51203] "men's" "hockey"
[51205] "team" "won"
[51207] "Olympic" "medal"
[51209] "41" "years"
[51211] "Indian" "team"
[51213] "beat" "Germany"
[51215] "5-4" "claimed"
[51217] "bronze" "medal"
[51219] "ongoing" "Tokyo"
[51221] "Olympic" "Games"
[51223] "Thursday" "Taking"
[51225] "Twitter" "Shah"
[51227] "Rukh" "Khan"
[51229] "wrote" "Wow"
[51231] "Indian" "Men's"
[51233] "Hockey" "Team"
[51235] "Congratulations" "Resilience"
[51237] "skill" "peak"
[51239] "exciting" "match"
[51241] "Simranjeet" "Singh"
[51243] "17th" "34th"
[51245] "minutes" "scored"
[51247] "brace" "Hardik"
[51249] "Singh" "27th"
[51251] "Harmanpreet" "Singh"
[51253] "29th" "Rupinder"
[51255] "Pal" "Singh"
[51257] "31st" "goal-getters"
[51259] "India" "India's"
[51261] "third" "hockey"
[51263] "bronze" "medal"
[51265] "history" "Olympics"
[51267] "two" "came"
[51269] "1968" "Mexico"
[51271] "City" "1972"
[51273] "Munich" "Games"
[51275] "Earlier" "week"
[51277] "Shah" "Rukh"
[51279] "lauded" "Indian"
[51281] "women's" "hockey"
[51283] "team's" "win"
[51285] "Australia" "Olympics"
[51287] "Coach" "Sjoerd"
[51289] "Marijne" "tweeted"
[51291] "picture" "Indian"
[51293] "team" "reached"
[51295] "semi-finals" "written"
[51297] "Sorry" "family"
[51299] "coming" "later"
[51301] "Shah" "Rukh"
[51303] "retweeted" "post"
[51305] "wrote" "Haan"
[51307] "haan" "problem"
[51309] "Just" "bring"
[51311] "Gold" "way"
[51313] "back" "billion"
[51315] "family" "members"
[51317] "time" "Dhanteras"
[51319] "also" "2nd"
[51321] "Nov" "Ex-coach"
[51323] "Kabir" "Khan"
[51325] "making" "reference"
[51327] "role" "movie"
[51329] "Chak" "De"
[51331] "India" "Sjoerd"
[51333] "expressed" "gratitude"
[51335] "actor" "another"
[51337] "tweet" "Thank"
[51339] "support" "love"
[51341] "give" "everything"
[51343] "Real" "Coach"
[51345] "wrote" "Meanwhile"
[51347] "Shah" "Rukh"
[51349] "currently" "busy"
[51351] "upcoming" "project"
[51353] "Pathan" "also"
[51355] "features" "Deepika"
[51357] "Padukone" "John"
[51359] "Abraham" "film"
[51361] "mark" "Shah"
[51363] "Rukh's" "comeback"
[51365] "acting" "Fans"
[51367] "saw" "last"
[51369] "2018" "film"
[51371] "Zero" "directed"
[51373] "Aanand" "L"
[51375] "Rai" "Published"
[51377] "HT" "Digital"
[51379] "Content" "Services"
[51381] "permission" "Hindustan"
[51383] "Times" "query"
[51385] "respect" "article"
[51387] "content" "requirement"
[51389] "please" "contact"
[51391] "Editor" "Classification"
[51393] "Language" "ENGLISH"
[51395] "Publication-Type" "Newswire"
[51397] "Body" "Tokyo"
[51399] "Olympics" "athletes"
[51401] "delivered" "extreme"
[51403] "performances" "partly"
[51405] "attributed" "advanced"
[51407] "shoes" "well"
[51409] "high-tech" "track"
[51411] "ran" "Since"
[51413] "Rio" "Olympics"
[51415] "2016" "slew"
[51417] "world" "national"
[51419] "personal" "athletics"
[51421] "records" "broken"
[51423] "thanks" "described"
[51425] "super" "shoes"
[51427] "high-tech" "shoes"
[51429] "praised" "transforming"
[51431] "track" "field"
[51433] "events" "also"
[51435] "slammed" "purists"
[51437] "believe" "new"
[51439] "footwear" "ruined"
[51441] "athletics" "Even"
[51443] "Tokyo" "Olympics"
[51445] "2020" "athletes"
[51447] "delivered" "extreme"
[51449] "performances" "partly"
[51451] "attributed" "advanced"
[51453] "shoes" "well"
[51455] "high-tech" "track"
[51457] "ran" "Critics"
[51459] "however" "allege"
[51461] "using" "super"
[51463] "footwear" "first"
[51465] "developed" "American"
[51467] "multinational" "Nike"
[51469] "now" "adopted"
[51471] "several" "competitors"
[51473] "amounts" "technological"
[51475] "doping" "records"
[51477] "broken" "Tokyo"
[51479] "Olympics" "men's"
[51481] "400m" "hurdles"
[51483] "Norway's" "Gold-winning"
[51485] "Karsten" "Warholm"
[51487] "beat" "world"
[51489] "record" "set"
[51491] "last" "month"
[51493] "remarkable" "0.75"
[51495] "seconds" "USA's"
[51497] "Sydney" "McLaughlin"
[51499] "women's" "400m"
[51501] "hurdles" "even"
[51503] "Silver" "Medal"
[51505] "winners" "men's"
[51507] "women's" "races"
[51509] "broke" "previous"
[51511] "world" "record"
[51513] "Newsletter" "|"
[51515] "Click" "get"
[51517] "day's" "best"
[51519] "explainers" "inbox"
[51521] "Jamaica's" "Elaine"
[51523] "Thompson-Herah" "won"
[51525] "Gold" "100m"
[51527] "200m" "sprints"
[51529] "broke" "33-year-old"
[51531] "Olympic" "record"
[51533] "former" "clocked"
[51535] "second-best" "time"
[51537] "history" "latter"
[51539] "triple" "jump"
[51541] "Venezuela's" "Yulimar"
[51543] "Rojas" "won"
[51545] "Gold" "set"
[51547] "world" "record"
[51549] "Eliud" "Kipchoge"
[51551] "Ethiopia" "current"
[51553] "world" "record"
[51555] "holder" "marathon"
[51557] "running" "became"
[51559] "third" "person"
[51561] "history" "win"
[51563] "two" "successive"
[51565] "Olympic" "races"
[51567] "finishing" "Sunday"
[51569] "race" "two"
[51571] "hours" "eight"
[51573] "minutes" "38"
[51575] "seconds" "debate"
[51577] "technological" "doping"
[51579] "first" "triggered"
[51581] "Ethiopian" "athlete"
[51583] "performed" "astonishing"
[51585] "feat" "Vienna"
[51587] "2019" "running"
[51589] "marathon" "two"
[51591] "hours" "timing"
[51593] "however" "recognised"
[51595] "official" "marathon"
[51597] "world" "record"
[51599] "super" "shoes"
[51601] "2017" "Kipchoge"
[51603] "made" "first"
[51605] "attempt" "break"
[51607] "two-hour" "barrier"
[51609] "fell" "short"
[51611] "26" "seconds"
[51613] "Back" "believed"
[51615] "version" "shoe"
[51617] "wore" "given"
[51619] "advantage" "shoes"
[51621] "called" "Vaporfly"
[51623] "Elite" "Vaporfly"
[51625] "series" "shoes"
[51627] "Nike" "lab"
[51629] "tests" "shown"
[51631] "subsequently" "helps"
[51633] "athlete" "save"
[51635] "four" "per"
[51637] "cent" "energy"
[51639] "competitor" "wear"
[51641] "Two" "weeks"
[51643] "Kipchoge's" "feat"
[51645] "Vienna" "Ethiopian"
[51647] "great" "Kenesisa"
[51649] "Bekele" "another"
[51651] "runner" "used"
[51653] "Vaporfly" "came"
[51655] "within" "two"
[51657] "seconds" "former's"
[51659] "world" "record"
[51661] "day" "two-hour"
[51663] "barrier" "fell"
[51665] "Kenya's" "Brigid"
[51667] "Kosgei" "broke"
[51669] "16-year-old" "women's"
[51671] "record" "Chicago"
[51673] "marathon" "Later"
[51675] "track" "spikes"
[51677] "shoes" "spikes"
[51679] "underneath" "give"
[51681] "runners" "grip"
[51683] "also" "became"
[51685] "technologically" "advanced"
[51687] "marathon" "shoes"
[51689] "per" "report"
[51691] "New" "Scientist"
[51693] "per" "report"
[51695] "super" "shoes"
[51697] "super" "spikes"
[51699] "combine" "unique"
[51701] "foam" "rigid"
[51703] "carbon-fibre" "plate"
[51705] "Unlike" "traditional"
[51707] "spikes" "tried"
[51709] "lessen" "amount"
[51711] "midsole" "foam"
[51713] "order" "decrease"
[51715] "weight" "energy"
[51717] "absorption" "super"
[51719] "spikes" "better"
[51721] "foam" "able"
[51723] "return" "much"
[51725] "80" "90"
[51727] "per" "cent"
[51729] "energy" "athlete-"
[51731] "thus" "acting"
[51733] "like" "spring"
[51735] "every" "step"
[51737] "carbon-fibre" "plate"
[51739] "super" "footwear"
[51741] "believed" "allow"
[51743] "athletes" "effective"
[51745] "push-off" "World"
[51747] "Athletics" "governing"
[51749] "body" "track"
[51751] "field" "sports"
[51753] "approves" "super"
[51755] "shoes" "regulations"
[51757] "foam" "thickness"
[51759] "well" "parameters"
[51761] "per" "AFP"
[51763] "report" "Along"
[51765] "super" "shoes"
[51767] "track" "specifically"
[51769] "engineered" "Tokyo"
[51771] "athletes" "ran"
[51773] "also" "believed"
[51775] "increased" "speed"
[51777] "per" "New"
[51779] "Scientist" "track"
[51781] "whose" "surface"
[51783] "required" "three"
[51785] "years" "completed"
[51787] "tuned" "allow"
[51789] "shock" "absorption"
[51791] "energy" "return-"
[51793] "working" "like"
[51795] "foam" "super"
[51797] "spikes" "explains"
[51799] "technological" "doping"
[51801] "complaint" "technological"
[51803] "advancements" "shoes"
[51805] "welcomed" "many"
[51807] "transformative" "effect"
[51809] "track" "field"
[51811] "events" "others"
[51813] "less" "enthusiastic"
[51815] "athletics" "purists"
[51817] "insist" "running"
[51819] "involve" "human"
[51821] "effort" "combination"
[51823] "human" "effort"
[51825] "technology" "Essentially"
[51827] "assert" "athletes"
[51829] "rewarded" "endeavour"
[51831] "choice" "footwear"
[51833] "debate" "especially"
[51835] "charged" "comes"
[51837] "elite" "sports"
[51839] "even" "small"
[51841] "difference" "technology"
[51843] "can" "deciding"
[51845] "factor" "tight"
[51847] "races" "Critics"
[51849] "ask" "possible"
[51851] "accurately" "assess"
[51853] "athlete's" "individual"
[51855] "effort" "race"
[51857] "separating" "boost"
[51859] "received" "high"
[51861] "technology" "shoes"
[51863] "also" "remain"
[51865] "concerns" "high"
[51867] "cost" "super"
[51869] "shoes" "effectively"
[51871] "erase" "chances"
[51873] "poorer" "athletes"
[51875] "excelling" "track"
[51877] "field" "Classification"
[51879] "Language" "ENGLISH"
[51881] "Publication-Type" "Newspaper"
[51883] "Body" "India"
[51885] "July" "23"
[51887] "typically" "hot"
[51889] "summer" "day"
[51891] "Deepika" "Kumari"
[51893] "stood" "next"
[51895] "placard" "pronounced"
[51897] "world" "1"
[51899] "going" "absolutely"
[51901] "still" "took"
[51903] "aim" "inside"
[51905] "Yumenoshima" "Park"
[51907] "Archery" "Field"
[51909] "Friday" "reason"
[51911] "Kumari" "never"
[51913] "comfortable" "top"
[51915] "status" "OIympics"
[51917] "biggest" "stage"
[51919] "weighed" "past"
[51921] "wealth" "experience"
[51923] "really" "helped"
[51925] "Tokyo" "though"
[51927] "felt" "different"
[51929] "absence" "exuberant"
[51931] "fans" "stands"
[51933] "Kumari" "feels"
[51935] "advantage" "2012"
[51937] "London" "Olympics"
[51939] "teenager" "entered"
[51941] "world's" "best"
[51943] "recurve" "archer"
[51945] "Kumari" "lost"
[51947] "first" "round"
[51949] "Four" "years"
[51951] "Rio" "made"
[51953] "round" "16"
[51955] "reticent" "archer"
[51957] "Ranchi" "face"
[51959] "sport" "India"
[51961] "though" "faces"
[51963] "criticism" "delivering"
[51965] "Olympics" "Tokyo"
[51967] "began" "fresh"
[51969] "quest" "Olympic"
[51971] "medal" "individual"
[51973] "round" "placed"
[51975] "ninth" "score"
[51977] "663" "ranking"
[51979] "round" "72"
[51981] "arrows" "heat"
[51983] "high" "humidity"
[51985] "made" "life"
[51987] "difficult" "many"
[51989] "archers" "Russia's"
[51991] "Svetlana" "Gombeova"
[51993] "fainted" "attended"
[51995] "doctors" "field"
[51997] "day" "temperature"
[51999] "Tokyo" "expected"
[52001] "remain" "30"
[52003] "degrees" "Celsius"
[52005] "throughout" "Games"
[52007] "sun" "affect"
[52009] "Kumari" "though"
[52011] "candid" "different"
[52013] "kind" "heat"
[52015] "previous" "Games"
[52017] "different" "championships"
[52019] "pressure" "much"
[52021] "many" "expectations"
[52023] "said" "Coming"
[52025] "tribal" "belt"
[52027] "Ranchi" "Kumari"
[52029] "comfortable" "spotlight"
[52031] "run" "Tokyo"
[52033] "Games" "world"
[52035] "1" "tag"
[52037] "come" "Perhaps"
[52039] "subdued" "Tokyo"
[52041] "atmosphere" "may"
[52043] "prove" "perfect"
[52045] "temperament" "Asked"
[52047] "Kumari" "hesitates"
[52049] "acknowledging" "empty"
[52051] "seats" "may"
[52053] "needs" "different"
[52055] "challenges" "Olympics"
[52057] "many" "protocols"
[52059] "follow" "crowd"
[52061] "turn" "advantage"
[52063] "says" "recent"
[52065] "form" "performances"
[52067] "add" "confidence"
[52069] "27-year-old" "warmed"
[52071] "nicely" "Games"
[52073] "winning" "gold"
[52075] "Guatemala" "City"
[52077] "World" "Cup"
[52079] "careful" "though"
[52081] "get" "ahead"
[52083] "just" "thinking"
[52085] "taking" "one"
[52087] "step" "time"
[52089] "focus" "individual"
[52091] "rounds" "done"
[52093] "better" "shooting"
[52095] "confidence" "Kumari"
[52097] "working" "psychologist"
[52099] "get" "grip"
[52101] "nerves" "know"
[52103] "handle" "tough"
[52105] "situations" "match"
[52107] "remain" "calm"
[52109] "key" "time"
[52111] "better" "head"
[52113] "space" "husband"
[52115] "teammate" "Atanu"
[52117] "Das" "corner"
[52119] "couple" "hoping"
[52121] "paired" "mixed"
[52123] "team" "event"
[52125] "Das" "ended"
[52127] "second" "behind"
[52129] "Pravin" "Jadhav"
[52131] "among" "Indians"
[52133] "ranking" "round"
[52135] "Kumari" "thus"
[52137] "pair" "Jadhav"
[52139] "mixed" "team"
[52141] "competition" "Saturday"
[52143] "meet" "Chinese"
[52145] "Taipei" "first"
[52147] "round" "elimination"
[52149] "South" "Korean"
[52151] "women" "cut"
[52153] "rest" "world"
[52155] "archery" "cruised"
[52157] "setting" "world"
[52159] "records" "three"
[52161] "archers-An" "San"
[52163] "Jang" "Minhee"
[52165] "Kang" "Chaeyoung-who"
[52167] "come" "competition"
[52169] "first" "time"
[52171] "since" "pandemic"
[52173] "bettered" "Olympic"
[52175] "record" "673"
[52177] "San" "set"
[52179] "new" "mark"
[52181] "680" "points"
[52183] "South" "Korea's"
[52185] "combined" "team"
[52187] "total" "2032"
[52189] "also" "record"
[52191] "Published" "HT"
[52193] "Digital" "Content"
[52195] "Services" "permission"
[52197] "Hindustan" "Times"
[52199] "query" "respect"
[52201] "article" "content"
[52203] "requirement" "please"
[52205] "contact" "Editor"
[52207] "Classification" "Language"
[52209] "ENGLISH" "Publication-Type"
[52211] "Newswire" "Body"
[52213] "India" "July"
[52215] "31" "Tokyo"
[52217] "2020" "Olympics"
[52219] "going" "fans"
[52221] "found" "lookalike"
[52223] "singer" "Lady"
[52225] "Gaga" "event"
[52227] "Recently" "fans"
[52229] "took" "Twitter"
[52231] "found" "similarities"
[52233] "Lady" "Gaga"
[52235] "Julyana" "Al-Sadeq"
[52237] "Taekwondo" "athlete"
[52239] "Jordan" "Sharing"
[52241] "picture" "Lady"
[52243] "Gaga's" "doppelganger"
[52245] "Julyana" "Al-Sadeq"
[52247] "fan" "wrote"
[52249] "Lady" "Gaga"
[52251] "Olympics" "picture"
[52253] "Julyana" "snapped"
[52255] "mid-fight" "white"
[52257] "dobok" "chest"
[52259] "pad" "helmet"
[52261] "Another" "fan"
[52263] "wrote" "Singer"
[52265] "actress" "activist"
[52267] "now" "Olympian"
[52269] "Lady" "Gaga"
[52271] "really" "can"
[52273] "hundred" "people"
[52275] "olympics" "one"
[52277] "Lady" "Gaga"
[52279] "competing" "taekwondo"
[52281] "medal" "tweeted"
[52283] "user" "Another"
[52285] "wrote" "Lady"
[52287] "gaga" "said"
[52289] "f" "grammys"
[52291] "oscars" "want"
[52293] "gold" "olympic"
[52295] "medal" "now"
[52297] "Lady" "Gaga"
[52299] "seen" "next"
[52301] "House" "Gucci"
[52303] "along" "actor"
[52305] "Adam" "Driver"
[52307] "Friday" "MGM"
[52309] "dropped" "trailer"
[52311] "upcoming" "film"
[52313] "duo" "star"
[52315] "Mr" "Mrs"
[52317] "Gucci" "film"
[52319] "directed" "Ridley"
[52321] "Scott" "details"
[52323] "assassination" "Maurizio"
[52325] "Gucci" "played"
[52327] "Adam" "Driver"
[52329] "grandson" "renowned"
[52331] "fashion" "designer"
[52333] "Guccio" "Gucci"
[52335] "downfall" "Gucci"
[52337] "family" "fashion"
[52339] "dynasty" "House"
[52341] "Gucci" "based"
[52343] "Sara" "Gay"
[52345] "Forden's" "novel"
[52347] "House" "Gucci"
[52349] "Sensational" "Story"
[52351] "Murder" "Madness"
[52353] "Glamour" "Greed"
[52355] "cast" "also"
[52357] "includes" "Al"
[52359] "Pacino" "Jared"
[52361] "Leto" "Jeremy"
[52363] "Irons" "Filmed"
[52365] "Europe" "film"
[52367] "marks" "Lady"
[52369] "Gaga's" "first"
[52371] "film" "since"
[52373] "Star" "Born"
[52375] "earned" "Oscar"
[52377] "Golden" "Globe"
[52379] "nominations" "film"
[52381] "slated" "released"
[52383] "US" "November"
[52385] "24" "Lady"
[52387] "Gaga" "also"
[52389] "join" "Tony"
[52391] "Bennett" "pair"
[52393] "shows" "Radio"
[52395] "City" "Music"
[52397] "Hall" "August"
[52399] "billed" "final"
[52401] "appearances" "together"
[52403] "According" "Variety"
[52405] "One" "Last"
[52407] "Time" "Evening"
[52409] "Tony" "Bennett"
[52411] "Lady" "Gaga"
[52413] "shows" "take"
[52415] "place" "August"
[52417] "3" "5"
[52419] "Published" "HT"
[52421] "Digital" "Content"
[52423] "Services" "permission"
[52425] "Hindustan" "Times"
[52427] "query" "respect"
[52429] "article" "content"
[52431] "requirement" "please"
[52433] "contact" "Editor"
[52435] "Classification" "Language"
[52437] "ENGLISH" "Publication-Type"
[52439] "Newswire" "Body"
[52441] "India" "Aug"
[52443] "3" "country"
[52445] "watch" "bated"
[52447] "breath" "pride"
[52449] "Rani" "Rampal-led"
[52451] "team" "take"
[52453] "turf" "Women's"
[52455] "Hockey" "semi"
[52457] "finals" "match"
[52459] "Argentina" "tomorrow"
[52461] "ongoing" "Tokyo"
[52463] "Olympics" "Hopes"
[52465] "medal" "soared"
[52467] "higher" "ever"
[52469] "team" "beat"
[52471] "three-time" "champions"
[52473] "Australia" "quarter"
[52475] "finals" "match"
[52477] "today" "inch"
[52479] "closer" "historic"
[52481] "moment" "Bollywood"
[52483] "celebrities" "cheering"
[52485] "sending" "best"
[52487] "wishes" "match"
[52489] "Aparshakti" "Khurana"
[52491] "Indian" "Women"
[52493] "Hockey" "Team"
[52495] "made" "whole"
[52497] "country" "proud"
[52499] "historic" "entry"
[52501] "Semi" "Finals"
[52503] "best" "wishes"
[52505] "match" "Argentina"
[52507] "tomorrow" "Girls"
[52509] "win" "Indian"
[52511] "Women" "Hockey"
[52513] "Team" "win"
[52515] "Chakde" "Team"
[52517] "India" "Shruti"
[52519] "Haasan" "proud"
[52521] "incredible" "women"
[52523] "India" "wish"
[52525] "best" "eyes"
[52527] "already" "winners"
[52529] "Dia" "Mirza"
[52531] "proud" "Women's"
[52533] "Hockey" "Team"
[52535] "coming" "far"
[52537] "Olympics" "sincere"
[52539] "wish" "ladies"
[52541] "play" "best"
[52543] "game" "know"
[52545] "India" "cheering"
[52547] "proud" "Amyra"
[52549] "Dastur" "women"
[52551] "year" "proven"
[52553] "fearless" "inspired"
[52555] "many" "girls"
[52557] "India" "wish"
[52559] "Women's" "Hockey"
[52561] "Team" "best"
[52563] "wait" "watch"
[52565] "performance" "course"
[52567] "want" "gold"
[52569] "brought" "back"
[52571] "home" "Sonu"
[52573] "Nigam" "love"
[52575] "Hockey" "majorly"
[52577] "paternal" "grandfather"
[52579] "belonged" "Dhyanchand"
[52581] "generation" "revered"
[52583] "Hockey" "India"
[52585] "blessings" "best"
[52587] "wishes" "Indian"
[52589] "Hockey" "team"
[52591] "match" "Argentina"
[52593] "Shilpa" "Rao"
[52595] "best" "wishes"
[52597] "great" "vibes"
[52599] "making" "us"
[52601] "proud" "Indians"
[52603] "every" "single"
[52605] "day" "going"
[52607] "cheering" "house"
[52609] "Super" "proud"
[52611] "representing" "us"
[52613] "Olympics" "power"
[52615] "Angad" "Bedi"
[52617] "Fateh" "kar"
[52619] "ke" "aana"
[52621] "nation" "proud"
[52623] "one" "gold"
[52625] "silver" "bronze"
[52627] "respect" "already"
[52629] "earned" "representing"
[52631] "country" "biggest"
[52633] "honour" "ever"
[52635] "Jai" "Hind"
[52637] "Jubin" "Nautiyal"
[52639] "Women's" "Hockey"
[52641] "team" "created"
[52643] "history" "qualifying"
[52645] "semi-finals" "Olympic"
[52647] "games" "wish"
[52649] "team" "play"
[52651] "hard" "enjoy"
[52653] "game" "together"
[52655] "nation" "love"
[52657] "best" "wishes"
[52659] "love" "Neha"
[52661] "Dhupia" "big"
[52663] "shout" "Indian"
[52665] "Women's" "Hockey"
[52667] "team" "huge"
[52669] "fan" "sport"
[52671] "following" "Olympics"
[52673] "closely" "seeing"
[52675] "amazing" "women"
[52677] "well" "still"
[52679] "stand" "chance"
[52681] "Men's" "Hockey"
[52683] "team" "well"
[52685] "best" "far"
[52687] "women" "concerned"
[52689] "yeah" "go"
[52691] "gold" "go"
[52693] "glory" "whatever"
[52695] "takes" "just"
[52697] "telling" "feel"
[52699] "positive" "gonna"
[52701] "bring" "back"
[52703] "home" "lot"
[52705] "Shaan" "thrilled"
[52707] "learn" "India"
[52709] "become" "country"
[52711] "reach" "final"
[52713] "four" "Men's"
[52715] "Women's" "Olympic"
[52717] "Hockey" "Competitions"
[52719] "men" "still"
[52721] "chance" "bringing"
[52723] "us" "Bronze"
[52725] "keep" "fingers"
[52727] "crossed" "Women'sTeam"
[52729] "go" "two"
[52731] "steps" "#GirlPower"
[52733] "#IndiaPower" "Nimrat"
[52735] "Kaur" "Wishing"
[52737] "trailblazers" "tremendous"
[52739] "luck" "may"
[52741] "sky" "limit"
[52743] "Published" "HT"
[52745] "Digital" "Content"
[52747] "Services" "permission"
[52749] "Hindustan" "Times"
[52751] "query" "respect"
[52753] "article" "content"
[52755] "requirement" "please"
[52757] "contact" "Editor"
[52759] "Classification" "Language"
[52761] "ENGLISH" "Publication-Type"
[52763] "Newswire" "Body"
[52765] "Mumbai" "Germans"
[52767] "hit" "Storm"
[52769] "India" "Japan"
[52771] "celebrations" "started"
[52773] "billions" "people"
[52775] "back" "home"
[52777] "India" "vs"
[52779] "Germany" "hockey"
[52781] "contest" "usual"
[52783] "fierce" "nine"
[52785] "goals" "scored"
[52787] "60-minute" "ordeal"
[52789] "Words" "describe"
[52791] "way" "boys"
[52793] "went" "task"
[52795] "former" "Indian"
[52797] "skipper" "Dhanraj"
[52799] "Pillay" "told"
[52801] "FPJ" "feeling"
[52803] "sure" "every"
[52805] "Indian" "feels"
[52807] "boys" "Pillay"
[52809] "represented" "country"
[52811] "four" "Olympics"
[52813] "said" "Manpreet"
[52815] "boys" "including"
[52817] "support" "staff"
[52819] "done" "teammates"
[52821] "Hats" "Pillay"
[52823] "said" "sure"
[52825] "hockey" "find"
[52827] "special" "place"
[52829] "country" "thank"
[52831] "team" "support"
[52833] "staff" "everyone"
[52835] "made" "happen"
[52837] "said" "Dhanraj"
[52839] "led" "team"
[52841] "victory" "Asian"
[52843] "Games" "1998"
[52845] "always" "regret"
[52847] "win" "Olympic"
[52849] "medal" "used"
[52851] "wonder" "whether"
[52853] "able" "see"
[52855] "India" "Olympic"
[52857] "podium" "hockey"
[52859] "Now" "historic"
[52861] "win" "regrets"
[52863] "said" "all-time"
[52865] "great" "Pillay"
[52867] "said" "team"
[52869] "goes" "Olympics"
[52871] "win" "medal"
[52873] "morale" "broken"
[52875] "end" "playing"
[52877] "classification" "matches"
[52879] "Former" "international"
[52881] "MM" "Somaya"
[52883] "agreed" "Pillay"
[52885] "amazing" "sure"
[52887] "hard" "work"
[52889] "boys" "support"
[52891] "staff" "said"
[52893] "Somaya" "member"
[52895] "gold-winning" "team"
[52897] "1980" "Moscow"
[52899] "Olympics" "boys"
[52901] "example" "never-give-up"
[52903] "attitude" "despite"
[52905] "defeats" "went"
[52907] "low" "high"
[52909] "resilience" "proved"
[52911] "anybody" "emerges"
[52913] "victorious" "one"
[52915] "puts" "one's"
[52917] "mind" "task"
[52919] "best" "Coming"
[52921] "back" "1-3"
[52923] "win" "match"
[52925] "side" "like"
[52927] "Germans" "remarkable"
[52929] "said" "Somaya"
[52931] "Refusing" "compare"
[52933] "1980" "side"
[52935] "current" "one"
[52937] "Somaya" "said"
[52939] "compare" "different"
[52941] "format" "Many"
[52943] "countries" "boycotted"
[52945] "Games" "Germans"
[52947] "Former" "India"
[52949] "captain" "Joaquim"
[52951] "Carvalho" "recalled"
[52953] "game" "Germans"
[52955] "Champions" "final"
[52957] "leading" "5-4"
[52959] "conceded" "penalty"
[52961] "Thursday" "repeat"
[52963] "Sreejesh" "defence"
[52965] "held" "nerves"
[52967] "said" "Classification"
[52969] "Language" "ENGLISH"
[52971] "Publication-Type" "Newspaper"
[52973] "Body" "New"
[52975] "Delhi" "July"
[52977] "22" "Wrestling"
[52979] "strong" "suit"
[52981] "India" "Olympics"
[52983] "grapplers" "brought"
[52985] "home" "medals"
[52987] "past" "three"
[52989] "editions" "nobody"
[52991] "managed" "win"
[52993] "gold" "medal"
[52995] "however" "change"
[52997] "upcoming" "Tokyo"
[52999] "Olympics" "according"
[53001] "Sakshi" "Malik"
[53003] "believes" "India"
[53005] "win" "least"
[53007] "four" "medals"
[53009] "event" "2016"
[53011] "Rio" "Olympics"
[53013] "Malik" "clinched"
[53015] "bronze" "became"
[53017] "first" "Indian"
[53019] "female" "wrestler"
[53021] "win" "Olympic"
[53023] "medal" "assessing"
[53025] "star-studded" "seven-member"
[53027] "wrestling" "contingent"
[53029] "Tokyo" "Games"
[53031] "sounded" "confident"
[53033] "compatriots" "putting"
[53035] "medal-winning" "performances"
[53037] "particular" "pinned"
[53039] "massive" "hopes"
[53041] "world" "1"
[53043] "Vinesh" "Phogat"
[53045] "second-seeds" "Bajrang"
[53047] "Punia" "Ravi"
[53049] "Kumar" "Dahiya"
[53051] "strongest" "contingent"
[53053] "yet" "expect"
[53055] "win" "least"
[53057] "four" "medals"
[53059] "Malik" "said"
[53061] "press" "conference"
[53063] "attended" "select"
[53065] "media" "added"
[53067] "Names" "definitely"
[53069] "get" "us"
[53071] "medal" "Vinesh"
[53073] "Bajrang" "Ravi"
[53075] "Anshu" "Malik"
[53077] "three" "juniors"
[53079] "well" "can"
[53081] "win" "us"
[53083] "medals" "Phogat"
[53085] "appearing" "second"
[53087] "Olympics" "debut"
[53089] "appearance" "Rio"
[53091] "suffered" "potentially"
[53093] "career-ending" "injury"
[53095] "crashed" "quarterfinals"
[53097] "bout" "grappler"
[53099] "fought" "hard"
[53101] "earn" "way"
[53103] "back" "top"
[53105] "Malik" "remarked"
[53107] "able" "deal"
[53109] "pressure" "go"
[53111] "way" "Vinesh"
[53113] "Phogat" "strong"
[53115] "world" "1"
[53117] "win" "medal"
[53119] "year" "continues"
[53121] "well" "contender"
[53123] "next" "time"
[53125] "around" "well"
[53127] "lot" "experience"
[53129] "can" "tell"
[53131] "best" "Last"
[53133] "time" "win"
[53135] "medal" "came"
[53137] "even" "cried"
[53139] "worked" "hard"
[53141] "time" "arrived"
[53143] "now" "win"
[53145] "medal" "country"
[53147] "sure" "revealed"
[53149] "Malik" "part"
[53151] "Sony" "Sports"
[53153] "live" "studio"
[53155] "show" "Sports"
[53157] "Extraaa" "Olympics"
[53159] "Malik" "failed"
[53161] "make" "cut"
[53163] "time" "around"
[53165] "determined" "work"
[53167] "shortcomings" "make"
[53169] "strong" "comeback"
[53171] "also" "added"
[53173] "ups" "downs"
[53175] "part" "parcel"
[53177] "athlete's" "life"
[53179] "important" "bounce"
[53181] "back" "ups"
[53183] "downs" "every"
[53185] "athlete's" "life"
[53187] "work" "like"
[53189] "machines" "Talking"
[53191] "shortcomings" "whatever"
[53193] "matches" "lost"
[53195] "lost" "last"
[53197] "5-10" "seconds"
[53199] "work" "overcome"
[53201] "issue" "future"
[53203] "commented" "concluding"
[53205] "28-year-old" "advised"
[53207] "wrestlers" "worry"
[53209] "come" "pressure"
[53211] "urged" "overcome"
[53213] "give" "best"
[53215] "Watch" "Olympic"
[53217] "Games" "Sony"
[53219] "TEN" "2"
[53221] "Sony" "SIX"
[53223] "channels" "English"
[53225] "SONY" "TEN"
[53227] "4" "channels"
[53229] "Tamil" "Telugu"
[53231] "Published" "HT"
[53233] "Digital" "Content"
[53235] "Services" "permission"
[53237] "Hindustan" "Times"
[53239] "query" "respect"
[53241] "article" "content"
[53243] "requirement" "please"
[53245] "contact" "Editor"
[53247] "Classification" "Language"
[53249] "ENGLISH" "Publication-Type"
[53251] "Newswire" "Body"
[53253] "Mumbai" "said"
[53255] "person" "needs"
[53257] "just" "three"
[53259] "things" "truly"
[53261] "happy" "world"
[53263] "someone" "love"
[53265] "something" "something"
[53267] "hope" "Indians"
[53269] "last" "Indian"
[53271] "athletes" "campaign"
[53273] "Tokyo" "Games"
[53275] "left" "140"
[53277] "crore" "people"
[53279] "living" "hope"
[53281] "medals" "biggest"
[53283] "sports" "extravaganza"
[53285] "globe" "India's"
[53287] "success" "Olympics"
[53289] "winning" "medals"
[53291] "people" "cheering"
[53293] "rooting" "athletes"
[53295] "slowly" "drifting"
[53297] "away" "best"
[53299] "bets" "shooting"
[53301] "archery" "boxing"
[53303] "vanishing" "wilderness"
[53305] "kind" "things"
[53307] "working" "negatively"
[53309] "country" "population"
[53311] "140" "crore"
[53313] "FPJ" "spoke"
[53315] "former" "medal"
[53317] "winner" "know"
[53319] "drought" "medals"
[53321] "know" "going"
[53323] "wrong" "2012"
[53325] "London" "Games"
[53327] "10m" "pistol"
[53329] "shooter" "Gagan"
[53331] "Narang" "say"
[53333] "Yes" "initial"
[53335] "days" "let"
[53337] "us" "hope"
[53339] "win" "medals"
[53341] "days" "come"
[53343] "positive" "note"
[53345] "Hyderabadi" "shooter"
[53347] "hopes" "One"
[53349] "wonders" "whether"
[53351] "chaotic" "run-up"
[53353] "Olympics" "due"
[53355] "pandemic" "one"
[53357] "reasons" "expert"
[53359] "feels" "positive"
[53361] "notion" "goes"
[53363] "say" "done"
[53365] "well" "international"
[53367] "events" "prior"
[53369] "Games" "good"
[53371] "sign" "two"
[53373] "Indian" "pairs"
[53375] "participating" "10m"
[53377] "air" "rifle"
[53379] "mixed" "team"
[53381] "event" "crashed"
[53383] "first" "qualification"
[53385] "stage" "missing"
[53387] "yet" "another"
[53389] "final" "outing"
[53391] "left" "lot"
[53393] "desired" "Tokyo"
[53395] "Games" "duo"
[53397] "Elavenil" "Valarivan"
[53399] "Divyansh" "Singh"
[53401] "Panwar" "finished"
[53403] "12th" "total"
[53405] "626.5" "across"
[53407] "three" "series"
[53409] "Anjum" "Moudgil"
[53411] "Deepak" "Kumar"
[53413] "ended" "18th"
[53415] "29" "pairs"
[53417] "aggregate" "score"
[53419] "623.8" "Asaka"
[53421] "Range" "mixed"
[53423] "events" "making"
[53425] "Olympic" "debut"
[53427] "pair" "Saurabh"
[53429] "Chaudhary" "Manu"
[53431] "Bhaker" "10m"
[53433] "air" "pistol"
[53435] "mixed" "team"
[53437] "event" "duo"
[53439] "finished" "seventh"
[53441] "Qualification" "II"
[53443] "topping" "first"
[53445] "phase" "582"
[53447] "Asaka" "Range"
[53449] "lost" "plot"
[53451] "completely" "top"
[53453] "eight" "teams"
[53455] "battled" "second"
[53457] "phase" "duo"
[53459] "totalled" "380"
[53461] "across" "two"
[53463] "series" "second"
[53465] "phase" "qualification"
[53467] "However" "every"
[53469] "Indian" "high"
[53471] "hopes" "shooters"
[53473] "win" "medals"
[53475] "Narang" "says"
[53477] "hope" "best"
[53479] "days" "come"
[53481] "Indian" "boxer"
[53483] "Lovlina" "Borgohain"
[53485] "69kg" "entered"
[53487] "quarter-finals" "Olympic"
[53489] "Games" "defeating"
[53491] "Germany's" "Nadine"
[53493] "Apetz" "3-2"
[53495] "Indian" "men's"
[53497] "hockey" "overcoming"
[53499] "demoralising" "defeat"
[53501] "previous" "match"
[53503] "cruise" "past"
[53505] "Spain" "3-0"
[53507] "register" "second"
[53509] "win" "leaves"
[53511] "Indians" "losing"
[53513] "hope" "Classification"
[53515] "Language" "ENGLISH"
[53517] "Publication-Type" "Newspaper"
[53519] "Body" "India"
[53521] "July" "23"
[53523] "Tennis" "star"
[53525] "Sania" "Mirza"
[53527] "set" "compete"
[53529] "Olympic" "Games"
[53531] "fourth" "time"
[53533] "becoming" "second"
[53535] "Indian" "woman"
[53537] "greater" "accomplishment"
[53539] "comes" "greater"
[53541] "responsibility" "Mirza"
[53543] "left" "Monday"
[53545] "much-delayed" "tournament"
[53547] "Japan" "representing"
[53549] "India" "Ankita"
[53551] "Raina" "Women's"
[53553] "Doubles" "Tennis"
[53555] "Tokyo" "Olympics"
[53557] "kicks" "today"
[53559] "Ankita" "playing"
[53561] "first" "time"
[53563] "best" "players"
[53565] "world" "big"
[53567] "stage" "fighter"
[53569] "understands" "need"
[53571] "punch" "way"
[53573] "beyond" "weight"
[53575] "make" "mark"
[53577] "odds" "Tokyo"
[53579] "says" "Mirza"
[53581] "34" "stint"
[53583] "Olympics" "year"
[53585] "special" "joining"
[53587] "games" "first"
[53589] "time" "becoming"
[53591] "mother" "always"
[53593] "wanted" "carry"
[53595] "professional" "dream"
[53597] "even" "marriage"
[53599] "birth" "son"
[53601] "Izhaan" "happy"
[53603] "proud" "able"
[53605] "live" "dream"
[53607] "gushes" "Mirza"
[53609] "delivered" "first"
[53611] "child" "October"
[53613] "2018" "Last"
[53615] "year" "Covid-19"
[53617] "outbreak" "bringing"
[53619] "world" "halt"
[53621] "Tokyo" "Olympics"
[53623] "also" "postponed"
[53625] "much" "disappointment"
[53627] "many" "case"
[53629] "Mirza" "well"
[53631] "spent" "time"
[53633] "working" "getting"
[53635] "better" "working"
[53637] "game" "fitness"
[53639] "Dubai" "last"
[53641] "months" "also"
[53643] "got" "play"
[53645] "tournaments" "including"
[53647] "Wimbledon" "although"
[53649] "admittedly" "would've"
[53651] "liked" "played"
[53653] "matches" "one"
[53655] "accept" "situation"
[53657] "try" "one's"
[53659] "best" "given"
[53661] "circumstances" "far"
[53663] "ideal" "Mirza"
[53665] "got" "married"
[53667] "Pakistani" "cricketer"
[53669] "husband" "Shoaib"
[53671] "Malik" "2010"
[53673] "concludes" "message"
[53675] "want" "achieve"
[53677] "ready" "sacrifice"
[53679] "also" "need"
[53681] "support" "husband"
[53683] "family" "order"
[53685] "pursue" "dreams"
[53687] "signs" "Published"
[53689] "HT" "Digital"
[53691] "Content" "Services"
[53693] "permission" "Hindustan"
[53695] "Times" "query"
[53697] "respect" "article"
[53699] "content" "requirement"
[53701] "please" "contact"
[53703] "Editor" "Classification"
[53705] "Language" "ENGLISH"
[53707] "Publication-Type" "Newswire"
[53709] "Body" "New"
[53711] "Delhi" "Aug"
[53713] "5" "Indian"
[53715] "men's" "hockey"
[53717] "team" "today"
[53719] "displayed" "great"
[53721] "game" "counter-attacking"
[53723] "play" "won"
[53725] "defeated" "Germany"
[53727] "5-4" "bronze"
[53729] "medal" "play-offs"
[53731] "Tokyo" "Olympics"
[53733] "today" "Indian"
[53735] "men's" "hockey"
[53737] "team" "won"
[53739] "Olympic" "medal"
[53741] "gap" "41"
[53743] "years" "India's"
[53745] "last" "eight"
[53747] "Olympic" "golds"
[53749] "came" "way"
[53751] "back" "1980"
[53753] "Moscow" "Games"
[53755] "eight-time" "former"
[53757] "gold-winners" "battled"
[53759] "heartbreaking" "slump"
[53761] "last" "four"
[53763] "decades" "made"
[53765] "resurgence" "last"
[53767] "couple" "years"
[53769] "count" "best"
[53771] "way" "possible"
[53773] "Olympic" "medal"
[53775] "India" "came"
[53777] "back" "two-goal"
[53779] "deficit" "take"
[53781] "two-goal" "lead"
[53783] "end" "third"
[53785] "quarter" "Germany"
[53787] "reduced" "deficit"
[53789] "q4" "scored"
[53791] "goal" "penalty"
[53793] "corner" "Earlier"
[53795] "half-time" "Team"
[53797] "India" "were1-3"
[53799] "equalising" "3-3"
[53801] "level" "half-time"
[53803] "break" "Goalscorers"
[53805] "India" "Simranjeet"
[53807] "Singh" "17th"
[53809] "34th" "minutes"
[53811] "scored" "brace"
[53813] "Hardik" "Singh"
[53815] "27th" "Harmanpreet"
[53817] "Singh" "29th"
[53819] "Rupinder" "Pal"
[53821] "Singh" "31st"
[53823] "goal" "getters"
[53825] "India" "Germany's"
[53827] "goals" "scored"
[53829] "Timur" "Oruz"
[53831] "2nd" "Niklas"
[53833] "Wellen" "24th"
[53835] "Benedikt" "Furk"
[53837] "25th" "Lukas"
[53839] "Windfeder" "48th"
[53841] "tears" "hugs"
[53843] "field" "Indians"
[53845] "led" "Manpreet"
[53847] "Singh" "coached"
[53849] "Australian" "Graham"
[53851] "Reid" "savoured"
[53853] "historic" "moment"
[53855] "India's" "third"
[53857] "hockey" "bronze"
[53859] "medal" "history"
[53861] "Olympics" "two"
[53863] "came" "1968"
[53865] "Mexico" "City"
[53867] "1972" "Munich"
[53869] "Games" "think"
[53871] "just" "forget"
[53873] "happened" "semi-final"
[53875] "just" "put"
[53877] "focus" "energy"
[53879] "game" "Germany"
[53881] "team" "experience"
[53883] "playing" "recent"
[53885] "times" "ready"
[53887] "challenge" "said"
[53889] "Manpreet" "Singh"
[53891] "eve" "bronze"
[53893] "medal" "play-off"
[53895] "match" "stated"
[53897] "entire" "country's"
[53899] "support" "even"
[53901] "Hono'ble" "Prime"
[53903] "Minister" "call"
[53905] "us" "wish"
[53907] "us" "semi-final"
[53909] "loss" "asked"
[53911] "us" "feel"
[53913] "disappointed" "just"
[53915] "look" "forward"
[53917] "playing" "well"
[53919] "Thursday" "plan"
[53921] "pumped" "game"
[53923] "Published" "HT"
[53925] "Digital" "Content"
[53927] "Services" "permission"
[53929] "MINT" "query"
[53931] "respect" "article"
[53933] "content" "requirement"
[53935] "please" "contact"
[53937] "Editor" "Classification"
[53939] "Language" "ENGLISH"
[53941] "Publication-Type" "Newspaper"
[53943] "Body" "India"
[53945] "Thursday" "scripted"
[53947] "history" "Indian"
[53949] "men's" "hockey"
[53951] "team" "securing"
[53953] "bronze" "medal"
[53955] "Tokyo" "Olympics"
[53957] "2020" "last"
[53959] "hours" "congratulations"
[53961] "poured" "quarters"
[53963] "Prime" "Minister"
[53965] "Odisha" "Chief"
[53967] "Minister" "Naveen"
[53969] "Patnaik" "interacted"
[53971] "separately" "winning"
[53973] "team" "Speaking"
[53975] "team" "via"
[53977] "telephone" "Patnaik"
[53979] "congratulated" "team"
[53981] "historic" "win"
[53983] "wishing" "best"
[53985] "future" "Many"
[53987] "congratulations" "hockey"
[53989] "team" "whole"
[53991] "India" "excited"
[53993] "well" "Odisha"
[53995] "course" "behind"
[53997] "wish" "best"
[53999] "looking" "forward"
[54001] "receiving" "Indian"
[54003] "Olympics" "hockey"
[54005] "team" "Bhubaneswar"
[54007] "August" "16"
[54009] "quoted" "saying"
[54011] "video" "Odisha"
[54013] "CM" "virtually"
[54015] "interacting" "players"
[54017] "made" "rounds"
[54019] "social" "media"
[54021] "many" "pointed"
[54023] "contributions" "Indian"
[54025] "hockey" "go"
[54027] "much" "beyond"
[54029] "Odisha" "government"
[54031] "presently" "sponsor"
[54033] "Indian" "hockey"
[54035] "teams" "taken"
[54037] "role" "Sahara"
[54039] "February" "2018"
[54041] "name" "state"
[54043] "adorns" "players"
[54045] "jerseys" "reportedly"
[54047] "deal" "estimated"
[54049] "around" "Rs"
[54051] "150" "crore"
[54053] "last" "years"
[54055] "state" "also"
[54057] "partnered" "Hockey"
[54059] "India" "conduct"
[54061] "major" "hockey"
[54063] "tournaments" "Bhubaneswar"
[54065] "including" "Men's"
[54067] "World" "Cup"
[54069] "World" "League"
[54071] "Pro-League" "Olympic"
[54073] "qualifiers" "etc"
[54075] "state" "sponsor"
[54077] "national" "team"
[54079] "Odisha" "also"
[54081] "several" "hockey"
[54083] "players" "part"
[54085] "Olympic" "men"
[54087] "women's" "squads"
[54089] "Classification" "Language"
[54091] "ENGLISH" "Publication-Type"
[54093] "Newspaper" "Body"
[54095] "New" "Delhi"
[54097] "July" "23"
[54099] "Opening" "Ceremony"
[54101] "2020" "Tokyo"
[54103] "Olympics" "Prime"
[54105] "Minister" "Narendra"
[54107] "Modi" "caught"
[54109] "glimpses" "six-time"
[54111] "world" "champion"
[54113] "Mary" "Kom"
[54115] "men's" "hockey"
[54117] "captain" "Manpreet"
[54119] "Singh" "led"
[54121] "India's" "charge"
[54123] "PM" "Narendra"
[54125] "Modi" "wished"
[54127] "dynamic" "Indian"
[54129] "contingent" "best"
[54131] "athletes" "gear"
[54133] "showcase" "skills"
[54135] "ongoing" "Summer"
[54137] "Games" "Taking"
[54139] "Twitter" "PM"
[54141] "Modi" "wrote"
[54143] "Come" "let"
[54145] "us" "#Cheer4India"
[54147] "Caught" "glimpses"
[54149] "@Tokyo2020" "Opening"
[54151] "Ceremony" "Wishing"
[54153] "dynamic" "contingent"
[54155] "best" "#Tokyo2020"
[54157] "Come" "let"
[54159] "us" "#Cheer4India"
[54161] "Caught" "glimpses"
[54163] "@Tokyo2020" "Opening"
[54165] "Ceremony" "Wishing"
[54167] "dynamic" "contingent"
[54169] "best" "#Tokyo2020"
[54171] "pic.twitter.com" "iYqrrhTgk0"
[54173] "Narendra" "Modi"
[54175] "@narendramodi" "July"
[54177] "23" "2021"
[54179] "Minister" "Law"
[54181] "Justice" "Kiren"
[54183] "Rijiju" "said"
[54185] "PM" "Modi"
[54187] "leading" "front"
[54189] "encouraging" "athletes"
[54191] "Prime" "Minister"
[54193] "@narendramodi" "Ji"
[54195] "leading" "front"
[54197] "cheer" "Indian"
[54199] "Olympic" "Contingent"
[54201] "Opening" "Ceremony"
[54203] "#Tokyo2020" "#Cheer4India"
[54205] "Rijiju" "tweeted"
[54207] "Sports" "Minister"
[54209] "Anurag" "Thakur"
[54211] "termed" "opening"
[54213] "ceremony" "moment"
[54215] "pride" "moment"
[54217] "pride" "immense"
[54219] "honour" "@MangteC"
[54221] "@manpreetpawar07lead" "#TeamIndia"
[54223] "official" "flag"
[54225] "bearers" "#Tokyo2020"
[54227] "Olympic" "Games"
[54229] "Anurag" "tweeted"
[54231] "Mary" "Kom"
[54233] "Manpreet" "led"
[54235] "way" "India"
[54237] "made" "way"
[54239] "Parade" "Nations"
[54241] "Opening" "Ceremony"
[54243] "Tokyo" "Olympics"
[54245] "Friday" "Japan"
[54247] "National" "Stadium"
[54249] "Back" "home"
[54251] "Union" "Minister"
[54253] "Youth" "Affairs"
[54255] "Sports" "Anurag"
[54257] "Thakur" "also"
[54259] "seen" "waving"
[54261] "Indian" "flag"
[54263] "Indian" "contingent"
[54265] "made" "way"
[54267] "stadium" "Twenty-five"
[54269] "members" "Indian"
[54271] "contingent" "attended"
[54273] "Opening" "Ceremony"
[54275] "amid" "COVID-19"
[54277] "concerns" "Japanese"
[54279] "capital" "Ankita"
[54281] "Raina" "added"
[54283] "list" "players"
[54285] "attended" "event"
[54287] "Friday" "evening"
[54289] "Manika" "Batra"
[54291] "Sharath" "Kamal"
[54293] "Table" "Tennis"
[54295] "team" "attend"
[54297] "Ceremony" "Amit"
[54299] "Ashish" "Kumar"
[54301] "Mary" "Kom"
[54303] "among" "eight"
[54305] "boxers" "present"
[54307] "function" "along"
[54309] "six" "Indian"
[54311] "officials" "much"
[54313] "debate" "fate"
[54315] "Tokyo" "Olympics"
[54317] "thanks" "COVID-19"
[54319] "situation" "Games"
[54321] "finally" "declared"
[54323] "open" "Friday"
[54325] "fireworks" "kickstarted"
[54327] "Opening" "Ceremony"
[54329] "Japan" "National"
[54331] "Stadium" "emergence"
[54333] "COVID-19" "many"
[54335] "athletes" "train"
[54337] "showpiece" "event"
[54339] "isolation" "highlight"
[54341] "Opening" "Ceremony"
[54343] "performers" "showed"
[54345] "connected" "hope"
[54347] "shared" "passion"
[54349] "fireworks" "lighting"
[54351] "show" "International"
[54353] "Olympic" "Committee"
[54355] "President" "Thomas"
[54357] "Bach" "welcomed"
[54359] "stage" "IOC"
[54361] "decided" "six"
[54363] "officials" "allowed"
[54365] "per" "contingent"
[54367] "agency" "inputs"
[54369] "Published" "HT"
[54371] "Digital" "Content"
[54373] "Services" "permission"
[54375] "MINT" "query"
[54377] "respect" "article"
[54379] "content" "requirement"
[54381] "please" "contact"
[54383] "Editor" "Classification"
[54385] "Language" "ENGLISH"
[54387] "Publication-Type" "Newspaper"
[54389] "Body" "Bollywood"
[54391] "stars" "Kareena"
[54393] "Kapoor" "Khan"
[54395] "Taapse" "Pannu"
[54397] "Randeep" "Hooda"
[54399] "Suinel" "Shetty"
[54401] "others" "congratulated"
[54403] "Indian" "wrestler"
[54405] "Ravi" "Kumar"
[54407] "Dahiya" "bagging"
[54409] "silver" "men's"
[54411] "57" "kg"
[54413] "freestyle" "wrestling"
[54415] "ongoing" "Tokyo"
[54417] "Olympics" "Ravi"
[54419] "Kumar" "won"
[54421] "silver" "losing"
[54423] "4-7" "Zavur"
[54425] "Uguev" "Russian"
[54427] "Olympic" "Committee"
[54429] "ROC" "final"
[54431] "Thursday" "became"
[54433] "second" "Indian"
[54435] "wrestler" "win"
[54437] "silver" "medal"
[54439] "Olympic" "Games"
[54441] "Kareena" "took"
[54443] "Instagram" "handle"
[54445] "congratulate" "wrestler"
[54447] "Indian" "grappler"
[54449] "endure" "semi-final"
[54451] "opponent's" "unsportsmanlike"
[54453] "attitude" "final"
[54455] "minute" "game"
[54457] "Dahiya" "trailing"
[54459] "5-9" "Kazakhstan's"
[54461] "Nurislam" "Sanayev"
[54463] "seen" "biting"
[54465] "Indian" "arm"
[54467] "Indian" "grappler"
[54469] "pinned" "Actor"
[54471] "Suniel" "Shetty"
[54473] "took" "notice"
[54475] "moment" "tweeted"
[54477] "see" "true"
[54479] "already" "won"
[54481] "gold" "hearts"
[54483] "true" "symbol"
[54485] "Indian" "Sporting"
[54487] "Spirit" "#RaviKumarDahiya"
[54489] "proud" "Taapsee"
[54491] "Pannu" "tweeted"
[54493] "silver" "Ravi"
[54495] "Dahiya" "Kasuta"
[54497] "ladya" "bhai"
[54499] "Ravi" "Dahiya"
[54501] "#Olympics" "#Silver"
[54503] "#RaviKumarDahiya" "#Wrestling"
[54505] "#ravidhaiya" "tweeted"
[54507] "Hooda" "Another"
[54509] "one" "coming"
[54511] "home" "Congratulations"
[54513] "Silver" "wrote"
[54515] "Anil" "Kapoor"
[54517] "Classification" "Language"
[54519] "ENGLISH" "Publication-Type"
[54521] "Newspaper" "Body"
[54523] "India" "Aug"
[54525] "6" "India"
[54527] "women's" "hockey"
[54529] "team" "narrowly"
[54531] "missed" "winning"
[54533] "bronze" "medal"
[54535] "ongoing" "Olympics"
[54537] "Tokyo" "Despite"
[54539] "putting" "lionhearted"
[54541] "fight" "2016"
[54543] "Olympic" "Champions"
[54545] "Great" "Britain"
[54547] "Friday" "Indian"
[54549] "team" "came"
[54551] "short" "3-4"
[54553] "pulsating" "encounter"
[54555] "Later" "day"
[54557] "India's" "Prime"
[54559] "Minister" "Narendra"
[54561] "Modi" "rang"
[54563] "Indian" "team"
[54565] "speak" "congratulate"
[54567] "stellar" "effort"
[54569] "players" "team"
[54571] "stood" "circled"
[54573] "phone" "captain"
[54575] "spoke" "PM"
[54577] "speaker" "mode"
[54579] "Numerous" "players"
[54581] "including" "goalkeeper"
[54583] "Savita" "hold"
[54585] "back" "tears"
[54587] "hearing" "words"
[54589] "encouragement" "PM"
[54591] "Full" "Tokyo"
[54593] "2020" "Coverage"
[54595] "sweat" "become"
[54597] "inspiration" "crores"
[54599] "women" "country"
[54601] "congratulate" "players"
[54603] "coach" "PM"
[54605] "Modi" "said"
[54607] "Soon" "PM"
[54609] "asked" "update"
[54611] "Navneet" "Kaur's"
[54613] "injury" "received"
[54615] "four" "stitches"
[54617] "near" "eye"
[54619] "skipper" "Rani"
[54621] "Rampal" "thanked"
[54623] "PM" "Hearing"
[54625] "players" "cry"
[54627] "PM" "Modi"
[54629] "said" "Stop"
[54631] "crying" "can"
[54633] "hear" "cry"
[54635] "country" "proud"
[54637] "disheartened" "many"
[54639] "decades" "hockey"
[54641] "India's" "identity"
[54643] "getting" "prominence"
[54645] "hardwork" "Moreover"
[54647] "PM" "Modi"
[54649] "also" "lauded"
[54651] "effort" "coach"
[54653] "Sjoerd" "Marijne"
[54655] "TOKYO" "2020"
[54657] "OLYMPICS" "DAY"
[54659] "14" "BLOG"
[54661] "tried" "level"
[54663] "best" "encouraged"
[54665] "girls" "Wish"
[54667] "best" "future"
[54669] "said" "Coach"
[54671] "Marijne" "thanked"
[54673] "Prime" "Minister"
[54675] "added" "girls"
[54677] "emotional" "loss"
[54679] "also" "told"
[54681] "girls" "inspire"
[54683] "nation" "important"
[54685] "must" "cherish"
[54687] "Thank" "sir"
[54689] "Namaste" "quipped"
[54691] "Modi" "India"
[54693] "lost" "close"
[54695] "semifinal" "1-2"
[54697] "Argentina" "earlier"
[54699] "week" "side"
[54701] "went" "despite"
[54703] "leading" "1-0"
[54705] "Published" "HT"
[54707] "Digital" "Content"
[54709] "Services" "permission"
[54711] "Hindustan" "Times"
[54713] "query" "respect"
[54715] "article" "content"
[54717] "requirement" "please"
[54719] "contact" "Editor"
[54721] "Classification" "Language"
[54723] "ENGLISH" "Publication-Type"
[54725] "Newswire" "Body"
[54727] "Self-regulatory" "ad"
[54729] "industry" "entity"
[54731] "Advertising" "Standards"
[54733] "Council" "India"
[54735] "ASCI" "said"
[54737] "brands" "piggybacking"
[54739] "athletes" "winning"
[54741] "medals" "Tokyo"
[54743] "Olympics" "advertising"
[54745] "without" "permission"
[54747] "violation" "code"
[54749] "ads" "refer"
[54751] "showcase" "celebrities"
[54753] "without" "explicit"
[54755] "permission" "ads"
[54757] "potential" "violation"
[54759] "ASCI" "code"
[54761] "said" "ASCI"
[54763] "secretary" "general"
[54765] "Manisha" "Kapoor"
[54767] "adding" "ads"
[54769] "misleading" "consumers"
[54771] "may" "think"
[54773] "celebrities" "genuinely"
[54775] "endorse" "products"
[54777] "Indian" "athletes"
[54779] "including" "weightlifter"
[54781] "Mirabai" "Chanu"
[54783] "badminton" "player"
[54785] "PV" "Sindhu"
[54787] "boxer" "Lovlina"
[54789] "Borgohain" "wrestler"
[54791] "Ravi" "Kumar"
[54793] "Dahiya" "won"
[54795] "medals" "men's"
[54797] "women's" "hockey"
[54799] "teams" "created"
[54801] "history" "Tokyo"
[54803] "leading" "surge"
[54805] "brands" "putting"
[54807] "ads" "messages"
[54809] "social" "media"
[54811] "directly" "leveraging"
[54813] "athletes" "names"
[54815] "without" "permissions"
[54817] "contracts" "athletes"
[54819] "names" "leveraged"
[54821] "linked" "brands"
[54823] "across" "corporates"
[54825] "Aditya" "Birla"
[54827] "Group" "Apollo"
[54829] "Hospitals" "Perfetti"
[54831] "Van" "Melle"
[54833] "agencies" "BrandOnWheelz"
[54835] "out-of-home" "media"
[54837] "agency" "Brand"
[54839] "Sigma" "Advertisers"
[54841] "shall" "without"
[54843] "permission" "person"
[54845] "firm" "institution"
[54847] "reference" "contain"
[54849] "reference" "person"
[54851] "firm" "institution"
[54853] "confers" "unjustified"
[54855] "advantage" "product"
[54857] "advertised" "tends"
[54859] "bring" "person"
[54861] "firm" "institution"
[54863] "ridicule" "disrepute"
[54865] "ASCI" "code"
[54867] "states" "ASCI"
[54869] "guidelines" "legally"
[54871] "enforceable" "violations"
[54873] "treated" "violation"
[54875] "government's" "rules"
[54877] "code" "adds"
[54879] "required" "advertiser"
[54881] "ad" "agency"
[54883] "shall" "need"
[54885] "explicit" "permission"
[54887] "person" "firm"
[54889] "institution" "reference"
[54891] "made" "advertisement"
[54893] "Classification" "Language"
[54895] "ENGLISH" "Publication-Type"
[54897] "Newspaper" "Body"
[54899] "total" "126"
[54901] "Indian" "athletes"
[54903] "across" "18"
[54905] "sports" "disciplines"
[54907] "landed" "Tokyo"
[54909] "participate" "Olympics"
[54911] "2020" "one"
[54913] "billion" "Indians"
[54915] "cheered" "Soaring"
[54917] "hopes" "prayers"
[54919] "Indians" "egged"
[54921] "go" "Olympic"
[54923] "glory" "Every"
[54925] "athlete" "ready"
[54927] "give" "best"
[54929] "nation" "better"
[54931] "start" "Indian"
[54933] "fans" "expected"
[54935] "medal" "first"
[54937] "day" "silver"
[54939] "impressive" "performance"
[54941] "various" "sports"
[54943] "persons" "following"
[54945] "days" "strengthened"
[54947] "country's" "position"
[54949] "event" "country"
[54951] "hopeful" "get"
[54953] "medal" "Badminton"
[54955] "welterweight" "boxing"
[54957] "industrialist" "Anand"
[54959] "Mahindra" "said"
[54961] "congratulatory" "message"
[54963] "Mirabai" "ensured"
[54965] "India's" "first"
[54967] "medal" "event"
[54969] "One" "woman"
[54971] "burden" "expectations"
[54973] "billion" "lifted"
[54975] "high" "head"
[54977] "effortlessly" "silver"
[54979] "medal" "ended"
[54981] "India's" "21-year"
[54983] "wait" "weightlifting"
[54985] "medal" "Olympics"
[54987] "Mira" "bettered"
[54989] "Karnam" "Malleswari's"
[54991] "bronze" "medal"
[54993] "2000" "Sydney"
[54995] "Olympics" "Mira"
[54997] "lost" "gold"
[54999] "China's" "Hou"
[55001] "Zhihui" "Mira"
[55003] "won" "silver"
[55005] "first" "day"
[55007] "Olympics" "entire"
[55009] "nation" "erupted"
[55011] "celebrations" "Congratulatory"
[55013] "messages" "poured"
[55015] "Mira" "returned"
[55017] "hometown" "Imphal"
[55019] "Manipur" "thousands"
[55021] "people" "came"
[55023] "streets" "greet"
[55025] "daughter" "Despite"
[55027] "Covid-restrictions" "danced"
[55029] "rejoice" "Mira's"
[55031] "accomplishment" "doubt"
[55033] "flying" "start"
[55035] "India" "Tokyo"
[55037] "PV" "Sindhu's"
[55039] "advancement" "Badminton"
[55041] "Lovlina" "Borgohain"
[55043] "welterweight" "boxing"
[55045] "given" "lot"
[55047] "hope" "country"
[55049] "winning" "medals"
[55051] "adding" "country's"
[55053] "march" "spectacular"
[55055] "performance" "wonderful"
[55057] "performance" "women"
[55059] "country" "also"
[55061] "given" "lot"
[55063] "boost" "rise"
[55065] "women" "power"
[55067] "country" "victory"
[55069] "Mira" "said"
[55071] "really" "dream-come-true"
[55073] "like" "dedicate"
[55075] "medal" "country"
[55077] "like" "thank"
[55079] "billion" "prayers"
[55081] "Indians" "grateful"
[55083] "support" "extended"
[55085] "government" "towards"
[55087] "without" "journey"
[55089] "Olympic" "medal"
[55091] "possible" "literally"
[55093] "lifted" "spirit"
[55095] "Indian" "contingents"
[55097] "Tokyo" "moment"
[55099] "Mirabai" "Chanu"
[55101] "bagged" "silver"
[55103] "proved" "Medals"
[55105] "made" "tears"
[55107] "sweat" "Victories"
[55109] "marked" "tears"
[55111] "joy" "silver"
[55113] "medal" "even"
[55115] "special" "love"
[55117] "people" "India"
[55119] "state" "Manipur"
[55121] "shown" "grateful"
[55123] "every" "person"
[55125] "came" "today"
[55127] "congratulate" "gave"
[55129] "blessings" "overwhelmed"
[55131] "Mira" "reacted"
[55133] "doubt" "Indian"
[55135] "hopes" "still"
[55137] "high" "categories"
[55139] "like" "badminton"
[55141] "archery" "boxing"
[55143] "hockey" "Mira's"
[55145] "moment" "year"
[55147] "Tokyo" "already"
[55149] "back" "home"
[55151] "cherish" "moment"
[55153] "glory" "years"
[55155] "inspire" "millions"
[55157] "youngsters" "Olympic"
[55159] "one" "event"
[55161] "every" "sportsperson"
[55163] "fights" "showcase"
[55165] "skills" "bring"
[55167] "glory" "nation"
[55169] "moment" "glory"
[55171] "every" "athlete"
[55173] "represent" "country"
[55175] "Olympics" "remain"
[55177] "compelling" "search"
[55179] "excellence" "exists"
[55181] "sport" "maybe"
[55183] "life" "athlete"
[55185] "Olympics" "ultimate"
[55187] "test" "worth"
[55189] "Originally" "scheduled"
[55191] "take" "place"
[55193] "July" "24"
[55195] "August" "9"
[55197] "last" "year"
[55199] "Tokyo" "Summer"
[55201] "Olympic" "Games"
[55203] "pushed" "back"
[55205] "due" "global"
[55207] "Covid-19" "threat"
[55209] "lot" "deliberations"
[55211] "consultations" "among"
[55213] "organisers" "stakeholders"
[55215] "Tokyo" "Olympic"
[55217] "Games" "now"
[55219] "held" "July"
[55221] "23" "August"
[55223] "8" "2021"
[55225] "Paralympic" "Games"
[55227] "24" "August"
[55229] "24" "September"
[55231] "5" "2021"
[55233] "Altogether" "around"
[55235] "11,000" "athletes"
[55237] "206" "countries"
[55239] "participating" "33"
[55241] "sports" "categories"
[55243] "doubt" "spirit"
[55245] "game" "upheld"
[55247] "successful" "completion"
[55249] "mega" "event"
[55251] "due" "course"
[55253] "Olympic" "games"
[55255] "testimony" "triumph"
[55257] "indomitable" "human"
[55259] "spirit" "pandemic"
[55261] "even" "severest"
[55263] "threat" "form"
[55265] "Covid-19" "dampen"
[55267] "spirit" "athletes"
[55269] "organisers" "IOC"
[55271] "International" "Olympic"
[55273] "Committee" "president"
[55275] "Thomas" "Bach"
[55277] "put" "Humankind"
[55279] "currently" "finds"
[55281] "dark" "tunnel"
[55283] "Olympic" "Games"
[55285] "Tokyo" "2020"
[55287] "can" "light"
[55289] "end" "tunnel"
[55291] "Held" "amidst"
[55293] "extraordinary" "time"
[55295] "human" "history"
[55297] "Tokyo" "Olympic"
[55299] "Games" "extra-special"
[55301] "display" "humanity"
[55303] "uniting" "one"
[55305] "global" "celebration"
[55307] "human" "resilience"
[55309] "sensational" "showcase"
[55311] "sport" "Classification"
[55313] "Language" "ENGLISH"
[55315] "Publication-Type" "Newspaper"
[55317] "Body" "India"
[55319] "Aug" "6"
[55321] "India" "women's"
[55323] "hockey" "team"
[55325] "missed" "medal"
[55327] "went" "Rio"
[55329] "Olympics" "gold"
[55331] "medalist" "Great"
[55333] "Britain" "bronze"
[55335] "medal" "match"
[55337] "Tokyo" "Olympics"
[55339] "coach" "Sjoerd"
[55341] "Marijne's" "team"
[55343] "can" "take"
[55345] "pride" "fact"
[55347] "finished" "fourth"
[55349] "Tokyo" "Games"
[55351] "best-ever" "finish"
[55353] "Olympics" "history"
[55355] "India" "also"
[55357] "finished" "fourth"
[55359] "1980" "six"
[55361] "teams" "competing"
[55363] "Moscow" "Games"
[55365] "medal" "matches"
[55367] "Great" "Britain"
[55369] "started" "match"
[55371] "typical" "attacking"
[55373] "style" "play"
[55375] "forcing" "Indian"
[55377] "defenders" "push"
[55379] "deep" "inside"
[55381] "circle" "two"
[55383] "penalty" "corners"
[55385] "Britain" "first"
[55387] "15" "minutes"
[55389] "one" "saved"
[55391] "Savita" "second"
[55393] "one" "lucky"
[55395] "escape" "India"
[55397] "Britain" "players"
[55399] "unable" "trap"
[55401] "ball" "India"
[55403] "vs" "Great"
[55405] "Britain" "women's"
[55407] "hockey" "highlights"
[55409] "Savita" "also"
[55411] "made" "two"
[55413] "crucial" "saves"
[55415] "open" "play"
[55417] "attempts" "first"
[55419] "quarter" "Leah"
[55421] "Wilkinson" "sent"
[55423] "ball" "inside"
[55425] "circle" "Elena"
[55427] "Rayer" "struck"
[55429] "Indian" "goalkeeper"
[55431] "pushed" "leg"
[55433] "rebound" "landed"
[55435] "Sarah" "Jones"
[55437] "stick" "took"
[55439] "shot" "goal"
[55441] "deflected" "back"
[55443] "Savita" "Jones"
[55445] "attempted" "another"
[55447] "shot" "target"
[55449] "minutes" "later"
[55451] "Indian" "goalkeeper"
[55453] "denied" "constant"
[55455] "attacks" "reaped"
[55457] "fruits" "Britain"
[55459] "second" "quarter"
[55461] "Rayer" "made"
[55463] "run" "right"
[55465] "sent" "ball"
[55467] "inside" "circle"
[55469] "front" "goal"
[55471] "deflected" "back"
[55473] "nets" "Deep"
[55475] "Grace" "Ekka's"
[55477] "stick" "Minutes"
[55479] "later" "Sarah"
[55481] "Robertson's" "tomahawk"
[55483] "shot" "went"
[55485] "nets" "doubled"
[55487] "Britain's" "lead"
[55489] "putting" "pressure"
[55491] "India" "Gurjit"
[55493] "Kaur" "came"
[55495] "party" "bring"
[55497] "India" "back"
[55499] "level" "pegging"
[55501] "scoring" "two"
[55503] "back-to-back" "goals"
[55505] "penalty" "corners"
[55507] "powerful" "dragflicks"
[55509] "past" "Britain"
[55511] "goalkeeper" "Madeliene"
[55513] "Hinch" "third"
[55515] "goal" "added"
[55517] "end" "second"
[55519] "quarter" "Vandana"
[55521] "Katariya" "Sushila"
[55523] "Chanu" "pushed"
[55525] "ball" "inside"
[55527] "scoring" "circle"
[55529] "left" "Navneet"
[55531] "Kaur" "attempted"
[55533] "shot" "missed"
[55535] "Vandana" "standing"
[55537] "right" "behind"
[55539] "struck" "near"
[55541] "post" "give"
[55543] "India" "lead"
[55545] "India" "started"
[55547] "third" "quarter"
[55549] "backfoot" "trying"
[55551] "defend" "feeble"
[55553] "lead" "allowed"
[55555] "Great" "Britain"
[55557] "get" "back"
[55559] "level" "terms"
[55561] "well-stitched" "attacking"
[55563] "move" "Isabelle"
[55565] "Petter's" "first"
[55567] "attempt" "saved"
[55569] "Savita" "ball"
[55571] "deflected" "towards"
[55573] "Hollie" "Pearne-Webb"
[55575] "struck" "past"
[55577] "Savita" "equalise"
[55579] "late" "flourish"
[55581] "India" "third"
[55583] "quarter" "troubled"
[55585] "Britain's" "defence"
[55587] "enough" "Sjoerd"
[55589] "Marijne's" "side"
[55591] "get" "back"
[55593] "lead" "flurry"
[55595] "penalty" "corners"
[55597] "start" "fourth"
[55599] "quarter" "Great"
[55601] "Britain" "allowed"
[55603] "regain" "lead"
[55605] "Grace" "Balsdon"
[55607] "finally" "scored"
[55609] "set-piece" "India"
[55611] "played" "almost"
[55613] "seven" "minutes"
[55615] "10" "players"
[55617] "Neha" "getting"
[55619] "yellow" "card"
[55621] "followed" "green"
[55623] "card" "Nikki"
[55625] "Pradhan" "still"
[55627] "managed" "keep"
[55629] "possession" "quarter"
[55631] "even" "received"
[55633] "penalty" "corner"
[55635] "Gurjit" "Kaur's"
[55637] "dragflick" "time"
[55639] "saved" "Hinch"
[55641] "Despite" "repeated"
[55643] "attempts" "India"
[55645] "unable" "get"
[55647] "back" "goal"
[55649] "equalise" "final"
[55651] "minutes" "bowed"
[55653] "Rio" "gold"
[55655] "medalists" "dream"
[55657] "run" "Indian"
[55659] "team" "defied"
[55661] "expectations" "playing"
[55663] "third" "Olympics"
[55665] "coach" "Sjoerd"
[55667] "Marijne's" "team"
[55669] "got" "poor"
[55671] "start" "tournament"
[55673] "losing" "first"
[55675] "three" "games"
[55677] "found" "rhythm"
[55679] "form" "just"
[55681] "right" "team"
[55683] "wins" "Ireland"
[55685] "South" "Africa"
[55687] "group" "stage"
[55689] "India" "women's"
[55691] "team" "booked"
[55693] "ride" "quarterfinals"
[55695] "shocked" "Australia"
[55697] "earn" "first-ever"
[55699] "semifinals" "berth"
[55701] "reach" "final"
[55703] "went" "Argentina"
[55705] "1-2" "Published"
[55707] "HT" "Digital"
[55709] "Content" "Services"
[55711] "permission" "Hindustan"
[55713] "Times" "query"
[55715] "respect" "article"
[55717] "content" "requirement"
[55719] "please" "contact"
[55721] "Editor" "Classification"
[55723] "Language" "ENGLISH"
[55725] "Publication-Type" "Newswire"
[55727] "Body" "India"
[55729] "Aug" "6"
[55731] "Bajrang" "Punia"
[55733] "lost" "Azerbaijan's"
[55735] "Haji" "Aliyev"
[55737] "men's" "freestyle"
[55739] "65kg" "wrestling"
[55741] "semifinal" "match"
[55743] "Tokyo" "Olympics"
[55745] "Indian" "grappler"
[55747] "match" "technical"
[55749] "finesse" "power"
[55751] "Aliyev" "concentrated"
[55753] "ankle" "hold"
[55755] "win" "several"
[55757] "points" "bout"
[55759] "Bajrang" "now"
[55761] "compete" "bronze"
[55763] "medal" "bout"
[55765] "Saturday" "manages"
[55767] "win" "India's"
[55769] "second" "medal"
[55771] "wrestling" "Tokyo"
[55773] "Ravi" "Kumar"
[55775] "Dahiya" "winning"
[55777] "silver" "medal"
[55779] "57kg" "category"
[55781] "Thursday" "Bajrang"
[55783] "won" "first"
[55785] "point" "bout"
[55787] "Azerbaijani" "failed"
[55789] "collect" "point"
[55791] "30" "seconds"
[55793] "time" "period"
[55795] "reigning" "Asian"
[55797] "Games" "CWG"
[55799] "champion" "match"
[55801] "Aliyev's" "strength"
[55803] "thereafter" "Azerbaijani"
[55805] "pulled" "two"
[55807] "great" "technical"
[55809] "moves" "hold"
[55811] "Bajrang" "back"
[55813] "go" "4-1"
[55815] "end" "first"
[55817] "period" "Tokyo"
[55819] "Olympics" "Day"
[55821] "14" "Live"
[55823] "Updates" "nimble-footed"
[55825] "Azerbaijani" "held"
[55827] "Bajrang" "leg"
[55829] "start" "second"
[55831] "period" "pulled"
[55833] "great" "move"
[55835] "seal" "place"
[55837] "final" "going"
[55839] "8-1" "Bajrang"
[55841] "came" "back"
[55843] "taking" "2"
[55845] "tough" "points"
[55847] "make" "3-8"
[55849] "Aliyev" "picked"
[55851] "another" "point"
[55853] "make" "9-3"
[55855] "Bajrang" "kept"
[55857] "hopes" "alive"
[55859] "making" "5-9"
[55861] "around" "45"
[55863] "seconds" "go"
[55865] "Aliyev" "defended"
[55867] "strongly" "eventually"
[55869] "won" "bout"
[55871] "12-5" "points"
[55873] "progress" "final"
[55875] "tired" "devastated"
[55877] "Bajrang" "challenged"
[55879] "points" "lost"
[55881] "eventually" "threw"
[55883] "towel" "Earlier"
[55885] "Bajrang" "Punia"
[55887] "put" "tactical"
[55889] "acumen" "strength"
[55891] "good" "use"
[55893] "second" "period"
[55895] "pin" "Iran's"
[55897] "Morteza" "Cheka"
[55899] "Ghiasi" "semifinal"
[55901] "berth" "timely"
[55903] "take-down" "move"
[55905] "helped" "beat"
[55907] "Kyrgyzstan's" "Ernazar"
[55909] "Akmataliev" "opening"
[55911] "bout" "Bajrang"
[55913] "three-time" "world"
[55915] "championships" "medallist"
[55917] "won" "bronze"
[55919] "2019" "World"
[55921] "Championships" "won"
[55923] "silver" "2018"
[55925] "65kg" "category"
[55927] "won" "bronze"
[55929] "world" "championships"
[55931] "2013" "60"
[55933] "kg" "category"
[55935] "also" "reigning"
[55937] "Commonwealth" "Asian"
[55939] "games" "champion"
[55941] "65kg" "category"
[55943] "won" "gold"
[55945] "medal" "2018"
[55947] "Games" "won"
[55949] "silver" "medal"
[55951] "61kg" "category"
[55953] "CWG" "Asiad"
[55955] "2014" "respectively"
[55957] "Bajrang" "disciple"
[55959] "former" "Indian"
[55961] "wrestling" "great"
[55963] "2012" "London"
[55965] "Olympics" "bronze"
[55967] "medallist" "Yogeshwar"
[55969] "Dutt" "Published"
[55971] "HT" "Digital"
[55973] "Content" "Services"
[55975] "permission" "Hindustan"
[55977] "Times" "query"
[55979] "respect" "article"
[55981] "content" "requirement"
[55983] "please" "contact"
[55985] "Editor" "Classification"
[55987] "Language" "ENGLISH"
[55989] "Publication-Type" "Newswire"
[55991] "Body" "New"
[55993] "Delhi" "Aug"
[55995] "1" "film"
[55997] "life" "Olympic"
[55999] "silver" "medalist"
[56001] "Saikhom" "Mirabai"
[56003] "Chanu" "produced"
[56005] "Seuti" "Films"
[56007] "Productions" "film"
[56009] "also" "dubbed"
[56011] "English" "various"
[56013] "Indian" "languages"
[56015] "agreement" "signed"
[56017] "Chanu's" "side"
[56019] "Imphal-based" "Seuti"
[56021] "Films" "Production"
[56023] "residence" "Nongpok"
[56025] "Kakching" "village"
[56027] "Imphal" "East"
[56029] "district" "production"
[56031] "house" "chairman"
[56033] "Manaobi" "MM"
[56035] "said" "making"
[56037] "feature" "film"
[56039] "based" "Mirabai"
[56041] "Chanu's" "life"
[56043] "various" "incidents"
[56045] "life" "chairman"
[56047] "said" "film"
[56049] "Chanu's" "life"
[56051] "realistic" "film"
[56053] "new" "face"
[56055] "trained" "act"
[56057] "Mirabai" "proposed"
[56059] "film" "showcase"
[56061] "entire" "life"
[56063] "Mirabai" "Chanu"
[56065] "beginning" "early"
[56067] "days" "village"
[56069] "journey" "Olympics"
[56071] "Mirabai" "said"
[56073] "fortunate" "film"
[56075] "life" "produced"
[56077] "inspire" "youths"
[56079] "especially" "budding"
[56081] "sportspersons" "Manaobi"
[56083] "MM" "writing"
[56085] "screenplay" "dialogue"
[56087] "film" "film"
[56089] "directed" "OC"
[56091] "Meira" "produced"
[56093] "RK" "Nalini"
[56095] "Devi" "Chanu"
[56097] "won" "silver"
[56099] "medal" "49"
[56101] "kg" "weightlifting"
[56103] "event" "Tokyo"
[56105] "Olympics" "last"
[56107] "week" "ended"
[56109] "India's" "21-year"
[56111] "wait" "weightlifting"
[56113] "medal" "Olympics"
[56115] "Chanu" "became"
[56117] "second" "Indian"
[56119] "woman" "win"
[56121] "weightlifting" "medal"
[56123] "Olympics" "Karnam"
[56125] "Malleswari" "first"
[56127] "Indian" "woman"
[56129] "win" "bronze"
[56131] "medal" "2000"
[56133] "Sydney" "Olympics"
[56135] "Published" "HT"
[56137] "Digital" "Content"
[56139] "Services" "permission"
[56141] "MINT" "query"
[56143] "respect" "article"
[56145] "content" "requirement"
[56147] "please" "contact"
[56149] "Editor" "Classification"
[56151] "Language" "ENGLISH"
[56153] "Publication-Type" "Newspaper"
[56155] "Body" "Tokyo"
[56157] "July" "28"
[56159] "quick" "shadow"
[56161] "practice" "PV"
[56163] "Sindhu" "ready"
[56165] "Across" "net"
[56167] "N" "Y"
[56169] "Cheung" "Hong"
[56171] "Kong" "player"
[56173] "one" "career"
[56175] "title" "Sindhu's"
[56177] "15" "Barring"
[56179] "stutter" "midway"
[56181] "second" "game"
[56183] "Sindhu" "reigning"
[56185] "world" "champion"
[56187] "showed" "mood"
[56189] "linger" "won"
[56191] "21-9" "21-16"
[56193] "moved" "round"
[56195] "16" "long"
[56197] "ago" "another"
[56199] "court" "Japan's"
[56201] "Nozomi" "Okuhara"
[56203] "stretched" "Evgeniya"
[56205] "Kosetskaya" "Russian"
[56207] "Olympic" "Committee"
[56209] "Okuhara" "England"
[56211] "Champion" "one"
[56213] "caused" "Sindhu"
[56215] "enough" "heartburn"
[56217] "lot" "pressure"
[56219] "deal" "Olympics"
[56221] "home" "crowd"
[56223] "now" "crowd"
[56225] "can" "intimidating"
[56227] "Sindhu's" "burden"
[56229] "light" "either"
[56231] "Rio" "Tokyo"
[56233] "Olympic" "silver"
[56235] "world" "title"
[56237] "scrutiny" "court"
[56239] "court" "indifferent"
[56241] "form" "going"
[56243] "Olympics" "face"
[56245] "billboards" "television"
[56247] "advertisements" "nearly"
[56249] "3" "million"
[56251] "followers" "Twitter"
[56253] "1.8m" "Instagram"
[56255] "accepts" "pressure"
[56257] "comes" "stature"
[56259] "pressure" "know"
[56261] "deal" "go"
[56263] "court" "want"
[56265] "keep" "pressure"
[56267] "away" "focused"
[56269] "Whatever" "situation"
[56271] "match" "just"
[56273] "let" "go"
[56275] "stay" "present"
[56277] "said" "Wednesday"
[56279] "Unlike" "many"
[56281] "young" "stars"
[56283] "Sindhu" "wears"
[56285] "stardom" "lightly"
[56287] "learned" "navigate"
[56289] "early" "touted"
[56291] "one" "future"
[56293] "heir" "Saina"
[56295] "Nehwal" "Successive"
[56297] "silver" "medals"
[56299] "world" "championships"
[56301] "gold" "2019"
[56303] "means" "statuesque"
[56305] "shuttler" "final"
[56307] "every" "world"
[56309] "Olympic" "event"
[56311] "since" "2016"
[56313] "En" "route"
[56315] "changed" "shy"
[56317] "teenager" "speaking"
[56319] "media" "one-liners"
[56321] "Sindhu" "battle-hardened"
[56323] "athlete" "forged"
[56325] "challenges" "unforgiving"
[56327] "times" "brutal"
[56329] "badminton" "circuit"
[56331] "lot" "changed"
[56333] "last" "four"
[56335] "years" "Rio"
[56337] "21" "now"
[56339] "26" "Sindhu"
[56341] "said" "laugh"
[56343] "Personally" "experience-wise"
[56345] "responsibility-wise" "different"
[56347] "confidence" "level"
[56349] "gone" "feeling"
[56351] "good" "Coming"
[56353] "group" "stage"
[56355] "important" "happy"
[56357] "now" "every"
[56359] "match" "going"
[56361] "knockout" "can"
[56363] "say" "ready"
[56365] "said" "also"
[56367] "changed" "coach"
[56369] "Pullela" "Gopichand"
[56371] "won" "Rio"
[56373] "silver" "longer"
[56375] "court-side" "Sindhu"
[56377] "training" "Korean"
[56379] "coach" "Park"
[56381] "Tae-sang" "time"
[56383] "Hyderabad" "practised"
[56385] "Gachibowli" "Indoor"
[56387] "Stadium" "Gopichand's"
[56389] "academy" "learnt"
[56391] "ropes" "training"
[56393] "bigger" "stadium"
[56395] "provide" "right"
[56397] "setting" "matches"
[56399] "Tokyo" "Sindhu"
[56401] "said" "Gachibowli"
[56403] "big" "get"
[56405] "know" "shuttle"
[56407] "control" "wind"
[56409] "always" "play"
[56411] "Japan" "Open"
[56413] "venue" "point"
[56415] "view" "preparation"
[56417] "important" "step"
[56419] "break" "due"
[56421] "pandemic" "helped"
[56423] "always" "coming"
[56425] "one" "tournament"
[56427] "preparing" "next"
[56429] "long" "gap"
[56431] "gave" "time"
[56433] "work" "technique"
[56435] "skills" "said"
[56437] "absence" "defending"
[56439] "champion" "friend"
[56441] "Carolina" "Marin"
[56443] "made" "Sindhu"
[56445] "biggest" "draw"
[56447] "women's" "singles"
[56449] "badminton" "field"
[56451] "intensely" "competitive"
[56453] "endurance" "tenacity"
[56455] "Okuhara" "Akane"
[56457] "Yamaguchi" "deceptive"
[56459] "skills" "Tai"
[56461] "Tzu" "Ying"
[56463] "Sindhu" "intent"
[56465] "attack" "make"
[56467] "riveting" "contest"
[56469] "get" "deeper"
[56471] "draw" "Sindhu"
[56473] "first" "need"
[56475] "see" "Denmark's"
[56477] "World" "12"
[56479] "Mia" "Blichfledt"
[56481] "Denmark" "Thursday"
[56483] "Wednesday" "Sindhu"
[56485] "near-perfect" "game"
[56487] "court-coverage" "good"
[56489] "worked" "angles"
[56491] "well" "dictated"
[56493] "tempo" "struggle"
[56495] "Sindhu" "swiftly"
[56497] "seized" "control"
[56499] "second" "game"
[56501] "today" "getting"
[56503] "difficult" "control"
[56505] "shuttle" "many"
[56507] "enforced" "errors"
[56509] "four" "five"
[56511] "clears" "went"
[56513] "told" "just"
[56515] "focus" "one"
[56517] "point" "time"
[56519] "said" "Sindhu"
[56521] "Sindhu" "predicted"
[56523] "tough" "contest"
[56525] "Blichfledt" "Mia"
[56527] "aggressive" "player"
[56529] "need" "aggressive"
[56531] "going" "tough"
[56533] "match" "prepared"
[56535] "easy" "points"
[56537] "said" "India's"
[56539] "medal" "hopes"
[56541] "badly" "hit"
[56543] "shooting" "Sindhu"
[56545] "acknowledged" "greater"
[56547] "expectation" "hype"
[56549] "Olympics" "going"
[56551] "time" "came"
[56553] "every" "five"
[56555] "years" "fans"
[56557] "might" "think"
[56559] "easy" "sure"
[56561] "showing" "love"
[56563] "want" "us"
[56565] "win" "sometimes"
[56567] "just" "may"
[56569] "day" "given"
[56571] "best" "day"
[56573] "regret" "People"
[56575] "might" "say"
[56577] "things" "see"
[56579] "happening" "social"
[56581] "media" "end"
[56583] "day" "Olympics"
[56585] "everybody" "want"
[56587] "give" "100"
[56589] "per" "cent"
[56591] "said" "venue"
[56593] "new" "Sindhu"
[56595] "missing" "crowd"
[56597] "vibe" "missing"
[56599] "Olympics" "played"
[56601] "Japan" "Open"
[56603] "stadium" "never"
[56605] "full" "enough"
[56607] "people" "stand"
[56609] "make" "atmosphere"
[56611] "feels" "bit"
[56613] "different" "hard"
[56615] "ask" "Gopichand"
[56617] "super" "coach"
[56619] "mentored" "Sindhu"
[56621] "Nehwal" "2019"
[56623] "world" "championships"
[56625] "Sindhu" "trained"
[56627] "Kim-ju" "Hyun"
[56629] "left" "Park"
[56631] "coach" "miss"
[56633] "Gopichand's" "presence"
[56635] "Park" "coach"
[56637] "one-and-half" "years"
[56639] "now" "worked"
[56641] "together" "learnt"
[56643] "new" "things"
[56645] "said" "Sindhu"
[56647] "Published" "HT"
[56649] "Digital" "Content"
[56651] "Services" "permission"
[56653] "Hindustan" "Times"
[56655] "query" "respect"
[56657] "article" "content"
[56659] "requirement" "please"
[56661] "contact" "Editor"
[56663] "Classification" "Language"
[56665] "ENGLISH" "Publication-Type"
[56667] "Newswire" "Body"
[56669] "Veteran" "asks"
[56671] "asked" "alter"
[56673] "attire" "just"
[56675] "minute" "fight"
[56677] "Colombia's" "Ingrit"
[56679] "Valencia" "Legendary"
[56681] "Indian" "boxer"
[56683] "Mary" "Kom"
[56685] "kicked" "storm"
[56687] "questioning" "asked"
[56689] "change" "ring"
[56691] "dress" "just"
[56693] "minute" "pre'quarters"
[56695] "bout" "Thursday"
[56697] "38-year-old" "lost"
[56699] "Colombia's" "Ingrit"
[56701] "Valencia" "round"
[56703] "16" "took"
[56705] "Twitter" "say"
[56707] "Surprising" "can"
[56709] "anyone" "explain"
[56711] "ring" "dress"
[56713] "ask" "change"
[56715] "ring" "dress"
[56717] "just" "minute"
[56719] "pre" "qtr"
[56721] "bout" "can"
[56723] "anyone" "explain"
[56725] "@PMOIndia" "@ianuragthakur"
[56727] "@KirenRijiju" "@iocmedia"
[56729] "@Olympics" "Surprising"
[56731] "can" "anyone"
[56733] "explain" "ring"
[56735] "dress" "ask"
[56737] "change" "ring"
[56739] "dress" "just"
[56741] "minute" "pre"
[56743] "qtr" "bout"
[56745] "can" "anyone"
[56747] "explain" "@PMOIndia"
[56749] "@ianuragthakur" "@KirenRijiju"
[56751] "@iocmedia" "@Olympics"
[56753] "pic.twitter.com" "b3nwPXSdl1"
[56755] "Kom" "slams"
[56757] "IOC" "Boxing"
[56759] "Task" "Force"
[56761] "six-time" "world"
[56763] "champion" "Thursday"
[56765] "slammed" "International"
[56767] "Olympic" "Committee's"
[56769] "Boxing" "Task"
[56771] "Force" "poor"
[56773] "judging" "flyweight"
[56775] "51kg" "pre-quarterfinal"
[56777] "lost" "despite"
[56779] "winning" "two"
[56781] "three" "rounds"
[56783] "Task" "Force"
[56785] "conducting" "boxing"
[56787] "competition" "Tokyo"
[56789] "International" "Boxing"
[56791] "Association" "AIBA"
[56793] "suspended" "IOC"
[56795] "alleged" "misgovernance"
[56797] "financial" "wrongdoing"
[56799] "know" "understand"
[56801] "decision" "wrong"
[56803] "Task" "Force"
[56805] "wrong" "IOC"
[56807] "asked" "telephonic"
[56809] "interview" "PTI"
[56811] "2-3" "loss"
[56813] "Colombian" "Ingrit"
[56815] "Valencia" "pre-quarters"
[56817] "Tokyo" "also"
[56819] "member" "Task"
[56821] "Force" "even"
[56823] "giving" "suggestions"
[56825] "supporting" "ensuring"
[56827] "clean" "competition"
[56829] "done" "said"
[56831] "38-year-old" "multiple-time"
[56833] "Asian" "champion"
[56835] "eyeing" "second"
[56837] "Olympic" "medal"
[56839] "bronze" "2012"
[56841] "London" "Games"
[56843] "said" "loss"
[56845] "sink" "even"
[56847] "gone" "dope"
[56849] "test" "happy"
[56851] "inside" "ring"
[56853] "came" "happy"
[56855] "mind" "knew"
[56857] "won" "took"
[56859] "doping" "still"
[56861] "happy" "saw"
[56863] "social" "media"
[56865] "coach" "Chhote"
[56867] "Lal" "Yadav"
[56869] "repeated" "sunk"
[56871] "lost" "said"
[56873] "beaten" "girl"
[56875] "twice" "past"
[56877] "believe" "hand"
[56879] "raised" "referee"
[56881] "swear" "struck"
[56883] "lost" "sure"
[56885] "added" "Classification"
[56887] "Language" "ENGLISH"
[56889] "Publication-Type" "Newspaper"
[56891] "Body" "India"
[56893] "Aug" "5"
[56895] "Celebrations" "Kurukshetra"
[56897] "residence" "Surender"
[56899] "Kumar" "member"
[56901] "India" "men's"
[56903] "hockey" "team"
[56905] "won" "bronze"
[56907] "medal" "Tokyo"
[56909] "Olympics" "2020"
[56911] "Relatives" "neighbours"
[56913] "even" "politicians"
[56915] "visiting" "28-year-old"
[56917] "hockey" "player's"
[56919] "residence" "Sector"
[56921] "8" "Kurukshetra"
[56923] "Haryana" "soon"
[56925] "team" "defeated"
[56927] "Germany" "5-4"
[56929] "win" "Olympics"
[56931] "medal" "41"
[56933] "years" "like"
[56935] "festival" "us"
[56937] "Surender's" "hardwork"
[56939] "borne" "fruit"
[56941] "said" "Kumar's"
[56943] "father" "Malkhan"
[56945] "Singh" "Malkhan"
[56947] "farmer" "said"
[56949] "arranged" "everything"
[56951] "children" "even"
[56953] "though" "financial"
[56955] "problems" "family"
[56957] "Surender's" "hard"
[56959] "work" "dedication"
[56961] "hockey" "helped"
[56963] "play" "country"
[56965] "Surender's" "mother"
[56967] "Neelam" "Devi"
[56969] "also" "shared"
[56971] "happiness" "said"
[56973] "Surender" "turned"
[56975] "dream" "reality"
[56977] "express" "happiness"
[56979] "words" "Today"
[56981] "happier" "wedding"
[56983] "day" "said"
[56985] "Kumar" "also"
[56987] "part" "national"
[56989] "team" "participated"
[56991] "2016" "Summer"
[56993] "Olympics" "currently"
[56995] "posted" "manager"
[56997] "Food" "Corporation"
[56999] "India" "Delhi"
[57001] "started" "playing"
[57003] "hockey" "age"
[57005] "10" "2010"
[57007] "started" "playing"
[57009] "Haryana" "helped"
[57011] "state" "team"
[57013] "win" "gold"
[57015] "national" "competitions"
[57017] "family" "credited"
[57019] "Kumar's" "coach"
[57021] "Gurvinder" "Singh"
[57023] "success" "Singh"
[57025] "said" "big"
[57027] "achievement" "country"
[57029] "Surender's" "experience"
[57031] "also" "helped"
[57033] "team" "playing"
[57035] "second" "Olympics"
[57037] "Published" "HT"
[57039] "Digital" "Content"
[57041] "Services" "permission"
[57043] "Hindustan" "Times"
[57045] "query" "respect"
[57047] "article" "content"
[57049] "requirement" "please"
[57051] "contact" "Editor"
[57053] "Classification" "Language"
[57055] "ENGLISH" "Publication-Type"
[57057] "Newswire" "Body"
[57059] "India" "July"
[57061] "31" "India"
[57063] "shuttler" "PV"
[57065] "Sindhu" "lost"
[57067] "top" "seed"
[57069] "Tai" "Tzu-Ying"
[57071] "straight" "games"
[57073] "18-21" "12-21"
[57075] "semi-final" "women's"
[57077] "singles" "badminton"
[57079] "event" "Saturday"
[57081] "However" "Sindhu"
[57083] "reigning" "world"
[57085] "champion" "still"
[57087] "contention" "podium"
[57089] "finish" "feature"
[57091] "bronze" "medal"
[57093] "match" "Sunday"
[57095] "Heading" "semifinal"
[57097] "Sindhu" "mediocre"
[57099] "5-13" "record"
[57101] "World" "1"
[57103] "Tai" "Rio"
[57105] "Olympics" "silver"
[57107] "medallist" "came"
[57109] "just" "little"
[57111] "short" "biggest"
[57113] "nemesis" "Sindhu"
[57115] "downed" "Tai"
[57117] "Rio" "Olympics"
[57119] "2016" "World"
[57121] "Tour" "Finals"
[57123] "2018" "World"
[57125] "Championships" "2019"
[57127] "Unfortunately" "Tokyo"
[57129] "2020" "going"
[57131] "one" "Winning"
[57133] "toss" "Sindhu"
[57135] "opted" "near"
[57137] "end" "court"
[57139] "immediately" "got"
[57141] "involved" "first"
[57143] "long" "rally"
[57145] "match" "slightly"
[57147] "nose" "ahead"
[57149] "4-3" "couple"
[57151] "error" "judgments"
[57153] "World" "1"
[57155] "games" "Sindhu"
[57157] "opportunity" "extend"
[57159] "lead" "8-5"
[57161] "flat" "exchanges"
[57163] "near" "net"
[57165] "brilliant" "forehand"
[57167] "smash" "allowed"
[57169] "Tai" "come"
[57171] "back" "strong"
[57173] "make" "11"
[57175] "next" "points"
[57177] "earned" "either"
[57179] "brilliantly-placed" "drop"
[57181] "shots" "cross-court"
[57183] "smashes" "Tai"
[57185] "known" "bag"
[57187] "trickery" "dug"
[57189] "deep" "bag"
[57191] "foxed" "Sindhu"
[57193] "time" "expecting"
[57195] "smash" "received"
[57197] "drop" "shots"
[57199] "Sindhu" "pick"
[57201] "still" "Sindhu"
[57203] "vigilant" "enough"
[57205] "keep" "stretching"
[57207] "opponent" "eventually"
[57209] "bagged" "four"
[57211] "straight" "points"
[57213] "Tai" "built"
[57215] "sealed" "first"
[57217] "game" "21-18"
[57219] "Sindhu" "stormed"
[57221] "women's" "singles"
[57223] "semifinals" "thrilling"
[57225] "win" "Japan's"
[57227] "Akane" "Yamaguchi"
[57229] "Indian" "shuttler"
[57231] "defeated" "Yamaguchi"
[57233] "21-13" "22-20"
[57235] "set" "date"
[57237] "Tai" "Tzu-Ying"
[57239] "semis" "earlier"
[57241] "beaten" "Denmark's"
[57243] "Mia" "Blichfeldt"
[57245] "straight" "games"
[57247] "Round" "16"
[57249] "match" "Sindhu"
[57251] "remained" "unbeaten"
[57253] "Group" "Stage"
[57255] "defeating" "world"
[57257] "34" "Hong"
[57259] "Kong's" "NY"
[57261] "Cheung" "21-9"
[57263] "21-16" "top"
[57265] "Group" "J"
[57267] "Sindhu" "won"
[57269] "silver" "medal"
[57271] "Rio" "Olympics"
[57273] "2016" "went"
[57275] "Spain's" "Carolina"
[57277] "Marin" "final"
[57279] "thrilling" "encounter"
[57281] "Since" "Indian"
[57283] "shuttler" "won"
[57285] "World" "Championships"
[57287] "gold" "2019"
[57289] "also" "won"
[57291] "silver" "medals"
[57293] "World" "Championships"
[57295] "2017" "2018"
[57297] "Sindhu" "also"
[57299] "won" "silver"
[57301] "medal" "2018"
[57303] "Asian" "Games"
[57305] "2018" "Commonwealth"
[57307] "Games" "Published"
[57309] "HT" "Digital"
[57311] "Content" "Services"
[57313] "permission" "Hindustan"
[57315] "Times" "query"
[57317] "respect" "article"
[57319] "content" "requirement"
[57321] "please" "contact"
[57323] "Editor" "Classification"
[57325] "Language" "ENGLISH"
[57327] "Publication-Type" "Newswire"
[57329] "Body" "Indian"
[57331] "boxing" "legend"
[57333] "MC" "Mary"
[57335] "Kom" "thought"
[57337] "won" "hours"
[57339] "later" "realized"
[57341] "decision" "gone"
[57343] "way" "videoof"
[57345] "MC" "Mary"
[57347] "Kom's" "Round"
[57349] "16" "bout"
[57351] "Ingrit" "Valencia"
[57353] "official" "Tokyo"
[57355] "Olympics" "YouTube"
[57357] "channel" "shows"
[57359] "banner" "post-bout"
[57361] "visuals" "stating"
[57363] "Magnificent" "Mary"
[57365] "bowed" "smile"
[57367] "face" "closer"
[57369] "look" "tell"
[57371] "Mary" "Kom"
[57373] "seems" "smiling"
[57375] "jubilant" "believing"
[57377] "adjudged" "winner"
[57379] "Mary" "Kom"
[57381] "bowed" "Tokyo"
[57383] "Olympics" "valiant"
[57385] "effort" "losing"
[57387] "Colombia's" "Ingrit"
[57389] "Valencia" "just"
[57391] "one" "point"
[57393] "former" "Olympic"
[57395] "bronze" "medallist"
[57397] "left" "shocked"
[57399] "realized" "lost"
[57401] "Losing" "3-2"
[57403] "split" "decision"
[57405] "verdict" "despite"
[57407] "winning" "two"
[57409] "three" "rounds"
[57411] "left" "boxer"
[57413] "confused" "unconvinced"
[57415] "just" "Mary"
[57417] "Kom" "stated"
[57419] "taking" "issue"
[57421] "boxing's" "task"
[57423] "force" "caused"
[57425] "confusion" "Boxing"
[57427] "matches" "usually"
[57429] "end" "announcment"
[57431] "verdict" "judges"
[57433] "refereeraising" "hand"
[57435] "winning" "boxer"
[57437] "However" "COVID-19"
[57439] "restrictions" "place"
[57441] "custom" "raising"
[57443] "winner's" "hand"
[57445] "suspended" "Tokyo"
[57447] "Olympics" "Mary"
[57449] "reportedly" "hear"
[57451] "announcement" "given"
[57453] "decision" "Ingrit"
[57455] "red" "corner"
[57457] "boxers" "raised"
[57459] "hands" "huge"
[57461] "smiles" "faces"
[57463] "referee" "pointed"
[57465] "towards" "Valencia"
[57467] "gesture" "Mary"
[57469] "see" "celebrated"
[57471] "opponent" "hugged"
[57473] "Mary" "raised"
[57475] "hand" "later"
[57477] "realized" "happened"
[57479] "Mary" "Kom"
[57481] "said" "happy"
[57483] "inside" "ring"
[57485] "came" "happy"
[57487] "mind" "knew"
[57489] "won" "took"
[57491] "doping" "still"
[57493] "happy" "saw"
[57495] "social" "media"
[57497] "coach" "Chhote"
[57499] "Lal" "Yadav"
[57501] "repeated" "sunk"
[57503] "lost" "reading"
[57505] "congratulatory" "tweet"
[57507] "Indian" "union"
[57509] "minister" "Kiren"
[57511] "Rijiju" "Mary"
[57513] "realized" "decision"
[57515] "go" "way"
[57517] "Mary" "Kom"
[57519] "thinks" "decision"
[57521] "unfair" "match"
[57523] "gritty" "cagey"
[57525] "affair" "Valencia"
[57527] "arguably" "much"
[57529] "potent" "facing"
[57531] "marauding" "Mary"
[57533] "Kom" "past"
[57535] "Colombian" "boxer"
[57537] "lost" "5"
[57539] "0" "Mary"
[57541] "Kom" "World"
[57543] "Championships" "2019"
[57545] "took" "first"
[57547] "round" "Indian"
[57549] "juggernaut" "came"
[57551] "back" "winning"
[57553] "round" "two"
[57555] "three" "Valence"
[57557] "points" "three"
[57559] "rounds" "final"
[57561] "tallying" "scores"
[57563] "given" "individual"
[57565] "judges" "round"
[57567] "one" "Valencia"
[57569] "awarded" "10"
[57571] "points" "four"
[57573] "five" "judges"
[57575] "one" "gave"
[57577] "Mary" "10"
[57579] "rounds" "three"
[57581] "judges" "gave"
[57583] "Mary" "10"
[57585] "points" "Valencia"
[57587] "managed" "10"
[57589] "two" "However"
[57591] "final" "tallying"
[57593] "saw" "Valencia's"
[57595] "round" "one"
[57597] "advantage" "prevail"
[57599] "Mary's" "brilliant"
[57601] "comeback" "Mary"
[57603] "Kom" "reportedly"
[57605] "said" "bout"
[57607] "close" "also"
[57609] "First" "round"
[57611] "know" "4-1"
[57613] "Valencia's" "favour"
[57615] "fighting" "clear"
[57617] "punches" "won"
[57619] "second" "third"
[57621] "rounds" "two"
[57623] "rounds" "mine"
[57625] "win" "give"
[57627] "can" "Mary"
[57629] "Unconvinced" "decision"
[57631] "Mary" "stated"
[57633] "reaching" "boxing"
[57635] "taskforce" "time"
[57637] "raise" "issue"
[57639] "also" "considering"
[57641] "resigning" "position"
[57643] "athlete" "ambassador"
[57645] "International" "Olympic"
[57647] "Committee's" "Task"
[57649] "Force" "Tokyo"
[57651] "Olympics" "light"
[57653] "unfair" "decision"
[57655] "Mary" "reportedly"
[57657] "said" "definitely"
[57659] "raise" "issue"
[57661] "time" "now"
[57663] "think" "right"
[57665] "time" "control"
[57667] "emotions" "realising"
[57669] "won" "gave"
[57671] "suggestion" "members"
[57673] "task" "force"
[57675] "free" "fair"
[57677] "judges" "big"
[57679] "games" "pointed"
[57681] "time" "Now"
[57683] "know" "received"
[57685] "kind" "unfair"
[57687] "judgment" "maybe"
[57689] "give" "resignation"
[57691] "longer" "part"
[57693] "task" "force"
[57695] "aftermath" "controversy"
[57697] "Mary" "Kom"
[57699] "also" "expressed"
[57701] "surprised" "organizers"
[57703] "asked" "change"
[57705] "jersey" "minute"
[57707] "bout" "Classification"
[57709] "Language" "ENGLISH"
[57711] "Publication-Type" "Newspaper"
[57713] "Body" "Sahara's"
[57715] "exit" "2018"
[57717] "Odisha" "government"
[57719] "took" "reins"
[57721] "sponsorship" "national"
[57723] "hockey" "teams"
[57725] "junior" "senior"
[57727] "levels" "Tokyo"
[57729] "2020" "Olympics"
[57731] "special" "significance"
[57733] "Indian" "sporting"
[57735] "arena" "just"
[57737] "sending" "largest"
[57739] "contingent" "players"
[57741] "representing" "country"
[57743] "biggest" "sporting"
[57745] "event" "also"
[57747] "remarkable" "performance"
[57749] "players" "variety"
[57751] "sporting" "events"
[57753] "particularly" "overwhelming"
[57755] "theentry" "men's"
[57757] "women's" "hockey"
[57759] "teams" "Olympics"
[57761] "semifinals" "Today"
[57763] "look" "success"
[57765] "story" "behind"
[57767] "India's" "performance"
[57769] "field" "hockey"
[57771] "lull" "four"
[57773] "decades" "delve"
[57775] "details" "must"
[57777] "noticed" "Odisha"
[57779] "written" "bold"
[57781] "letters" "right"
[57783] "front" "jersey"
[57785] "men" "women"
[57787] "hockey" "players"
[57789] "connection" "Indian"
[57791] "hockey" "state"
[57793] "Odisha" "Moments"
[57795] "Indian" "women"
[57797] "hockey" "team"
[57799] "created" "history"
[57801] "beating" "three"
[57803] "times" "hockey"
[57805] "world" "champion"
[57807] "Australia" "thequarter-finals"
[57809] "theTokyo" "2020"
[57811] "Olympics" "Odisha"
[57813] "Chief" "Minister"
[57815] "Naveen" "Patnaik"
[57817] "sent" "congratulatory"
[57819] "video" "message"
[57821] "players" "success"
[57823] "hockey" "teams"
[57825] "holds" "special"
[57827] "significance" "Odisha"
[57829] "begin" "current"
[57831] "vice-captains" "men's"
[57833] "women's" "hockey"
[57835] "teams" "Odisha"
[57837] "likes" "ofIndian"
[57839] "professional" "sprinterDutee"
[57841] "Chand" "Odisha"
[57843] "also" "years"
[57845] "produced" "several"
[57847] "national-level" "hockey"
[57849] "players" "state"
[57851] "simultaneously" "stepped"
[57853] "develop" "sports"
[57855] "infrastructure" "sponsor"
[57857] "national" "teams"
[57859] "Sahara's" "exit"
[57861] "2018" "Odisha"
[57863] "government" "took"
[57865] "reins" "sponsorship"
[57867] "Indian" "national"
[57869] "hockey" "teams"
[57871] "junior" "senior"
[57873] "levels" "Odisha"
[57875] "government" "signed"
[57877] "round" "Rs"
[57879] "150" "crore"
[57881] "deal" "Hockey"
[57883] "India" "sponsor"
[57885] "men's" "women's"
[57887] "hockey" "teams"
[57889] "next" "5"
[57891] "years" "first"
[57893] "time" "state"
[57895] "government" "decided"
[57897] "sponsor" "national"
[57899] "team" "collaboration"
[57901] "Tata" "group"
[57903] "2018" "state"
[57905] "government" "set"
[57907] "theOdisha" "Naval"
[57909] "Tata" "Hockey"
[57911] "High-Performance" "Centre"
[57913] "HPC" "Kalinga"
[57915] "Stadium" "Bhubaneswar"
[57917] "opened" "vision"
[57919] "groom" "upcoming"
[57921] "sporting" "talent"
[57923] "hockey" "produce"
[57925] "world-class" "sportspersons"
[57927] "Centre" "commenced"
[57929] "boys" "resident"
[57931] "programme" "Kalinga"
[57933] "Hockey" "Complex"
[57935] "31" "cadets"
[57937] "selected" "programme"
[57939] "also" "12"
[57941] "grassroots" "centres"
[57943] "2,500" "young"
[57945] "trainees" "trained"
[57947] "state" "hosted"
[57949] "major" "hockey"
[57951] "tournaments" "last"
[57953] "five" "years"
[57955] "hosted" "World"
[57957] "Cup" "2018"
[57959] "2014" "Champions"
[57961] "Trophy" "Hockey"
[57963] "World" "League"
[57965] "final" "2017"
[57967] "Odisha" "forthe"
[57969] "second" "time"
[57971] "host" "ofthe"
[57973] "Men's" "Hockey"
[57975] "World" "Cup"
[57977] "played" "Bhubaneswar"
[57979] "Rourkela" "2023"
[57981] "Rourkela" "Patnaik"
[57983] "government" "building"
[57985] "country's" "biggest"
[57987] "hockey" "stadium"
[57989] "seating" "capacity"
[57991] "20,000" "spectators"
[57993] "named" "tribal"
[57995] "leader" "Birsa"
[57997] "Munda" "Odisha"
[57999] "also" "planning"
[58001] "lay" "synthetic"
[58003] "hockey" "turf"
[58005] "17" "blocks"
[58007] "Sundargarh" "district"
[58009] "20" "sports"
[58011] "hostels" "state"
[58013] "two" "Sundargarh"
[58015] "dedicated" "hockey"
[58017] "first-ever" "Khelo"
[58019] "India" "University"
[58021] "Games" "held"
[58023] "Odisha" "4,000"
[58025] "athletes" "176"
[58027] "universities" "participated"
[58029] "211" "events"
[58031] "17" "sports"
[58033] "events" "period"
[58035] "10" "days"
[58037] "Classification" "Language"
[58039] "ENGLISH" "Publication-Type"
[58041] "Newspaper" "Body"
[58043] "India" "July"
[58045] "24" "Saturday"
[58047] "remember" "rest"
[58049] "life" "Indian"
[58051] "weightlifter" "Mirabai"
[58053] "Chanu" "wrote"
[58055] "name" "annals"
[58057] "Indian" "sporting"
[58059] "history" "becoming"
[58061] "first" "Indian"
[58063] "woman" "win"
[58065] "silver" "medal"
[58067] "country" "weightlifting"
[58069] "second" "Indian"
[58071] "woman" "win"
[58073] "Olympic" "medal"
[58075] "since" "Karnam"
[58077] "Malleswari's" "bronze"
[58079] "Sydney" "Games"
[58081] "2000" "Chanu's"
[58083] "smiles" "podium"
[58085] "hidden" "due"
[58087] "mask" "wearing"
[58089] "face" "part"
[58091] "Covid-19" "protocols"
[58093] "Games" "know"
[58095] "journey" "medal"
[58097] "know" "big"
[58099] "Manipuri" "athlete"
[58101] "now" "26"
[58103] "made" "Olympics"
[58105] "debut" "Rio"
[58107] "de" "Janerio"
[58109] "2016" "young"
[58111] "21-year-old" "first"
[58113] "big" "global"
[58115] "Games" "life"
[58117] "turned" "disaster"
[58119] "failed" "failed"
[58121] "finish" "48kg"
[58123] "category" "failing"
[58125] "lift" "104"
[58127] "kg" "first"
[58129] "attempt" "clean"
[58131] "jerk" "failed"
[58133] "twice" "attempts"
[58135] "pick" "106"
[58137] "kg" "second"
[58139] "third" "attempt"
[58141] "Indian" "simply"
[58143] "lift" "weight"
[58145] "result" "one"
[58147] "two" "lifters"
[58149] "pool" "12"
[58151] "term" "Finish"
[58153] "DNF" "written"
[58155] "front" "name"
[58157] "young" "Chanu"
[58159] "tears" "eyes"
[58161] "day" "let"
[58163] "disappointment" "bog"
[58165] "year" "later"
[58167] "Chanu" "became"
[58169] "world" "champion"
[58171] "won" "gold"
[58173] "medal" "48"
[58175] "kg" "category"
[58177] "lifting" "194"
[58179] "kg" "total"
[58181] "85" "kg"
[58183] "snatch" "109"
[58185] "kg" "clean"
[58187] "jerk" "2017"
[58189] "World" "Weightlifting"
[58191] "Championships" "held"
[58193] "Anaheim" "USA"
[58195] "effort" "her's"
[58197] "also" "competition"
[58199] "record" "stop"
[58201] "constant" "desire"
[58203] "achieve" "success"
[58205] "led" "win"
[58207] "gold" "medal"
[58209] "2018" "Commonwealth"
[58211] "Games" "Gold"
[58213] "Coast" "Australia"
[58215] "total" "lift"
[58217] "196" "kg"
[58219] "giving" "yellow"
[58221] "metal" "Born"
[58223] "village" "200"
[58225] "kilometres" "away"
[58227] "state" "capital"
[58229] "Imphal" "young"
[58231] "Mirabai" "fell"
[58233] "love" "sport"
[58235] "weightlifting" "saw"
[58237] "legendary" "Kunjarani"
[58239] "Devi" "represent"
[58241] "India" "2004"
[58243] "Athens" "Olympics"
[58245] "first" "started"
[58247] "practicing" "2007"
[58249] "finally" "convincing"
[58251] "parents" "let"
[58253] "make" "sport"
[58255] "career" "even"
[58257] "proper" "weights"
[58259] "train" "journey"
[58261] "led" "breaking"
[58263] "idol's" "Kujarani"
[58265] "Devi's" "national"
[58267] "record" "2016"
[58269] "now" "culminated"
[58271] "giving" "India"
[58273] "first" "medal"
[58275] "Tokyo" "Olympics"
[58277] "Published" "HT"
[58279] "Digital" "Content"
[58281] "Services" "permission"
[58283] "Hindustan" "Times"
[58285] "query" "respect"
[58287] "article" "content"
[58289] "requirement" "please"
[58291] "contact" "Editor"
[58293] "Classification" "Language"
[58295] "ENGLISH" "Publication-Type"
[58297] "Newswire" "Body"
[58299] "India" "Aug"
[58301] "1" "Manipur-based"
[58303] "film" "production"
[58305] "company" "announced"
[58307] "plans" "make"
[58309] "biopic" "life"
[58311] "Saikhom" "Mirabai"
[58313] "Chanu" "won"
[58315] "country's" "first"
[58317] "silver" "medal"
[58319] "women's" "49"
[58321] "kg" "weightlifting"
[58323] "event" "total"
[58325] "lift" "202"
[58327] "kg" "ongoing"
[58329] "Tokyo" "Olympics"
[58331] "Seuti" "Films"
[58333] "Production" "company's"
[58335] "chairman" "Manaobi"
[58337] "MM" "said"
[58339] "making" "feature"
[58341] "film" "based"
[58343] "Mirabai" "Chanu's"
[58345] "life" "various"
[58347] "incidents" "life"
[58349] "Seuti" "Films"
[58351] "signed" "agreement"
[58353] "star" "weightlifter"
[58355] "family" "Nongpok"
[58357] "Kakching" "village"
[58359] "residence" "Manipur's"
[58361] "Imphal" "East"
[58363] "district" "making"
[58365] "film" "screenplay"
[58367] "dialogue" "film"
[58369] "written" "Manaobi"
[58371] "MM" "directed"
[58373] "OC" "Meira"
[58375] "produced" "RK"
[58377] "Nalini" "Devi"
[58379] "proposed" "film"
[58381] "showcase" "Mirabai's"
[58383] "childhood" "life"
[58385] "village" "introduction"
[58387] "training" "weightlifting"
[58389] "participation" "national"
[58391] "international" "events"
[58393] "lastly" "win"
[58395] "Tokyo" "Olympics"
[58397] "also" "highlight"
[58399] "experiences" "city"
[58401] "incidents" "realistic"
[58403] "manner" "film"
[58405] "also" "subtitled"
[58407] "English" "Indian"
[58409] "languages" "according"
[58411] "press" "release"
[58413] "issued" "Seuti"
[58415] "Films" "Production"
[58417] "Mirabai" "became"
[58419] "first" "Indian"
[58421] "win" "medal"
[58423] "Tokyo" "Olympics"
[58425] "also" "country's"
[58427] "first" "silver"
[58429] "medallist" "women's"
[58431] "Weightlifting" "lifting"
[58433] "84" "87"
[58435] "kg" "weights"
[58437] "successfully" "behind"
[58439] "China's" "Zhihu"
[58441] "lifted" "94"
[58443] "kg" "create"
[58445] "Olympic" "record"
[58447] "win" "gold"
[58449] "Chanu" "also"
[58451] "became" "second"
[58453] "Indian" "woman"
[58455] "win" "weightlifting"
[58457] "medal" "Olympics"
[58459] "Karnam" "Malleswari"
[58461] "first" "Indian"
[58463] "woman" "win"
[58465] "bronze" "medal"
[58467] "2000" "Sydney"
[58469] "Olympics" "Published"
[58471] "HT" "Digital"
[58473] "Content" "Services"
[58475] "permission" "Hindustan"
[58477] "Times" "query"
[58479] "respect" "article"
[58481] "content" "requirement"
[58483] "please" "contact"
[58485] "Editor" "Classification"
[58487] "Language" "ENGLISH"
[58489] "Publication-Type" "Newswire"
[58491] "Body" "Deepika"
[58493] "Kumari" "crashes"
[58495] "quarter-finals" "Shooters"
[58497] "continue" "tragic"
[58499] "run" "Avinash"
[58501] "Sable" "breaks"
[58503] "national" "record"
[58505] "can" "go"
[58507] "one" "memorable"
[58509] "days" "India's"
[58511] "Tokyo" "Olympics"
[58513] "journey" "Primarily"
[58515] "today's" "outing"
[58517] "gives" "hope"
[58519] "medals" "courtesy"
[58521] "Lovlina" "Borgohain"
[58523] "PV" "Sindhu"
[58525] "Well" "good"
[58527] "news" "Indian"
[58529] "women's" "hockey"
[58531] "team" "found"
[58533] "mojo" "back"
[58535] "win" "Ireland"
[58537] "men" "clinched"
[58539] "third" "straight"
[58541] "game" "starting"
[58543] "quarter-finals" "journey"
[58545] "sad" "note"
[58547] "archer" "Deepika"
[58549] "Kumari" "ended"
[58551] "stint" "anexit"
[58553] "quarter-finals" "round-up"
[58555] "happened" "India"
[58557] "today" "Tokyo"
[58559] "Boxing" "Lovlina"
[58561] "shines" "Simranjit"
[58563] "knocked" "highlight"
[58565] "day" "Lovlina"
[58567] "Borgohain" "69kg"
[58569] "assured" "India"
[58571] "first" "boxing"
[58573] "medal" "ongoing"
[58575] "Olympic" "Games"
[58577] "upstaged" "former"
[58579] "world" "champion"
[58581] "Nien-Chin" "Chen"
[58583] "Chinese" "Taipei"
[58585] "enter" "semifinals"
[58587] "23-year-old" "Assam"
[58589] "boxer" "prevailed"
[58591] "4-1" "make"
[58593] "last-four" "square"
[58595] "reigning" "world"
[58597] "champion" "Busenaz"
[58599] "Surmeneli" "Turkey"
[58601] "hammered" "Ukraine's"
[58603] "Anna" "Lysenko"
[58605] "quarterfinal" "bout"
[58607] "Borgohain" "two-time"
[58609] "world" "championship"
[58611] "bronze-medallist" "teh"
[58613] "first" "female"
[58615] "boxer" "Assam"
[58617] "qualify" "Games"
[58619] "displayed" "tremendous"
[58621] "calm" "face"
[58623] "plucky" "opponent"
[58625] "beaten" "past"
[58627] "Earlier" "Simranjit"
[58629] "Kaur" "60kg"
[58631] "lost" "Thailand's"
[58633] "Sudaporn" "Seesondee"
[58635] "pre-quarterfinals" "make"
[58637] "early" "exit"
[58639] "Games" "26-year-old"
[58641] "Indian" "seeded"
[58643] "fourth" "went"
[58645] "0-5" "despite"
[58647] "gritty" "performance"
[58649] "Badminton" "Sindhu"
[58651] "storms" "semis"
[58653] "Reigning" "world"
[58655] "champion" "PV"
[58657] "Sindhu" "kept"
[58659] "alive" "India's"
[58661] "hopes" "first-ever"
[58663] "Olympic" "gold"
[58665] "badminton" "reaching"
[58667] "semifinals" "women's"
[58669] "singles" "straight-game"
[58671] "win" "world"
[58673] "5" "Japanese"
[58675] "Akane" "Yamaguchi"
[58677] "26-year-old" "Indian"
[58679] "won" "silver"
[58681] "2016" "Rio"
[58683] "Olympics" "defended"
[58685] "brilliantly" "rode"
[58687] "attacking" "all-round"
[58689] "game" "outclass"
[58691] "fourth" "seeded"
[58693] "Yamaguchi" "21-13"
[58695] "22-20" "56-minute"
[58697] "quarterfinal" "clash"
[58699] "Musashino" "Forest"
[58701] "Plaza" "first"
[58703] "game" "mostly"
[58705] "control" "gaining"
[58707] "lead" "take"
[58709] "easy" "previous"
[58711] "matches" "came"
[58713] "back" "maintained"
[58715] "lead" "finished"
[58717] "Sindhu" "seeded"
[58719] "sixth" "said"
[58721] "second" "game"
[58723] "leading" "came"
[58725] "back" "still"
[58727] "fought" "back"
[58729] "never" "lost"
[58731] "hope" "continued"
[58733] "tempo" "much"
[58735] "happy" "way"
[58737] "controlled" "shuttle"
[58739] "many" "errors"
[58741] "added" "Archery"
[58743] "Deepika" "Kumari"
[58745] "crashes" "Kumari's"
[58747] "quest" "Olympic"
[58749] "medal" "ended"
[58751] "heartbreak" "third"
[58753] "time" "surrendered"
[58755] "tamely" "Korean"
[58757] "top" "seed"
[58759] "San" "straight"
[58761] "sets" "quarters"
[58763] "six" "minutes"
[58765] "fancied" "Indian"
[58767] "misfired" "three"
[58769] "7s" "row"
[58771] "drilling" "many"
[58773] "10s" "succession"
[58775] "snuff" "chance"
[58777] "comeback" "0-2"
[58779] "opening" "set"
[58781] "perfect" "opening"
[58783] "set" "30"
[58785] "closed" "despite"
[58787] "shooting" "red-circle"
[58789] "thrice" "succession"
[58791] "7-8-9" "second"
[58793] "third" "sets"
[58795] "sure" "happened"
[58797] "tried" "hard"
[58799] "perform" "expectations"
[58801] "Deepika" "shot"
[58803] "pathetic" "four"
[58805] "7s" "seven"
[58807] "arrows" "said"
[58809] "loss" "Yumenoshima"
[58811] "Park" "Athletics"
[58813] "Sable's" "record"
[58815] "rest" "collapse"
[58817] "Avinash" "Sable"
[58819] "shattered" "3000m"
[58821] "steeplechase" "national"
[58823] "record" "failed"
[58825] "qualify" "final"
[58827] "sprinter" "Dutee"
[58829] "Chand" "produced"
[58831] "below-par" "performance"
[58833] "make" "exit"
[58835] "Tokyo" "Olympics"
[58837] "MP" "Jabir"
[58839] "also" "brought"
[58841] "rear" "men's"
[58843] "400m" "hurdles"
[58845] "mixed" "4x400m"
[58847] "relay" "team"
[58849] "finished" "eighth"
[58851] "last" "second"
[58853] "heat" "race"
[58855] "Indians" "made"
[58857] "disappointing" "start"
[58859] "athletics" "campaign"
[58861] "26-year-old" "Sable"
[58863] "failed" "qualify"
[58865] "final" "despite"
[58867] "clocking" "better"
[58869] "time" "top"
[58871] "three" "another"
[58873] "heat" "race"
[58875] "clocked" "8"
[58877] "minutes" "18.12"
[58879] "seconds" "heat"
[58881] "number" "2"
[58883] "finish" "seventh"
[58885] "better" "earlier"
[58887] "national" "record"
[58889] "8" "20.20"
[58891] "set" "Federation"
[58893] "Cup" "March"
[58895] "evening" "session"
[58897] "Indian" "quartet"
[58899] "Muhammed" "Anas"
[58901] "Yahiya" "Ravathi"
[58903] "Veeramani" "Subha"
[58905] "Venkatesan" "Rajiv"
[58907] "Arokia" "clocked"
[58909] "season's" "best"
[58911] "timing" "3"
[58913] "19.93" "good"
[58915] "enough" "bottom-place"
[58917] "finish" "heat"
[58919] "number" "2"
[58921] "Equestrian" "Fouaad"
[58923] "Mirza" "made"
[58925] "impressive" "debut"
[58927] "Equestrian" "achieving"
[58929] "28" "penalty"
[58931] "points" "ranking"
[58933] "6th" "back"
[58935] "Day" "2"
[58937] "Golf" "Indian"
[58939] "golfer" "Anirban"
[58941] "Lahiri" "endured"
[58943] "erratic" "day"
[58945] "course" "even-par"
[58947] "16" "holes"
[58949] "second" "round"
[58951] "suspended" "due"
[58953] "persistent" "thunderstorms"
[58955] "east" "course"
[58957] "Kasumigaseki" "Country"
[58959] "Club" "Friday"
[58961] "Lahiri" "4-under"
[58963] "first" "day"
[58965] "one" "16"
[58967] "golfers" "yet"
[58969] "finish" "rounds"
[58971] "tied" "20th"
[58973] "time" "suspension"
[58975] "play" "return"
[58977] "Saturday" "morning"
[58979] "7.45" "third"
[58981] "round" "start"
[58983] "Lahiri" "bogeyed"
[58985] "second" "made"
[58987] "birdie" "sixth"
[58989] "turn" "even"
[58991] "par" "back"
[58993] "nine" "birdied"
[58995] "10th" "dropped"
[58997] "shot" "13th"
[58999] "Hockey" "Men"
[59001] "continue" "winning"
[59003] "run" "Striker"
[59005] "Gurjant" "Singh"
[59007] "twice" "target"
[59009] "India" "comfortably"
[59011] "outclassed" "hosts"
[59013] "Japan" "5-3"
[59015] "complete" "pool"
[59017] "proceedings" "four"
[59019] "victories" "already"
[59021] "sealed" "quarter-final"
[59023] "berth" "Apart"
[59025] "Gurjant" "17th"
[59027] "56th" "Harmanpreet"
[59029] "Singh" "13th"
[59031] "Shamsher" "Singh"
[59033] "34th" "Nilakanta"
[59035] "Sharma" "51st"
[59037] "scored" "India"
[59039] "hand" "eight-time"
[59041] "Olympic" "champions"
[59043] "third" "consecutive"
[59045] "win" "Pool"
[59047] "Oi" "Hockey"
[59049] "Stadium" "Kenta"
[59051] "Tanaka" "19th"
[59053] "Kota" "Watanabe"
[59055] "33rd" "Kazuma"
[59057] "Murata" "59th"
[59059] "goal" "getters"
[59061] "Japan" "already"
[59063] "knocked" "last-eight"
[59065] "race" "ahead"
[59067] "Friday's" "tie"
[59069] "Welcome" "win"
[59071] "eves" "Navneet"
[59073] "Kaur" "scored"
[59075] "late" "winner"
[59077] "Indian" "women's"
[59079] "hockey" "team"
[59081] "kept" "quarterfinals"
[59083] "hopes" "alive"
[59085] "Olympics" "1-0"
[59087] "win" "Ireland"
[59089] "must-win" "penultimate"
[59091] "pool" "match"
[59093] "Friday" "goal-less"
[59095] "three" "quarters"
[59097] "India" "completely"
[59099] "dominated" "failed"
[59101] "breach" "Irish"
[59103] "defence" "led"
[59105] "goalkeeper" "Ayeisha"
[59107] "McFerran" "Navneet"
[59109] "finally" "found"
[59111] "back" "net"
[59113] "57th" "minute"
[59115] "bring" "smiles"
[59117] "Indian" "faces"
[59119] "Needing" "win"
[59121] "keep" "hopes"
[59123] "alive" "three"
[59125] "consecutive" "losses"
[59127] "India" "wait"
[59129] "anxiously" "57"
[59131] "minutes" "despite"
[59133] "dominant" "team"
[59135] "display" "creating"
[59137] "innumerable" "scoring"
[59139] "chances" "Sailing"
[59141] "Saravanan" "third"
[59143] "Kumanan" "dissapoints"
[59145] "Already" "medal"
[59147] "contention" "Indian"
[59149] "sailor" "Vishnu"
[59151] "Saravanan" "finished"
[59153] "commendable" "third"
[59155] "one" "two"
[59157] "laser" "event"
[59159] "races" "Friday"
[59161] "saw" "move"
[59163] "three" "places"
[59165] "20th" "position"
[59167] "overall" "finishing"
[59169] "third" "race"
[59171] "number" "nine"
[59173] "Saravanan" "however"
[59175] "ended" "15th"
[59177] "next" "remain"
[59179] "20th" "overall"
[59181] "35" "sailors"
[59183] "laser" "event"
[59185] "156" "net"
[59187] "points" "medal"
[59189] "race" "remains"
[59191] "competition" "Enoshima"
[59193] "Yacht" "Harbour"
[59195] "men's" "skiff"
[59197] "49er" "Indian"
[59199] "pair" "KC"
[59201] "Ganapathy" "Varun"
[59203] "Thakkar" "finished"
[59205] "17th" "11th"
[59207] "16th" "three"
[59209] "races" "still"
[59211] "occupy" "overall"
[59213] "17th" "spot"
[59215] "19" "competitors"
[59217] "116" "net"
[59219] "points" "Three"
[59221] "races" "medal"
[59223] "round" "still"
[59225] "remain" "competition"
[59227] "Nethra" "Kumanan"
[59229] "continued" "disappointing"
[59231] "form" "dropped"
[59233] "four" "places"
[59235] "35th" "251"
[59237] "net" "points"
[59239] "44" "sailors"
[59241] "women's" "laser"
[59243] "radial" "finishing"
[59245] "37th" "38th"
[59247] "ninth" "tenth"
[59249] "races" "medal"
[59251] "race" "remains"
[59253] "competition" "event"
[59255] "consists" "series"
[59257] "races" "Points"
[59259] "race" "awarded"
[59261] "according" "position"
[59263] "winner" "gets"
[59265] "one" "point"
[59267] "second-placed" "finisher"
[59269] "scores" "two"
[59271] "Shooting" "Bhaker"
[59273] "Sarnobat" "Indian"
[59275] "shooters" "Manu"
[59277] "Bhaker" "Rahi"
[59279] "Sarnobat" "crashed"
[59281] "25m" "pistol"
[59283] "qualifications" "rapid"
[59285] "fire" "stage"
[59287] "finished" "outside"
[59289] "top-8" "Tokyo"
[59291] "Olympics" "Friday"
[59293] "means" "pistol"
[59295] "shooters" "return"
[59297] "home" "empty-handed"
[59299] "second" "straight"
[59301] "time" "Olympics"
[59303] "Bhaker" "shot"
[59305] "290" "rapid"
[59307] "fire" "stage"
[59309] "qualifications" "total"
[59311] "582" "day"
[59313] "scoring" "290"
[59315] "precision" "Akasa"
[59317] "Shooting" "Range"
[59319] "experienced" "Sarnobat"
[59321] "managed" "573"
[59323] "287" "+"
[59325] "286" "field"
[59327] "comprised" "44"
[59329] "shooters" "qualifications"
[59331] "Placed" "impressive"
[59333] "fifth" "first"
[59335] "stage" "qualifications"
[59337] "19-year-old" "Bhaker"
[59339] "faltered" "promising"
[59341] "start" "slipping"
[59343] "two" "8s"
[59345] "many" "9s"
[59347] "numbers" "led"
[59349] "downfall" "turned"
[59351] "forgettable" "maiden"
[59353] "appearance" "Games"
[59355] "Classification" "Language"
[59357] "ENGLISH" "Publication-Type"
[59359] "Newspaper" "Body"
[59361] "Readers" "write"
[59363] "Calcutta" "Noida"
[59365] "Chennai" "Hyderabad"
[59367] "Nellimarla" "Moment"
[59369] "glory" "Sir"
[59371] "India" "reasons"
[59373] "elated" "first"
[59375] "time" "history"
[59377] "country" "won"
[59379] "Olympic" "medal"
[59381] "first" "day"
[59383] "event" "Chanu"
[59385] "lifts" "India"
[59387] "bronze" "age"
[59389] "July" "25"
[59391] "Mirabai" "Chanu"
[59393] "failed" "three"
[59395] "attempts" "clean"
[59397] "jerk" "section"
[59399] "Rio" "de"
[59401] "Janeiro" "five"
[59403] "years" "back"
[59405] "winning" "silver"
[59407] "medal" "Tokyo"
[59409] "nothing" "less"
[59411] "redemption" "show"
[59413] "grit" "literally"
[59415] "lift" "weight"
[59417] "also" "bear"
[59419] "weight" "hopes"
[59421] "millions" "disappoint"
[59423] "Chanu's" "silver"
[59425] "hopefully" "encourage"
[59427] "many" "youngsters"
[59429] "pick" "sport"
[59431] "career" "May"
[59433] "first" "many"
[59435] "medals" "India"
[59437] "wins" "edition"
[59439] "Bal" "Govind"
[59441] "Noida" "Sir"
[59443] "Mirabai" "Chanu"
[59445] "must" "congratulated"
[59447] "ending" "India's"
[59449] "two-decade" "long"
[59451] "wait" "medal"
[59453] "weight-lifting" "Olympics"
[59455] "winning" "silver"
[59457] "time" "historic"
[59459] "triumph" "fruit"
[59461] "five" "years"
[59463] "hard" "work"
[59465] "failure" "Rio"
[59467] "Olympics" "Chanu"
[59469] "won" "silver"
[59471] "opening" "day"
[59473] "help" "boost"
[59475] "morale" "entire"
[59477] "contingent" "motivate"
[59479] "athletes" "win"
[59481] "medals" "time"
[59483] "also" "encouraging"
[59485] "Indian" "Olympic"
[59487] "Association" "decided"
[59489] "reward" "coach"
[59491] "Vijay" "Shankar"
[59493] "Rs" "10"
[59495] "lakh" "seems"
[59497] "pittance" "association"
[59499] "increase" "amounts"
[59501] "Rs" "20"
[59503] "lakh" "gold"
[59505] "medal" "Rs"
[59507] "15" "lakh"
[59509] "silver" "Rs"
[59511] "10" "lakh"
[59513] "bronze" "winners"
[59515] "coaches" "Janaki"
[59517] "Mahadevan" "Chennai"
[59519] "Sir" "Congratulations"
[59521] "Mirabai" "Chanu"
[59523] "creating" "history"
[59525] "Tokyo" "Olympics"
[59527] "winning" "first"
[59529] "silver" "medal"
[59531] "India" "weight-lifting"
[59533] "Interestingly" "also"
[59535] "first" "time"
[59537] "India" "won"
[59539] "medal" "opening"
[59541] "day" "Olympics"
[59543] "edition" "win"
[59545] "Chanu" "buried"
[59547] "ghosts" "2016"
[59549] "Games" "Rio"
[59551] "de" "Janeiro"
[59553] "finished" "without"
[59555] "successful" "lifts"
[59557] "13-year" "old"
[59559] "girl" "low-income"
[59561] "family" "living"
[59563] "nondescript" "village"
[59565] "Imphal" "Chanu"
[59567] "tenacious" "uncompromising"
[59569] "dream" "earning"
[59571] "fame" "sportsperson"
[59573] "efforts" "years"
[59575] "rigorous" "workouts"
[59577] "travelling" "22"
[59579] "kilometres" "bus"
[59581] "every" "day"
[59583] "early" "morning"
[59585] "training" "finally"
[59587] "borne" "fruit"
[59589] "Ranganathan" "Sivakumar"
[59591] "Chennai" "Sir"
[59593] "first" "day"
[59595] "Tokyo" "Olympics"
[59597] "marked" "Mirabai"
[59599] "Chanu" "winning"
[59601] "silver" "medal"
[59603] "Clearly" "Indian"
[59605] "women" "prove"
[59607] "mettle" "every"
[59609] "field" "One"
[59611] "must" "also"
[59613] "acknowledge" "efforts"
[59615] "sports" "ministry"
[59617] "initiatives" "Khelo"
[59619] "India" "boon"
[59621] "sports" "enthusiasts"
[59623] "encouraged" "especially"
[59625] "rural" "backgrounds"
[59627] "display" "talents"
[59629] "days" "several"
[59631] "athletes" "rural"
[59633] "areas" "take"
[59635] "interest" "sports"
[59637] "youngsters" "rural"
[59639] "urban" "parts"
[59641] "country" "select"
[59643] "sport" "career"
[59645] "sports" "ministry"
[59647] "open" "sports"
[59649] "universities" "Indian"
[59651] "cities" "districts"
[59653] "help" "sports"
[59655] "lovers" "acquire"
[59657] "basic" "education"
[59659] "field" "future"
[59661] "Indian" "sports"
[59663] "looks" "bright"
[59665] "one" "expects"
[59667] "days" "come"
[59669] "Indians" "dominate"
[59671] "world" "sports"
[59673] "international" "level"
[59675] "Syed" "Nissar"
[59677] "Hyderabad" "Sir"
[59679] "Mirabai" "Chanu"
[59681] "must" "lauded"
[59683] "winning" "silver"
[59685] "medal" "good"
[59687] "start" "prestigious"
[59689] "global" "sports"
[59691] "event" "200"
[59693] "participating" "countries"
[59695] "encouraging" "country"
[59697] "proper" "planning"
[59699] "focus" "demography"
[59701] "India" "can"
[59703] "reap" "rich"
[59705] "dividends" "regard"
[59707] "competitive" "sports"
[59709] "improve" "records"
[59711] "field" "Young"
[59713] "sportspersons" "country"
[59715] "shining" "spite"
[59717] "odds" "D.V.G"
[59719] "Sankararao" "Nellimarla"
[59721] "Andhra" "Pradesh"
[59723] "Sir" "star"
[59725] "weightlifter" "Mirabai"
[59727] "Chanu" "deserves"
[59729] "congratulated" "winning"
[59731] "silver" "women's"
[59733] "49" "kilogrammes"
[59735] "category" "Undoubtedly"
[59737] "stunning" "achievement"
[59739] "ace" "sportswoman"
[59741] "boost" "confidence"
[59743] "Indian" "players"
[59745] "participating" "edition"
[59747] "one" "hopes"
[59749] "helps" "clinch"
[59751] "medals" "country"
[59753] "Sourish" "Misra"
[59755] "Calcutta" "Wrong"
[59757] "list" "Sir"
[59759] "Given" "deteriorating"
[59761] "condition" "Great"
[59763] "Barrier" "Reef"
[59765] "Unesco" "rightly"
[59767] "decided" "downgrade"
[59769] "World" "Heritage"
[59771] "status" "Australia"
[59773] "managed" "defer"
[59775] "move" "asking"
[59777] "time" "work"
[59779] "conservation" "measures"
[59781] "poor" "excuse"
[59783] "government" "issued"
[59785] "warning" "early"
[59787] "2014" "danger"
[59789] "list" "protected"
[59791] "Great" "Barrier"
[59793] "Reef" "extent"
[59795] "clearly" "important"
[59797] "government" "protect"
[59799] "reputation" "One"
[59801] "hopes" "country"
[59803] "wakes" "threat"
[59805] "climate" "change"
[59807] "late" "Sraddha"
[59809] "Mehta" "Calcutta"
[59811] "Classification" "Language"
[59813] "ENGLISH" "Publication-Type"
[59815] "Newspaper" "Body"
[59817] "Reigning" "world"
[59819] "champion" "P.V"
[59821] "Sindhu" "advanced"
[59823] "pre-quarterfinals" "women's"
[59825] "singles" "badminton"
[59827] "event" "Tokyo"
[59829] "Olympics" "beating"
[59831] "Hong" "Kong's"
[59833] "NY" "Cheung"
[59835] "group" "J"
[59837] "match" "Japan"
[59839] "Wednesday" "26-year-old"
[59841] "Indian" "claimed"
[59843] "silver" "medal"
[59845] "last" "edition"
[59847] "Rio" "prevailed"
[59849] "world" "34"
[59851] "Cheung" "21-9"
[59853] "21-16" "35-minute"
[59855] "match" "top"
[59857] "group" "Sindhu's"
[59859] "sixth" "win"
[59861] "Cheung" "many"
[59863] "meetings" "World"
[59865] "7" "Sindhu"
[59867] "meet" "Denmark's"
[59869] "world" "number"
[59871] "12" "Mia"
[59873] "Blichfeldt" "topped"
[59875] "Group" "Sindhu"
[59877] "4-1" "head-to-head"
[59879] "record" "Blichfeldt"
[59881] "whose" "win"
[59883] "Indian" "Yonex"
[59885] "Thailand" "Open"
[59887] "earlier" "year"
[59889] "shuttler" "Hyderabad"
[59891] "seeded" "sixth"
[59893] "defeated" "Ksenia"
[59895] "Polikarpova" "Israel"
[59897] "opening" "match"
[59899] "Sindhu" "used"
[59901] "repertoire" "strokes"
[59903] "ability" "vary"
[59905] "pace" "troubled"
[59907] "Hong" "Kong"
[59909] "player" "making"
[59911] "run" "around"
[59913] "court" "Indian"
[59915] "come" "perfect"
[59917] "placement" "Cheung"
[59919] "got" "points"
[59921] "deceptive" "cross"
[59923] "court" "returns"
[59925] "committed" "many"
[59927] "unforced" "errors"
[59929] "chance" "putting"
[59931] "pressure" "Indian"
[59933] "Sindhu" "led"
[59935] "6-2" "early"
[59937] "galloping" "10-3"
[59939] "committed" "rare"
[59941] "error" "entering"
[59943] "interval" "11-5"
[59945] "Indian" "trouble"
[59947] "resumption" "zoomed"
[59949] "20-9" "pocketed"
[59951] "opening" "game"
[59953] "Cheung" "netted"
[59955] "return" "Cheung"
[59957] "looking" "script"
[59959] "incredible" "turnaround"
[59961] "second" "game"
[59963] "extended" "rallies"
[59965] "Sindhu" "struggling"
[59967] "control" "shuttle"
[59969] "duo" "moved"
[59971] "6-6" "8-8"
[59973] "Sindhu" "also"
[59975] "made" "judgement"
[59977] "errors" "sending"
[59979] "shuttle" "wide"
[59981] "hand" "slender"
[59983] "one" "point"
[59985] "advantage" "opponent"
[59987] "Cheung" "tried"
[59989] "put" "pressure"
[59991] "Sindhu" "Indian"
[59993] "wriggled" "better"
[59995] "strokeplay" "included"
[59997] "straight" "line"
[59999] "smashes" "Sindhu"
[60001] "moved" "19-14"
[60003] "grabbing" "six"
[60005] "match" "points"
[60007] "missed" "lines"
[60009] "netted" "shot"
[60011] "squander" "two"
[60013] "match" "points"
[60015] "sealing" "smash"
[60017] "Later" "day"
[60019] "B" "Sai"
[60021] "Praneeth" "take"
[60023] "M" "Caljouw"
[60025] "Netherlands" "second"
[60027] "final" "men's"
[60029] "singles" "Group"
[60031] "D" "match"
[60033] "Tuesday" "Indian"
[60035] "shuttlers" "Chirag"
[60037] "Shetty" "Satwiksairaj"
[60039] "Rankireddy" "suffered"
[60041] "heartbreak" "failed"
[60043] "qualify" "quarterfinals"
[60045] "Tokyo" "Olympics"
[60047] "despite" "winning"
[60049] "two" "matches"
[60051] "group" "Indian"
[60053] "duo" "emerged"
[60055] "victorious" "England"
[60057] "pair" "Ben"
[60059] "Lane" "Sean"
[60061] "Vendy" "final"
[60063] "Group" "match"
[60065] "still" "missed"
[60067] "qualifying" "quarterfinals"
[60069] "three" "pairs"
[60071] "ended" "points"
[60073] "games" "won"
[60075] "considered" "identify"
[60077] "qualifiers" "Classification"
[60079] "Language" "ENGLISH"
[60081] "Publication-Type" "Newspaper"
[60083] "Body" "India"
[60085] "Aug" "5"
[60087] "Moments" "India"
[60089] "men's" "hockey"
[60091] "team" "clinched"
[60093] "bronze" "medal"
[60095] "Tokyo" "Olympics"
[60097] "Thursday" "celebrations"
[60099] "broke" "Mithapur"
[60101] "native" "village"
[60103] "captain" "Manpreet"
[60105] "Singh" "teammates"
[60107] "Mandeep" "Singh"
[60109] "Varun" "Kumar"
[60111] "Jalandhar" "district"
[60113] "Four" "18-member"
[60115] "Team" "India"
[60117] "squad" "Jalandhar"
[60119] "district" "including"
[60121] "Hardik" "Singh"
[60123] "Khursopur" "village"
[60125] "Former" "Olympian"
[60127] "Congress" "MLA"
[60129] "Pargat" "Singh"
[60131] "also" "belongs"
[60133] "Mithapur" "Residents"
[60135] "Mithapur" "rushed"
[60137] "houses" "Manpreet"
[60139] "Mandeep" "Varun"
[60141] "celebrate" "much-awaited"
[60143] "medal" "41"
[60145] "years" "Manpreet's"
[60147] "house" "people"
[60149] "danced" "joy"
[60151] "beats" "dhol"
[60153] "mother" "Manjit"
[60155] "Kaur" "congratulated"
[60157] "captain" "historic"
[60159] "win" "video"
[60161] "call" "Bronze"
[60163] "equally" "precious"
[60165] "history" "made"
[60167] "Kin" "Hard"
[60169] "work" "12"
[60171] "years" "finally"
[60173] "borne" "fruit"
[60175] "Manpreet" "teammates"
[60177] "hopeful" "gold"
[60179] "bronze" "medal"
[60181] "equally" "precious"
[60183] "history" "made"
[60185] "India" "win"
[60187] "gold" "next"
[60189] "time" "Manjit"
[60191] "said" "said"
[60193] "Manpreet" "call"
[60195] "losing" "match"
[60197] "Australia" "upset"
[60199] "motivated" "focus"
[60201] "bronze" "medal"
[60203] "match" "said"
[60205] "Player" "Mandeep"
[60207] "Singh's" "father"
[60209] "Ravinder" "Singh"
[60211] "agreed" "historic"
[60213] "occasion" "proud"
[60215] "boys" "biggest"
[60217] "ever" "gift"
[60219] "Relatives" "friends"
[60221] "gathered" "Varun's"
[60223] "house" "father"
[60225] "Bhrama" "Nand"
[60227] "congratulated" "victory"
[60229] "families" "three"
[60231] "players" "also"
[60233] "paid" "obeisance"
[60235] "local" "gurdwara"
[60237] "Hardik" "Singh's"
[60239] "father" "Varinderpreet"
[60241] "Singh" "superintendent"
[60243] "police" "Batala"
[60245] "Residents" "native"
[60247] "Khursopur" "village"
[60249] "exchanged" "greetings"
[60251] "family" "match"
[60253] "Published" "HT"
[60255] "Digital" "Content"
[60257] "Services" "permission"
[60259] "Hindustan" "Times"
[60261] "query" "respect"
[60263] "article" "content"
[60265] "requirement" "please"
[60267] "contact" "Editor"
[60269] "Classification" "Language"
[60271] "ENGLISH" "Publication-Type"
[60273] "Newswire" "Body"
[60275] "23-year-old's" "words"
[60277] "describe" "felt"
[60279] "stand" "podium"
[60281] "Neeraj" "Chopra"
[60283] "words" "describe"
[60285] "felt" "stand"
[60287] "podium" "Tokyo"
[60289] "Saturday" "stand"
[60291] "podium" "Olympics"
[60293] "wearing" "gold"
[60295] "medal" "national"
[60297] "flag" "hoisted"
[60299] "national" "anthem"
[60301] "played" "feel"
[60303] "years" "hard"
[60305] "work" "paid"
[60307] "just" "explain"
[60309] "feeling" "words"
[60311] "can" "say"
[60313] "extremely" "proud"
[60315] "moment" "emotional"
[60317] "Neeraj" "said"
[60319] "interaction" "Tokyo"
[60321] "day" "gold"
[60323] "medal" "winning"
[60325] "feat" "Saturday"
[60327] "thinking" "improve"
[60329] "throw" "javelin"
[60331] "technical" "sport"
[60333] "small" "error"
[60335] "can" "lead"
[60337] "huge" "difference"
[60339] "distance" "Going"
[60341] "final" "confident"
[60343] "able" "better"
[60345] "personal" "best"
[60347] "mark" "true"
[60349] "winning" "Olympic"
[60351] "gold" "different"
[60353] "feeling" "altogether"
[60355] "Neeraj's" "gold"
[60357] "medal" "throw"
[60359] "87.58m" "fell"
[60361] "short" "personal"
[60363] "best" "88.07m"
[60365] "national" "record"
[60367] "set" "year"
[60369] "23-year-old's" "journey"
[60371] "since" "2019"
[60373] "easy" "Plagued"
[60375] "injury" "Covid-19"
[60377] "pandemic" "meant"
[60379] "missed" "training"
[60381] "competitions" "Tokyo"
[60383] "sojourn" "wiped"
[60385] "away" "negatives"
[60387] "went" "wrong"
[60389] "past" "two-three"
[60391] "years" "injury"
[60393] "pandemic" "lost"
[60395] "gold" "made"
[60397] "matters" "Now"
[60399] "can" "say"
[60401] "whatever" "happened"
[60403] "happened" "best"
[60405] "Neeraj" "now"
[60407] "wants" "come"
[60409] "home" "celebrate"
[60411] "loved" "ones"
[60413] "want" "go"
[60415] "home" "food"
[60417] "cooked" "mother"
[60419] "celebrate" "little"
[60421] "get" "back"
[60423] "training" "may"
[60425] "take" "part"
[60427] "meets" "year"
[60429] "really" "want"
[60431] "focus" "Asian"
[60433] "Games" "Commonwealth"
[60435] "Games" "next"
[60437] "year" "mother"
[60439] "waiting" "cook"
[60441] "golden" "boy"
[60443] "specially" "choorma"
[60445] "loves" "biopic"
[60447] "anvil" "want"
[60449] "focus" "sport"
[60451] "now" "wait"
[60453] "till" "career"
[60455] "really" "story"
[60457] "concluded" "smile"
[60459] "Classification" "Language"
[60461] "ENGLISH" "Publication-Type"
[60463] "Newspaper" "Body"
[60465] "Table" "tennis"
[60467] "champ" "Harmeet"
[60469] "Desai" "now"
[60471] "trains" "Germany"
[60473] "represents" "Loire"
[60475] "Nord" "Table"
[60477] "Tennis" "Club"
[60479] "French" "League"
[60481] "back" "hometown"
[60483] "Surat" "short"
[60485] "break" "tells"
[60487] "us" "spending"
[60489] "four" "months"
[60491] "France" "Germany"
[60493] "keen" "short"
[60495] "break" "meet"
[60497] "family" "players"
[60499] "training" "centre"
[60501] "gone" "participate"
[60503] "Olympics" "flew"
[60505] "India" "break"
[60507] "Harmeet's" "parents"
[60509] "tested" "positive"
[60511] "COVID-19" "earlier"
[60513] "year" "father"
[60515] "hospitalised" "Recalling"
[60517] "phase" "shares"
[60519] "really" "worried"
[60521] "parents" "even"
[60523] "though" "wanted"
[60525] "come" "back"
[60527] "possible" "due"
[60529] "prevailing" "circumstances"
[60531] "back" "pretty"
[60533] "emotional" "reunion"
[60535] "us" "Harmeet's"
[60537] "fianc" "é"
[60539] "e" "Krittwika"
[60541] "Sinha" "Roy"
[60543] "member" "Indian"
[60545] "women's" "TT"
[60547] "team" "also"
[60549] "come" "hometown"
[60551] "Kolkata" "spend"
[60553] "days" "Harmeet's"
[60555] "family" "shares"
[60557] "Krittwika" "mom"
[60559] "busy" "preparing"
[60561] "delicacies" "love"
[60563] "relishing" "maa"
[60565] "ke" "haath"
[60567] "ka" "khaana"
[60569] "coming" "coach"
[60571] "asked" "ensure"
[60573] "put" "two"
[60575] "kilos" "break"
[60577] "making" "sure"
[60579] "work" "gain"
[60581] "weight" "go"
[60583] "back" "Germany"
[60585] "plan" "strict"
[60587] "diet" "next"
[60589] "months" "Krittwika"
[60591] "also" "practising"
[60593] "together" "home"
[60595] "Recently" "Harmeet"
[60597] "celebrated" "birthday"
[60599] "home" "says"
[60601] "turned" "memorable"
[60603] "experience" "shares"
[60605] "small" "get-together"
[60607] "Krittwika" "gifted"
[60609] "bedsheets" "pillow"
[60611] "covers" "family"
[60613] "photos" "well"
[60615] "memorable" "moments"
[60617] "professional" "journey"
[60619] "like" "winning"
[60621] "Arjuna" "Award"
[60623] "fresh" "surge"
[60625] "number" "COVID-19"
[60627] "cases" "Europe"
[60629] "Harmeet" "says"
[60631] "stressed" "flying"
[60633] "back" "Germany"
[60635] "shares" "taken"
[60637] "doses" "COVID-19"
[60639] "vaccine" "feeling"
[60641] "little" "relaxed"
[60643] "Also" "since"
[60645] "fully" "vaccinated"
[60647] "now" "need"
[60649] "quarantine" "Talking"
[60651] "bio-bubbles" "table"
[60653] "tennis" "champ"
[60655] "says" "Every"
[60657] "sportsperson" "accept"
[60659] "get" "used"
[60661] "feel" "small"
[60663] "sacrifice" "need"
[60665] "make" "get"
[60667] "love" "play"
[60669] "sport" "missed"
[60671] "qualifying" "Olympics"
[60673] "time" "Harmeet"
[60675] "says" "made"
[60677] "determined" "shares"
[60679] "giving" "next"
[60681] "three" "years"
[60683] "ensure" "can"
[60685] "qualify" "next"
[60687] "Olympics" "Overall"
[60689] "optimistic" "India's"
[60691] "medal" "prospects"
[60693] "time" "believe"
[60695] "win" "10"
[60697] "Olympic" "medals"
[60699] "Krittwika" "Harmeet"
[60701] "getting" "married"
[60703] "December" "says"
[60705] "happen" "Kolkata"
[60707] "However" "right"
[60709] "now" "decided"
[60711] "big" "ceremony"
[60713] "depend" "COVID-19"
[60715] "situation" "Classification"
[60717] "Language" "ENGLISH"
[60719] "Publication-Type" "Newspaper"
[60721] "Body" "7.40am"
[60723] "Friday" "13-yearold"
[60725] "Soumili" "Guha"
[60727] "screaming" "sitting"
[60729] "TV" "Behala"
[60731] "home" "India"
[60733] "women's" "specialist"
[60735] "drag" "flicker"
[60737] "Gurjit" "Kaur"
[60739] "powered" "equaliser"
[60741] "hockey" "bronze"
[60743] "medal" "match"
[60745] "Great" "Britain"
[60747] "Olympics" "difference"
[60749] "Guha" "millions"
[60751] "new" "fans"
[60753] "thing" "around"
[60755] "time" "Kolkata"
[60757] "lies" "fact"
[60759] "rest" "city"
[60761] "pinning" "hopes"
[60763] "Olympic" "medal"
[60765] "Guha" "actually"
[60767] "wanted" "Gurjit's"
[60769] "shoes" "hoped"
[60771] "flick" "way"
[60773] "one" "Olympic"
[60775] "line" "Indian"
[60777] "men" "women's"
[60779] "team" "left"
[60781] "mark" "world"
[60783] "Olympics" "year"
[60785] "5,000km" "away"
[60787] "Kolkata" "TOI"
[60789] "visited" "neighbourhoods"
[60791] "city" "remain"
[60793] "principal" "catchment"
[60795] "areas" "hockey"
[60797] "players" "kids"
[60799] "teenagers" "still"
[60801] "prefer" "dribble"
[60803] "scoop" "ball"
[60805] "stick" "rather"
[60807] "legs" "football"
[60809] "bats" "cricket"
[60811] "flicked" "ball"
[60813] "nets" "seemed"
[60815] "adrenaline" "rush"
[60817] "help" "grab"
[60819] "stick" "shadow"
[60821] "practice" "next"
[60823] "minutes" "team"
[60825] "made" "us"
[60827] "dream" "big"
[60829] "wish" "stage"
[60831] "one" "day"
[60833] "make" "nation"
[60835] "proud" "said"
[60837] "Guha" "training"
[60839] "four" "years"
[60841] "now" "Behala"
[60843] "Jagrihi" "club"
[60845] "sport" "played"
[60847] "across" "state"
[60849] "representation" "independent"
[60851] "India's" "first"
[60853] "team" "hockey"
[60855] "years" "lost"
[60857] "glamour" "reduced"
[60859] "pockets" "Kolkata"
[60861] "Behala" "Chowrasta"
[60863] "Bhowanipore" "Entally"
[60865] "three" "pockets"
[60867] "apart" "Howrah"
[60869] "Baruipur" "Rishra"
[60871] "Chandernagore" "city"
[60873] "fringes" "hockey"
[60875] "regaining" "lost"
[60877] "place" "last"
[60879] "couple" "weeks"
[60881] "real" "hockey"
[60883] "stars" "like"
[60885] "Rani" "Rampal"
[60887] "Vandana" "Katariya"
[60889] "Simranjeet" "Singh"
[60891] "P" "R"
[60893] "Sreejesh" "emerging"
[60895] "shadows" "Bollywood's"
[60897] "bright" "lights"
[60899] "Chak" "De"
[60901] "India" "young"
[60903] "trainees" "trainers"
[60905] "sports" "lovers"
[60907] "opine" "perfect"
[60909] "opportunity" "bring"
[60911] "focus" "back"
[60913] "game" "friends"
[60915] "used" "taunt"
[60917] "wasting" "time"
[60919] "hockey" "practised"
[60921] "popular" "sports"
[60923] "recent" "heroics"
[60925] "hockey" "team"
[60927] "friends" "first"
[60929] "congratulate" "said"
[60931] "12-year-old" "Ankit"
[60933] "Shaw" "plays"
[60935] "Entally" "Hockey"
[60937] "Academy" "However"
[60939] "pointing" "worn"
[60941] "6ftx10ft" "office"
[60943] "hockey" "pitch"
[60945] "ankle-deep" "water"
[60947] "Subir" "Pan"
[60949] "joint" "secretary"
[60951] "academy" "said"
[60953] "unless" "basic"
[60955] "facilities" "get"
[60957] "better" "short"
[60959] "boosts" "long-term"
[60961] "effect" "game"
[60963] "Veteran" "hockey"
[60965] "coach" "official"
[60967] "Gopal" "Ghosh"
[60969] "said" "recent"
[60971] "feat" "Tokyo"
[60973] "confidence" "booster"
[60975] "current" "well"
[60977] "upcoming" "generation"
[60979] "hockey" "players"
[60981] "well" "sports"
[60983] "lovers" "general"
[60985] "ardent" "cricket"
[60987] "fan" "perhaps"
[60989] "first" "time"
[60991] "watching" "India's"
[60993] "hockey" "matches"
[60995] "India's" "feisty"
[60997] "show" "first"
[60999] "day" "test"
[61001] "match" "England"
[61003] "glamour" "glitz"
[61005] "associated" "cricket"
[61007] "drifted" "us"
[61009] "long" "way"
[61011] "games" "needed"
[61013] "jolt" "shaken"
[61015] "reality" "said"
[61017] "Soumya" "Mukherjee"
[61019] "techie" "spirited"
[61021] "show" "even"
[61023] "inspiring" "players"
[61025] "like" "Puja"
[61027] "Shaw" "25"
[61029] "verge" "retirement"
[61031] "take" "last"
[61033] "dash" "game"
[61035] "started" "game"
[61037] "age" "14"
[61039] "represented" "Bengal"
[61041] "national" "stage"
[61043] "get" "much"
[61045] "game" "taken"
[61047] "job" "private"
[61049] "firm" "gutsy"
[61051] "show" "national"
[61053] "team" "mates"
[61055] "feel" "like"
[61057] "giving" "one"
[61059] "last" "go"
[61061] "professional" "hockey"
[61063] "said" "Shaw"
[61065] "Classification" "Language"
[61067] "ENGLISH" "Publication-Type"
[61069] "Newspaper" "Body"
[61071] "India" "July"
[61073] "24" "Bollywood"
[61075] "stars" "proud"
[61077] "Mirabai" "Chanu"
[61079] "big" "win"
[61081] "Tokyo" "Olympics"
[61083] "Saturday" "Anil"
[61085] "Kapoor" "Abhishek"
[61087] "Bachchan" "multiple"
[61089] "actors" "took"
[61091] "Twitter" "share"
[61093] "wishes" "Mirabai"
[61095] "bagged" "silver"
[61097] "Women's" "49kg"
[61099] "category" "Tokyo"
[61101] "International" "Forum"
[61103] "Anil" "Kapoor"
[61105] "wrote" "Congratulations"
[61107] "@mirabai_chanu" "incredible"
[61109] "#TeamIndia" "#Cheer4India"
[61111] "Abhishek" "Bachchan"
[61113] "wrote" "Congratulations"
[61115] "@mirabai_chanu" "bringing"
[61117] "India" "silver"
[61119] "medal" "weightlifting"
[61121] "giving" "us"
[61123] "strong" "start"
[61125] "Riteish" "Deshmukh"
[61127] "wrote" "Congratulations"
[61129] "#mirabai" "thank"
[61131] "making" "India"
[61133] "proud" "#Olympics"
[61135] "#silver" "Jai"
[61137] "Hind" "#MirabaiChanu"
[61139] "Dia" "Mirza"
[61141] "wrote" "precious"
[61143] "#MirabaiChanu" "@mirabai_chanu"
[61145] "Creates" "history"
[61147] "winning" "Olympic"
[61149] "silver" "#Weightlifting"
[61151] "#Cheer4India" "#TeamIndia"
[61153] "Swara" "Bhasker"
[61155] "said" "many"
[61157] "congratulations" "#MirabaiChanu"
[61159] "May" "go"
[61161] "looooong" "strong"
[61163] "Randeep" "Hooda"
[61165] "said" "Congratulations"
[61167] "#MirabaiChanu" "opening"
[61169] "account" "#OlympicGames"
[61171] "#silver" "thank"
[61173] "hard" "work"
[61175] "competitive" "spirit"
[61177] "Speaking" "win"
[61179] "Mirabai" "said"
[61181] "happy" "won"
[61183] "medal" "entire"
[61185] "country" "watching"
[61187] "expectations" "little"
[61189] "nervous" "determined"
[61191] "give" "best"
[61193] "2016" "good"
[61195] "show" "proved"
[61197] "learning" "curve"
[61199] "got" "know"
[61201] "need" "improve"
[61203] "worked" "really"
[61205] "hard" "Mirabai"
[61207] "lifted" "total"
[61209] "202" "kg"
[61211] "87kg" "snatch"
[61213] "115kg" "clean"
[61215] "jerk" "four"
[61217] "successful" "attempts"
[61219] "across" "competition"
[61221] "China's" "Zhihui"
[61223] "Hou" "bagged"
[61225] "gold" "total"
[61227] "210kg" "created"
[61229] "new" "Olympic"
[61231] "Record" "Indonesia's"
[61233] "Windy" "Cantika"
[61235] "Aisah" "grabbed"
[61237] "bronze" "total"
[61239] "194kg" "Published"
[61241] "HT" "Digital"
[61243] "Content" "Services"
[61245] "permission" "Hindustan"
[61247] "Times" "query"
[61249] "respect" "article"
[61251] "content" "requirement"
[61253] "please" "contact"
[61255] "Editor" "Classification"
[61257] "Language" "ENGLISH"
[61259] "Publication-Type" "Newswire"
[61261] "Body" "India"
[61263] "July" "23"
[61265] "India's" "young"
[61267] "shooting" "contingent"
[61269] "Tokyo" "2020"
[61271] "pressure" "competing"
[61273] "Olympics" "Games"
[61275] "probably" "next"
[61277] "one" "hand"
[61279] "India" "feel"
[61281] "comfortable" "strong"
[61283] "15-member" "contingent"
[61285] "Games" "time"
[61287] "around" "highest"
[61289] "ever" "fielded"
[61291] "nation" "hand"
[61293] "likes" "Saurabh"
[61295] "Chaudhary" "Manu"
[61297] "Bhaker" "Elavenil"
[61299] "Valarivan" "competing"
[61301] "Games" "first"
[61303] "time" "weight"
[61305] "expectations" "may"
[61307] "lot" "take"
[61309] "India's" "shooting"
[61311] "campaign" "set"
[61313] "begin" "Saturday"
[61315] "pistol" "shooter"
[61317] "Heena" "Sidhu"
[61319] "competed" "2012"
[61321] "Olympics" "London"
[61323] "2016" "Rio"
[61325] "Olympics" "spoke"
[61327] "Hindustan" "Times"
[61329] "exclusive" "interview"
[61331] "give" "glimpse"
[61333] "like" "athletes"
[61335] "day" "competing"
[61337] "Games" "obviously"
[61339] "challenging" "day"
[61341] "competition" "Athletes"
[61343] "feel" "stressed"
[61345] "unable" "sleep"
[61347] "unable" "eat"
[61349] "keep" "thinking"
[61351] "things" "go"
[61353] "wrong" "despite"
[61355] "preparation" "Even"
[61357] "small" "noise"
[61359] "can" "cause"
[61361] "irritation" "point"
[61363] "realise" "creating"
[61365] "environment" "Sidhu"
[61367] "said" "2018"
[61369] "Commonwealth" "Games"
[61371] "gold" "medal-winning"
[61373] "shooter" "explained"
[61375] "every" "athlete"
[61377] "process" "keep"
[61379] "calm" "day"
[61381] "big" "matches"
[61383] "Obviously" "athletes"
[61385] "competed" "World"
[61387] "tournaments" "several"
[61389] "big" "competitions"
[61391] "already" "process"
[61393] "like" "go"
[61395] "gym" "try"
[61397] "listen" "music"
[61399] "end" "still"
[61401] "feel" "nerves"
[61403] "matchday" "become"
[61405] "hard" "sleep"
[61407] "sometimes" "said"
[61409] "sort" "source"
[61411] "discussion" "past"
[61413] "Olympics" "India's"
[61415] "shooting" "contingent"
[61417] "enters" "Games"
[61419] "back" "dominant"
[61421] "run" "ends"
[61423] "struggling" "multi-sporting"
[61425] "event" "15"
[61427] "shooters" "contesting"
[61429] "time" "fans"
[61431] "hoping" "multiple"
[61433] "medals" "story"
[61435] "time" "around"
[61437] "one" "can"
[61439] "answer" "Sidhu"
[61441] "said" "see"
[61443] "wait" "tournament"
[61445] "goes" "multiple"
[61447] "factors" "affect"
[61449] "performances" "games"
[61451] "young" "athletes"
[61453] "never" "faced"
[61455] "kind" "pressure"
[61457] "may" "affect"
[61459] "match" "day"
[61461] "said" "training"
[61463] "competitors" "nerves"
[61465] "luck" "everything"
[61467] "plays" "role"
[61469] "match" "day"
[61471] "focus" "performance"
[61473] "matchday" "end"
[61475] "result" "Sidhu"
[61477] "added" "mental"
[61479] "health" "athletes"
[61481] "becoming" "major"
[61483] "source" "discussion"
[61485] "current" "day"
[61487] "age" "Sidhu"
[61489] "also" "stressed"
[61491] "need" "begin"
[61493] "discussion" "around"
[61495] "especially" "younger"
[61497] "athletes" "Games"
[61499] "come" "end"
[61501] "important" "listen"
[61503] "athletes" "create"
[61505] "space" "athletes"
[61507] "can" "talk"
[61509] "freely" "athlete"
[61511] "feeling" "depressed"
[61513] "allowed" "discuss"
[61515] "help" "letting"
[61517] "affect" "sport"
[61519] "bad" "mental"
[61521] "health" "starts"
[61523] "affecting" "life"
[61525] "unable" "eat"
[61527] "unable" "sleep"
[61529] "unable" "enjoy"
[61531] "starts" "affect"
[61533] "sport" "well"
[61535] "creating" "environment"
[61537] "speak" "really"
[61539] "help" "athletes"
[61541] "Sidhu" "said"
[61543] "Tokyo" "2020"
[61545] "Olympics" "like"
[61547] "others" "crowds"
[61549] "players" "tested"
[61551] "Covid-19" "every"
[61553] "day" "roam"
[61555] "around" "wearing"
[61557] "masks" "limit"
[61559] "contact" "athletes"
[61561] "Moreover" "protests"
[61563] "Games" "Tokyo"
[61565] "rising" "number"
[61567] "Covid" "cases"
[61569] "city" "Sidhu"
[61571] "agrees" "factors"
[61573] "can" "cause"
[61575] "distraction" "shooters"
[61577] "believes" "athletes"
[61579] "capable" "letting"
[61581] "distractions" "affect"
[61583] "performances" "agree"
[61585] "Covid" "protocols"
[61587] "affect" "concentration"
[61589] "athletes" "capable"
[61591] "handling" "let"
[61593] "affect" "performances"
[61595] "trained" "factors"
[61597] "exist" "competitors"
[61599] "well" "see"
[61601] "big" "issue"
[61603] "shooters" "Sidhu"
[61605] "said" "Lastly"
[61607] "speaking" "Indian"
[61609] "shooters" "recent"
[61611] "performances" "ISSF"
[61613] "World" "Cups"
[61615] "New" "Delhi"
[61617] "Croatia" "Sidhu"
[61619] "said" "enough"
[61621] "determine" "current"
[61623] "form" "shooters"
[61625] "Indian" "shooters"
[61627] "action" "entire"
[61629] "2020" "Covid-19"
[61631] "pandemic" "leading"
[61633] "cancellation" "major"
[61635] "events" "little"
[61637] "training" "India"
[61639] "won" "30"
[61641] "medals" "Delhi"
[61643] "World" "Cup"
[61645] "though" "medals"
[61647] "came" "non-Olympics"
[61649] "events" "Moreover"
[61651] "several" "top-level"
[61653] "athletes" "countries"
[61655] "able" "participate"
[61657] "event" "due"
[61659] "travel" "restrictions"
[61661] "India's" "recent"
[61663] "performance" "ISSF"
[61665] "World" "Cup"
[61667] "Croatia" "also"
[61669] "best" "India"
[61671] "winning" "four"
[61673] "medals" "tournament"
[61675] "competitions" "enough"
[61677] "determine" "form"
[61679] "shooters" "Sidhu"
[61681] "said" "unexpected"
[61683] "break" "2020"
[61685] "trained" "bit"
[61687] "start" "year"
[61689] "training" "happened"
[61691] "Croatia" "ISSF"
[61693] "World" "Cup"
[61695] "feel" "competitions"
[61697] "just" "sharpen"
[61699] "shooters" "get"
[61701] "competitive" "mind"
[61703] "real" "test"
[61705] "Games" "signed"
[61707] "Published" "HT"
[61709] "Digital" "Content"
[61711] "Services" "permission"
[61713] "Hindustan" "Times"
[61715] "query" "respect"
[61717] "article" "content"
[61719] "requirement" "please"
[61721] "contact" "Editor"
[61723] "Classification" "Language"
[61725] "ENGLISH" "Publication-Type"
[61727] "Newswire" "Body"
[61729] "India" "July"
[61731] "24" "waited"
[61733] "bated" "breaths"
[61735] "folded" "hands"
[61737] "ready" "capture"
[61739] "moment" "phones"
[61741] "common" "hope"
[61743] "desire" "dream"
[61745] "Weightlifter" "Mirabai"
[61747] "Chanu's" "friends"
[61749] "relatives" "neighbours"
[61751] "watching" "live"
[61753] "TV" "Imphal"
[61755] "Manipur" "screamed"
[61757] "celebrated" "unison"
[61759] "soon" "confirmed"
[61761] "bagged" "silver"
[61763] "medal" "Tokyo"
[61765] "Olympics" "India's"
[61767] "first" "Games"
[61769] "video" "tweeted"
[61771] "news" "agency"
[61773] "ANI" "Mirabai's"
[61775] "relatives" "friends"
[61777] "seen" "celebrating"
[61779] "silver" "medal-winning"
[61781] "performance" "women's"
[61783] "49kg" "category"
[61785] "like" "never"
[61787] "happy" "today"
[61789] "result" "hard"
[61791] "work" "India"
[61793] "Manipur" "proud"
[61795] "relative" "told"
[61797] "news" "agency"
[61799] "ANI" "VIDEO"
[61801] "Mirabai" "Chanu's"
[61803] "family" "neighbours"
[61805] "celebrate" "silver"
[61807] "medal" "Tokyo"
[61809] "Olympics" "Chanu"
[61811] "lifted" "total"
[61813] "202" "kg"
[61815] "87kg" "snatch"
[61817] "115kg" "clean"
[61819] "jerk" "four"
[61821] "successful" "attempts"
[61823] "across" "competition"
[61825] "China's" "Zhihui"
[61827] "Hou" "bagged"
[61829] "gold" "total"
[61831] "210kg" "created"
[61833] "new" "Olympic"
[61835] "record" "snatch"
[61837] "Indonesia's" "Windy"
[61839] "Cantika" "Aisah"
[61841] "grabbed" "bronze"
[61843] "total" "194kg"
[61845] "happy" "won"
[61847] "medal" "entire"
[61849] "country" "watching"
[61851] "expectations" "little"
[61853] "nervous" "determined"
[61855] "give" "best"
[61857] "2016" "good"
[61859] "show" "proved"
[61861] "learning" "curve"
[61863] "got" "know"
[61865] "need" "improve"
[61867] "worked" "really"
[61869] "hard" "Chanu"
[61871] "told" "reporters"
[61873] "Mixed" "Zone"
[61875] "winning" "silver"
[61877] "medal" "reach"
[61879] "India" "go"
[61881] "straight" "home"
[61883] "long" "time"
[61885] "home" "1-2"
[61887] "years" "gone"
[61889] "home" "spent"
[61891] "time" "family"
[61893] "plan" "party"
[61895] "today" "laughs"
[61897] "added" "Published"
[61899] "HT" "Digital"
[61901] "Content" "Services"
[61903] "permission" "Hindustan"
[61905] "Times" "query"
[61907] "respect" "article"
[61909] "content" "requirement"
[61911] "please" "contact"
[61913] "Editor" "Classification"
[61915] "Language" "ENGLISH"
[61917] "Publication-Type" "Newswire"
[61919] "Body" "New"
[61921] "Delhi" "Aug"
[61923] "4" "going"
[61925] "another" "eventful"
[61927] "day" "Tokyo"
[61929] "Olympics" "2020"
[61931] "12th" "day"
[61933] "Tokyo" "Games"
[61935] "witness" "javelin"
[61937] "throwers" "Neeraj"
[61939] "Chopra" "Shivpal"
[61941] "Singh" "action"
[61943] "boxer" "Lovlina"
[61945] "Borgohain" "compete"
[61947] "semi-finals" "Wednesday"
[61949] "eyes" "women's"
[61951] "hockey" "team"
[61953] "Rani" "Rampal"
[61955] "Co" "take"
[61957] "Argentina" "all-important"
[61959] "semi-final" "encounter"
[61961] "Golfers" "Aditi"
[61963] "Ashok" "Diksha"
[61965] "Dagar" "compete"
[61967] "women's" "round"
[61969] "1" "Anshu"
[61971] "Malik" "Ravi"
[61973] "Dahiya" "Deepak"
[61975] "Punia" "headline"
[61977] "wrestling" "action"
[61979] "India" "trio"
[61981] "qualifies" "next"
[61983] "round" "Anshu"
[61985] "Malik" "Ravi"
[61987] "Dahiya" "Deepak"
[61989] "Punia" "play"
[61991] "semi-final" "matches"
[61993] "day" "Athletics"
[61995] "Neeraj" "Chopra"
[61997] "men's" "javelin"
[61999] "throw" "Qualification"
[62001] "Group" "5"
[62003] "35" "IST"
[62005] "Shivpal" "Singh"
[62007] "men's" "javelin"
[62009] "throw" "Qualification"
[62011] "Group" "B"
[62013] "7" "05"
[62015] "IST" "Boxing"
[62017] "Lovlina" "Borgohain"
[62019] "vs" "Busenaz"
[62021] "Surmeneli" "Turkey"
[62023] "women's" "69kg"
[62025] "semifinal" "1"
[62027] "11" "IST"
[62029] "Golf" "Aditi"
[62031] "Ashok" "Diksha"
[62033] "Dagar" "women's"
[62035] "individual" "stroke"
[62037] "play" "round"
[62039] "5" "55"
[62041] "7" "39"
[62043] "IST" "respectively"
[62045] "Hockey" "India"
[62047] "vs" "Argentina"
[62049] "women's" "semifinal"
[62051] "3" "30"
[62053] "pm" "IST"
[62055] "Wrestling" "Ravi"
[62057] "Kumar" "vs"
[62059] "Oscar" "Eduardo"
[62061] "Tigreros" "Colombia"
[62063] "men's" "freestyle"
[62065] "57kg" "fourth"
[62067] "bout" "8"
[62069] "00" "IST"
[62071] "start" "Anshu"
[62073] "Malik" "vs"
[62075] "Iryna" "Kurachkina"
[62077] "Belarus" "women's"
[62079] "freestyle" "57kg"
[62081] "fifth" "bout"
[62083] "8" "00"
[62085] "IST" "start"
[62087] "Deepak" "Punia"
[62089] "vs" "Ekerekeme"
[62091] "Agiomor" "Nigeria"
[62093] "men's" "freestyle"
[62095] "86kg" "eighth"
[62097] "bout" "8"
[62099] "00" "IST"
[62101] "start" "Published"
[62103] "HT" "Digital"
[62105] "Content" "Services"
[62107] "permission" "Hindustan"
[62109] "Times" "query"
[62111] "respect" "article"
[62113] "content" "requirement"
[62115] "please" "contact"
[62117] "Editor" "Classification"
[62119] "Language" "ENGLISH"
[62121] "Publication-Type" "Newswire"
[62123] "Body" "Lucknow"
[62125] "Aug" "6"
[62127] "India's" "historic"
[62129] "bronze" "medal"
[62131] "win" "men's"
[62133] "hockey" "Tokyo"
[62135] "Olympics" "Thursday"
[62137] "seems" "result"
[62139] "hard" "work"
[62141] "planning" "many"
[62143] "including" "former"
[62145] "India" "coach"
[62147] "Harendra" "Singh"
[62149] "whose" "junoon"
[62151] "obsession" "guided"
[62153] "India" "win"
[62155] "maiden" "Junior"
[62157] "Men's" "World"
[62159] "Cup" "Lucknow"
[62161] "2016" "member"
[62163] "silver-medal" "winning"
[62165] "Indian" "team"
[62167] "1990" "Beijing"
[62169] "Asian" "Games"
[62171] "Harendra" "now"
[62173] "teaching" "finer"
[62175] "points" "game"
[62177] "United" "States"
[62179] "team" "made"
[62181] "major" "contribution"
[62183] "building" "new"
[62185] "energetic" "side"
[62187] "Eight" "members"
[62189] "current" "squad"
[62191] "including" "captain"
[62193] "Manpreet" "Singh"
[62195] "part" "gold-medal"
[62197] "winning" "side"
[62199] "2016" "coached"
[62201] "Harendra" "Many"
[62203] "understand" "madness"
[62205] "obsession" "game"
[62207] "even" "dreams"
[62209] "care" "hockey"
[62211] "makes" "difference"
[62213] "know" "passion"
[62215] "required" "build"
[62217] "future" "Indian"
[62219] "hockey" "said"
[62221] "soon" "India's"
[62223] "thrilling" "2-1"
[62225] "win" "Belgium"
[62227] "Junior" "World"
[62229] "Cup" "final"
[62231] "Harendra's" "comment"
[62233] "still" "relevant"
[62235] "now" "India"
[62237] "ended" "41-year-old"
[62239] "medal" "drought"
[62241] "Olympics" "passion"
[62243] "podium" "finish"
[62245] "highest" "among"
[62247] "Indian" "side"
[62249] "though" "Harendra"
[62251] "removed" "2019"
[62253] "following" "disappointing"
[62255] "2018" "season"
[62257] "Harendra" "given"
[62259] "charge" "senior"
[62261] "side" "India's"
[62263] "medal-less" "showing"
[62265] "Gold" "Coast"
[62267] "Commonwealth" "Games"
[62269] "2018" "unable"
[62271] "change" "team's"
[62273] "fortunes" "India"
[62275] "also" "below-par"
[62277] "2018" "Asian"
[62279] "Games" "Indonesia"
[62281] "settling" "bronze"
[62283] "going" "tournament"
[62285] "defending" "champions"
[62287] "ended" "year"
[62289] "quarterfinal" "loss"
[62291] "World" "Cup"
[62293] "Bhubaneswar" "incredible"
[62295] "journey" "players"
[62297] "big" "big"
[62299] "salute" "boys"
[62301] "blue" "one"
[62303] "tweets" "Thursday"
[62305] "read" "fact"
[62307] "Singh" "broke"
[62309] "watching" "historic"
[62311] "win" "hide"
[62313] "emotions" "excited"
[62315] "10" "scorers"
[62317] "India" "nine"
[62319] "2016" "core"
[62321] "group" "coach"
[62323] "can" "ask"
[62325] "Besides" "Manpreet"
[62327] "players" "like"
[62329] "Harmanpreet" "Singh"
[62331] "Varun" "Kumar"
[62333] "Nilakanta" "Sharma"
[62335] "Sumit" "Gurjant"
[62337] "Singh" "Mandeep"
[62339] "Singh" "Simranjeet"
[62341] "Singh" "part"
[62343] "2016" "World-Cup"
[62345] "winning" "junior"
[62347] "squad" "also"
[62349] "said" "India's"
[62351] "investment" "junior"
[62353] "programmes" "paid"
[62355] "rich" "dividends"
[62357] "salute" "chief"
[62359] "coach" "Graham"
[62361] "Reid" "always"
[62363] "said" "invest"
[62365] "youngsters" "get"
[62367] "medal" "invested"
[62369] "youngsters" "today"
[62371] "podium" "Terming"
[62373] "bronze" "medal"
[62375] "win" "one"
[62377] "best" "moments"
[62379] "Indian" "hockey"
[62381] "said" "feat"
[62383] "inspire" "new"
[62385] "generation" "pick"
[62387] "hockey" "sticks"
[62389] "journey" "just"
[62391] "started" "just"
[62393] "appetizer" "main"
[62395] "course" "yet"
[62397] "come" "just"
[62399] "beginning" "many"
[62401] "come" "need"
[62403] "patient" "give"
[62405] "time" "players"
[62407] "coaches" "process"
[62409] "needs" "time"
[62411] "produce" "results"
[62413] "said" "Hockey"
[62415] "India's" "high"
[62417] "performance" "development"
[62419] "committee" "chairman"
[62421] "RP" "Singh"
[62423] "praised" "contributions"
[62425] "everyone" "including"
[62427] "present" "former"
[62429] "coaches" "junior"
[62431] "senior" "sides"
[62433] "team's" "bronze-medal"
[62435] "win" "Tokyo"
[62437] "Olympics" "administrators"
[62439] "selectors" "coaches"
[62441] "technical" "officials"
[62443] "many" "others"
[62445] "everyone" "responsible"
[62447] "India's" "success"
[62449] "Games" "believe"
[62451] "real" "process"
[62453] "better" "development"
[62455] "Indian" "hockey"
[62457] "re-started" "Hockey"
[62459] "India" "came"
[62461] "existence" "2009"
[62463] "said" "RP"
[62465] "Singh" "Published"
[62467] "HT" "Digital"
[62469] "Content" "Services"
[62471] "permission" "Hindustan"
[62473] "Times" "query"
[62475] "respect" "article"
[62477] "content" "requirement"
[62479] "please" "contact"
[62481] "Editor" "Classification"
[62483] "Language" "ENGLISH"
[62485] "Publication-Type" "Newswire"
[62487] "Body" "New"
[62489] "Delhi" "Aug"
[62491] "4" "Indian"
[62493] "women's" "hockey"
[62495] "team" "put"
[62497] "fantastic" "display"
[62499] "skill" "tenacity"
[62501] "semifinal" "encounter"
[62503] "World" "5"
[62505] "Argentina" "Tokyo"
[62507] "Games" "Wednesday"
[62509] "However" "end"
[62511] "Indian" "women"
[62513] "emerge" "second"
[62515] "best" "India"
[62517] "goes" "fighting"
[62519] "1-2" "Argentina"
[62521] "Noel" "Barrionuevo"
[62523] "Argentina" "skipper"
[62525] "scored" "second"
[62527] "goal" "today"
[62529] "put" "ahead"
[62531] "India" "women's"
[62533] "hockey" "semi-final"
[62535] "match" "Indian"
[62537] "women's" "team"
[62539] "took" "early"
[62541] "lead" "first"
[62543] "quarter" "thanks"
[62545] "penalty" "corner"
[62547] "Earlier" "Monday"
[62549] "Indian" "women's"
[62551] "hockey" "team"
[62553] "created" "history"
[62555] "Oi" "Hockey"
[62557] "Stadium" "North"
[62559] "Pitch" "qualified"
[62561] "semi-finals" "Olympics"
[62563] "first" "time"
[62565] "defeating" "Australia"
[62567] "1-0" "Argentina"
[62569] "defeated" "Germany"
[62571] "3-0" "quarter-final"
[62573] "earlier" "Monday"
[62575] "India" "played"
[62577] "seven" "matches"
[62579] "first" "two"
[62581] "Argentine" "youth"
[62583] "team" "visitors"
[62585] "drew" "2-2"
[62587] "1-1" "India"
[62589] "played" "two"
[62591] "matches" "Argentina's"
[62593] "B" "team"
[62595] "lost" "1-2"
[62597] "2-3" "respectively"
[62599] "Argentina" "senior"
[62601] "side" "India"
[62603] "played" "three"
[62605] "games" "managing"
[62607] "1-1" "draw"
[62609] "losing" "0-2"
[62611] "2-3" "respectively"
[62613] "India" "captain"
[62615] "Rani" "Tuesday"
[62617] "said" "win"
[62619] "Australia" "thing"
[62621] "past" "focus"
[62623] "remaining" "two"
[62625] "games" "competition"
[62627] "made" "history"
[62629] "just" "reaching"
[62631] "semifinals" "now"
[62633] "looking" "forward"
[62635] "semifinals" "want"
[62637] "just" "finish"
[62639] "Rani" "said"
[62641] "tournament" "two"
[62643] "games" "left"
[62645] "winning" "medals"
[62647] "said" "Published"
[62649] "HT" "Digital"
[62651] "Content" "Services"
[62653] "permission" "MINT"
[62655] "query" "respect"
[62657] "article" "content"
[62659] "requirement" "please"
[62661] "contact" "Editor"
[62663] "Classification" "Language"
[62665] "ENGLISH" "Publication-Type"
[62667] "Newspaper" "Body"
[62669] "USA's" "artistic"
[62671] "gymnast" "Simone"
[62673] "Biles" "withdrew"
[62675] "women's" "all-around"
[62677] "final" "ongoing"
[62679] "Tokyo" "Olympics"
[62681] "order" "focus"
[62683] "mental" "health"
[62685] "Team" "India"
[62687] "head" "coach"
[62689] "Ravi" "Shastri"
[62691] "talked" "support"
[62693] "USA's" "artistic"
[62695] "gymnastics" "star"
[62697] "Simone" "Biles"
[62699] "withdrawn" "women's"
[62701] "all-around" "final"
[62703] "ongoing" "Olympics"
[62705] "bid" "focus"
[62707] "mental" "health"
[62709] "Mental" "health"
[62711] "become" "important"
[62713] "topic" "discussion"
[62715] "post-pandemic" "era"
[62717] "every" "field"
[62719] "especially" "sports"
[62721] "players" "athletes"
[62723] "around" "world"
[62725] "staying" "bio-bubbles"
[62727] "restrictions" "nowhere"
[62729] "go" "long"
[62731] "periods" "time"
[62733] "away" "families"
[62735] "loved" "ones"
[62737] "Ravi" "Shastri"
[62739] "talked" "struggles"
[62741] "bubbles" "previously"
[62743] "saying" "get"
[62745] "cooked" "mentally"
[62747] "supported" "Simone"
[62749] "Biles" "saying"
[62751] "owed" "tender"
[62753] "age" "owe"
[62755] "anyone" "explanation"
[62757] "Take" "time"
[62759] "@Simone_Biles" "earned"
[62761] "right" "owe"
[62763] "tender" "age"
[62765] "48" "hours"
[62767] "48" "days"
[62769] "might" "take"
[62771] "Just" "Champion"
[62773] "owe" "explanation"
[62775] "one" "@naomiosaka"
[62777] "God" "bless"
[62779] "girls" "#Olympics"
[62781] "Shastri" "wrote"
[62783] "tweet" "USA's"
[62785] "gymnastics" "team"
[62787] "Wednesday" "informed"
[62789] "Simone" "Biles"
[62791] "taking" "part"
[62793] "finals" "all-around"
[62795] "competition" "owing"
[62797] "mental" "health"
[62799] "said" "statement"
[62801] "fully" "support"
[62803] "decision" "medical"
[62805] "evaluation" "Simone"
[62807] "Biles" "withdrawn"
[62809] "final" "individual"
[62811] "all-around" "competition"
[62813] "Tokyo" "Olympic"
[62815] "Games" "order"
[62817] "focus" "mental"
[62819] "health" "governing"
[62821] "body" "said"
[62823] "statement" "Simone"
[62825] "continue" "evaluated"
[62827] "daily" "determine"
[62829] "whether" "participate"
[62831] "next" "week's"
[62833] "individual" "event"
[62835] "finals" "Jade"
[62837] "Carey" "ninth-highest"
[62839] "score" "qualifications"
[62841] "participate" "place"
[62843] "all-around" "wholeheartedly"
[62845] "support" "Simone's"
[62847] "decision" "applaud"
[62849] "bravery" "prioritizing"
[62851] "well-being" "courage"
[62853] "shows" "yet"
[62855] "role" "model"
[62857] "many" "statement"
[62859] "added" "Recently"
[62861] "Japanese" "Tennis"
[62863] "star" "Naomi"
[62865] "Osaka" "withdrawn"
[62867] "French" "Open"
[62869] "due" "reason"
[62871] "missed" "Wimbledon"
[62873] "well" "Last"
[62875] "year" "Australian"
[62877] "star" "batsman"
[62879] "Glenn" "Maxwell"
[62881] "took" "break"
[62883] "cricket" "months"
[62885] "focus" "mental"
[62887] "health" "Indian"
[62889] "skipper" "Virat"
[62891] "Kohli" "spoken"
[62893] "mental" "pressure"
[62895] "gone" "England"
[62897] "tour" "2014"
[62899] "able" "score"
[62901] "runs" "Recently"
[62903] "England" "Wales"
[62905] "Cricket" "Board"
[62907] "ECB" "talked"
[62909] "stricter" "bio-bubbles"
[62911] "increase" "mental"
[62913] "fatigue" "players"
[62915] "Classification" "Language"
[62917] "ENGLISH" "Publication-Type"
[62919] "Newspaper" "Body"
[62921] "Tokyo" "July"
[62923] "27" "Saurabh"
[62925] "Chaudhary" "19"
[62927] "never" "left"
[62929] "international" "competition"
[62931] "without" "medal"
[62933] "since" "started"
[62935] "shooting" "senior"
[62937] "level" "2019"
[62939] "Tuesday" "Chaudhary"
[62941] "left" "Asaka"
[62943] "shooting" "range"
[62945] "Tokyo" "ended"
[62947] "Olympic" "campaign"
[62949] "without" "podium"
[62951] "finish" "day"
[62953] "tension" "gripped"
[62955] "Indian" "shooting"
[62957] "contingent" "turned"
[62959] "disappointment" "morphed"
[62961] "anger" "coaches"
[62963] "administrators" "shooters"
[62965] "revealed" "cracks"
[62967] "team" "shooters"
[62969] "went" "Games"
[62971] "India's" "strongest"
[62973] "medal" "contenders"
[62975] "just" "shooting"
[62977] "medal" "come"
[62979] "every" "Olympics"
[62981] "barring" "Rio"
[62983] "2016" "since"
[62985] "Rajyavardhan" "Rathore's"
[62987] "double" "trap"
[62989] "silver" "2004"
[62991] "sport" "India"
[62993] "won" "gold"
[62995] "medal" "also"
[62997] "team" "young"
[62999] "talent" "won"
[63001] "international" "medals"
[63003] "handfuls" "disappointments"
[63005] "began" "first"
[63007] "day" "Olympics"
[63009] "Elavenil" "Valarivan"
[63011] "Apurvi" "Chandela"
[63013] "held" "world"
[63015] "1" "ranks"
[63017] "last" "two"
[63019] "years" "failing"
[63021] "move" "qualification"
[63023] "10m" "air"
[63025] "rifle" "day"
[63027] "10m" "air"
[63029] "pistol" "Chaudhary"
[63031] "made" "8-shooter"
[63033] "final" "finished"
[63035] "7th" "next"
[63037] "day" "shooters"
[63039] "10m" "air"
[63041] "rifle" "men's"
[63043] "10m" "air"
[63045] "rifle" "women's"
[63047] "also" "stumbled"
[63049] "qualification" "rounds"
[63051] "Yet" "promise"
[63053] "Chaudhary" "Manu"
[63055] "Bhaker" "also"
[63057] "19" "dominant"
[63059] "pistol" "mixed"
[63061] "team" "pair"
[63063] "world" "since"
[63065] "event" "introduced"
[63067] "global" "competitions"
[63069] "2019" "Tuesday"
[63071] "hopes" "high"
[63073] "leave" "disappointments"
[63075] "individual" "events"
[63077] "behind" "medal"
[63079] "strongest" "event"
[63081] "morning" "began"
[63083] "well" "Bhaker"
[63085] "Chaudhary" "topped"
[63087] "first" "stage"
[63089] "qualification" "30"
[63091] "shots" "person"
[63093] "30" "minutes"
[63095] "score" "582"
[63097] "Saurabh" "fired"
[63099] "296" "Manu"
[63101] "286" "eighth"
[63103] "among" "20"
[63105] "teams" "advanced"
[63107] "second" "stage"
[63109] "40" "shots"
[63111] "20" "mins"
[63113] "Chaudhary" "good"
[63115] "run" "Bhaker"
[63117] "shot" "four"
[63119] "8s" "two"
[63121] "coming" "last"
[63123] "five" "shots"
[63125] "duo" "settled"
[63127] "380" "points"
[63129] "final" "hours"
[63131] "later" "Divyansh"
[63133] "Panwar" "Elavenil"
[63135] "Valarivan" "made"
[63137] "early" "exits"
[63139] "rifle" "mixed"
[63141] "team" "events"
[63143] "Anjum" "Moudgil"
[63145] "Deepak" "Kumar"
[63147] "brought" "back"
[63149] "memories" "2016"
[63151] "India's" "seasoned"
[63153] "shooting" "team"
[63155] "failed" "bag"
[63157] "single" "medal"
[63159] "disappointment" "Barring"
[63161] "Saurabh" "Chaudhary"
[63163] "one" "put"
[63165] "fight" "said"
[63167] "Joydeep" "Karmakar"
[63169] "missed" "medal"
[63171] "thinnest" "margins"
[63173] "finishing" "fourth"
[63175] "50m" "rifle"
[63177] "prone" "2012"
[63179] "Saying" "one"
[63181] "bad" "day"
[63183] "office" "cut"
[63185] "day" "happens"
[63187] "Olympics" "guarantee"
[63189] "back" "Also"
[63191] "highlighting" "kids"
[63193] "Yes" "young"
[63195] "earned" "quota"
[63197] "place" "merit"
[63199] "fighting" "older"
[63201] "players" "stand"
[63203] "lane" "kids"
[63205] "elders" "competitors"
[63207] "Coaches" "team"
[63209] "Tokyo" "said"
[63211] "one" "problems"
[63213] "personal" "coaches"
[63215] "shooters" "national"
[63217] "coaches" "many"
[63219] "conflicting" "inputs"
[63221] "shooters" "start"
[63223] "working" "shooter"
[63225] "day" "Olympics"
[63227] "said" "one"
[63229] "coach" "wish"
[63231] "named" "working"
[63233] "personal" "coaches"
[63235] "also" "issue"
[63237] "psychologist" "travelling"
[63239] "team" "psychologist"
[63241] "physio" "coaching"
[63243] "staff" "Osijek"
[63245] "Croatia" "team"
[63247] "prepared" "two"
[63249] "months" "Games"
[63251] "said" "Raninder"
[63253] "Singh" "president"
[63255] "National" "Rifle"
[63257] "Association" "possible"
[63259] "get" "everyone"
[63261] "Covid" "restrictions"
[63263] "Karmakar" "said"
[63265] "lack" "medals"
[63267] "pointed" "preparations"
[63269] "right" "problem"
[63271] "technical" "good"
[63273] "coaches" "players"
[63275] "aware" "now"
[63277] "players" "trained"
[63279] "peak" "right"
[63281] "time" "Coaches"
[63283] "need" "know"
[63285] "work" "said"
[63287] "Create" "hunger"
[63289] "get" "flow"
[63291] "state" "phase"
[63293] "come" "closest"
[63295] "cutting" "noise"
[63297] "Even" "best"
[63299] "fail" "done"
[63301] "shooters" "including"
[63303] "Manu" "Bhaker"
[63305] "today" "found"
[63307] "pressure" "Olympics"
[63309] "final" "suffocating"
[63311] "think" "high-performance"
[63313] "coach" "big"
[63315] "role" "play"
[63317] "Paris" "coach"
[63319] "can" "appointed"
[63321] "maybe" "one"
[63323] "year" "prior"
[63325] "Games" "coach"
[63327] "help" "steel"
[63329] "athlete" "get"
[63331] "athlete" "work"
[63333] "robotic" "efficiency"
[63335] "control" "emotions"
[63337] "Bhaker" "mixed"
[63339] "team" "event"
[63341] "admitted" "right"
[63343] "zone" "even"
[63345] "Chaudhary" "answered"
[63347] "questions" "great"
[63349] "poise" "Sometimes"
[63351] "control" "things"
[63353] "try" "way"
[63355] "hard" "expect"
[63357] "things" "Bhaker"
[63359] "said" "asked"
[63361] "Olympic" "experience"
[63363] "different" "Chaudhary"
[63365] "said" "participated"
[63367] "Youth" "Olympics"
[63369] "nothing" "different"
[63371] "Games" "Village"
[63373] "hai" "wohi"
[63375] "range" "hai"
[63377] "target" "hai"
[63379] "pistol" "hai"
[63381] "hum" "hai"
[63383] "goli" "hai"
[63385] "Games" "Village"
[63387] "range" "target"
[63389] "pistols" "bullets"
[63391] "us" "Published"
[63393] "HT" "Digital"
[63395] "Content" "Services"
[63397] "permission" "Hindustan"
[63399] "Times" "query"
[63401] "respect" "article"
[63403] "content" "requirement"
[63405] "please" "contact"
[63407] "Editor" "Classification"
[63409] "Language" "ENGLISH"
[63411] "Publication-Type" "Newswire"
[63413] "Body" "Japanese"
[63415] "teenager" "Momiji"
[63417] "Nishiya" "won"
[63419] "gold" "medal"
[63421] "women's" "street"
[63423] "skateboarding" "Kuwait's"
[63425] "Abdullah" "Al-Rashidi"
[63427] "won" "bronze"
[63429] "medal" "shooting"
[63431] "Olympics" "continued"
[63433] "produce" "magic"
[63435] "Monday" "Tokyo"
[63437] "13-year" "old"
[63439] "57-year" "old"
[63441] "went" "podium"
[63443] "day" "receive"
[63445] "medals" "respective"
[63447] "events" "proving"
[63449] "age" "just"
[63451] "number" "Japan's"
[63453] "Momiji" "Nishiya"
[63455] "aged" "13"
[63457] "years" "330"
[63459] "days" "became"
[63461] "one" "youngest"
[63463] "athletes" "win"
[63465] "Olympic" "gold"
[63467] "Momiji" "Nishiya"
[63469] "won" "thewomen's"
[63471] "street" "skateboarding"
[63473] "competition" "leaving"
[63475] "behind" "Brazil"
[63477] "teenager" "Rayssa"
[63479] "Leal" "Japan's"
[63481] "16-year" "old"
[63483] "Funa" "Nakayama"
[63485] "Nishiya" "stumbled"
[63487] "landings" "first"
[63489] "two" "produced"
[63491] "absolute" "perfect"
[63493] "landings" "last"
[63495] "three" "finish"
[63497] "just" "Brazilian"
[63499] "opponent" "Similarly"
[63501] "57-year" "old"
[63503] "young" "Abdullah"
[63505] "Al-Rashidi" "competed"
[63507] "independent" "athlete"
[63509] "2016" "Rio"
[63511] "Olympics" "Kuwait"
[63513] "banned" "IOC"
[63515] "repeated" "feat"
[63517] "winning" "bronze"
[63519] "medal" "five"
[63521] "years" "later"
[63523] "2021" "Tokyo"
[63525] "Games" "Monday"
[63527] "Al-Rashidi's" "second"
[63529] "bronze" "medal"
[63531] "first" "country"
[63533] "Kuwait" "2016"
[63535] "52-year" "old"
[63537] "wearing" "Arsenal"
[63539] "jersey" "stole"
[63541] "limelight" "later"
[63543] "won" "bronze"
[63545] "medal" "men's"
[63547] "skeet" "shooting"
[63549] "event" "Five"
[63551] "years" "later"
[63553] "Al-Rashidi" "returned"
[63555] "little" "older"
[63557] "experienced" "now"
[63559] "representing" "country"
[63561] "Al-Rashidi" "finished"
[63563] "third" "place"
[63565] "46" "points"
[63567] "behind" "USA's"
[63569] "Vincent" "Hancock"
[63571] "set" "Olympic"
[63573] "record" "59"
[63575] "points" "win"
[63577] "gold" "medal"
[63579] "Denmark's" "Jesper"
[63581] "Hansen" "scored"
[63583] "55" "points"
[63585] "claimed" "silver"
[63587] "Indian" "rifle"
[63589] "shooter" "Olympic"
[63591] "medal" "winner"
[63593] "Gagan" "Narang"
[63595] "hold" "feelings"
[63597] "expressed" "joy"
[63599] "57-year" "old"
[63601] "taking" "Twitter"
[63603] "wrote" "Al"
[63605] "rashidi" "winning"
[63607] "skeet" "bronze"
[63609] "57" "years"
[63611] "age" "Take"
[63613] "Bow" "Age"
[63615] "just" "number"
[63617] "Classification" "Language"
[63619] "ENGLISH" "Publication-Type"
[63621] "Newspaper" "Body"
[63623] "Neeraj" "Chopra"
[63625] "Saturday" "made"
[63627] "history" "becoming"
[63629] "first-ever" "Indian"
[63631] "win" "gold"
[63633] "medal" "athletics"
[63635] "Olympics" "23-year-old"
[63637] "Neeraj" "Chopra"
[63639] "won" "Gold"
[63641] "medal" "men's"
[63643] "javelin" "throw"
[63645] "event" "87.58-meter"
[63647] "throw" "second"
[63649] "attempt" "also"
[63651] "country's" "second"
[63653] "individual" "gold"
[63655] "medal" "Olympic"
[63657] "history" "Abhinav"
[63659] "Bindra's" "heroics"
[63661] "Beijing" "2008"
[63663] "Javelin" "thrower"
[63665] "born" "December"
[63667] "24" "1997"
[63669] "hails" "Khandra"
[63671] "village" "Haryana's"
[63673] "Panipat" "Neeraj"
[63675] "initially" "interested"
[63677] "cricket" "took"
[63679] "sport" "2011"
[63681] "inspired" "watching"
[63683] "people" "throw"
[63685] "javelin" "Haryana"
[63687] "son" "farmer"
[63689] "Neeraj" "Chopra"
[63691] "Subedar" "4"
[63693] "Rajputana" "Rifles"
[63695] "Indian" "Army"
[63697] "graduate" "DAV"
[63699] "college" "Chandigarh"
[63701] "23-year-old" "also"
[63703] "first" "Indian"
[63705] "win" "gold"
[63707] "javelin" "throw"
[63709] "Asian" "Games"
[63711] "Commonwealth" "Games"
[63713] "Neeraj" "won"
[63715] "Javelin" "throw"
[63717] "2018" "Commonwealth"
[63719] "Games" "Gold"
[63721] "Coast" "Australia"
[63723] "2018" "Asian"
[63725] "Games" "Indonesia"
[63727] "Neeraj" "2016"
[63729] "became" "first"
[63731] "Indian" "win"
[63733] "junior" "world"
[63735] "title" "athletics"
[63737] "winning" "gold"
[63739] "World" "Junior"
[63741] "Championships" "Poland"
[63743] "23-year-old" "goes"
[63745] "philosophy" "work"
[63747] "hard" "enough"
[63749] "external" "factors"
[63751] "fade" "away"
[63753] "Classification" "Language"
[63755] "ENGLISH" "Publication-Type"
[63757] "Newspaper" "Body"
[63759] "India" "still"
[63761] "chance" "medal"
[63763] "play" "bronze"
[63765] "Thursday" "Indian"
[63767] "men's" "hockey"
[63769] "team" "created"
[63771] "history" "entering"
[63773] "semi-finals" "Tokyo"
[63775] "2020" "Olympics"
[63777] "saw" "lose"
[63779] "2-5" "Belgium"
[63781] "Oi" "Hockey"
[63783] "Stadium" "North"
[63785] "Pitch" "Japan"
[63787] "loss" "World"
[63789] "2" "Belgium"
[63791] "progress" "final"
[63793] "play" "gold"
[63795] "India" "still"
[63797] "chance" "medal"
[63799] "play" "bronze"
[63801] "clash" "third"
[63803] "place" "take"
[63805] "place" "Thursday"
[63807] "India" "scored"
[63809] "2" "goals"
[63811] "Belgium" "lead"
[63813] "five" "goals"
[63815] "name.India" "conceded"
[63817] "fourth" "penalty"
[63819] "stroke" "Alexander"
[63821] "Hendrickx" "also"
[63823] "completed" "hat-trick"
[63825] "Earlier" "Belgium"
[63827] "equalised" "second"
[63829] "quarter" "make"
[63831] "2" "2"
[63833] "Indian" "ended"
[63835] "first" "quarter"
[63837] "turned" "around"
[63839] "two" "goals"
[63841] "conceding" "early"
[63843] "strike" "Loick"
[63845] "Luypaert" "scored"
[63847] "Belgium" "penalty"
[63849] "corner" "Mandeep"
[63851] "Singh" "Harmanpreet"
[63853] "Singh" "got"
[63855] "required" "goals"
[63857] "India" "India"
[63859] "men's" "hockey"
[63861] "team" "suffered"
[63863] "defeat" "Prime"
[63865] "Minister" "Narendra"
[63867] "Modi" "said"
[63869] "country" "proud"
[63871] "Manpreet" "boys"
[63873] "able" "achieve"
[63875] "Wins" "losses"
[63877] "part" "life"
[63879] "Men's" "Hockey"
[63881] "Team" "#Tokyo2020"
[63883] "gave" "best"
[63885] "counts" "Wishing"
[63887] "Team" "best"
[63889] "next" "match"
[63891] "future" "endeavours"
[63893] "India" "proud"
[63895] "players" "tweeted"
[63897] "Modi" "earlier"
[63899] "defeated" "Great"
[63901] "Britain" "3-1"
[63903] "quarter-final" "match"
[63905] "qualify" "semifinals"
[63907] "India" "scored"
[63909] "three" "field"
[63911] "goals" "courtesy"
[63913] "Dilpreet" "Singh"
[63915] "7th" "minute"
[63917] "Gurjant" "Singh"
[63919] "16th" "Hardik"
[63921] "Singh" "57th"
[63923] "India's" "last"
[63925] "eight" "Olympic"
[63927] "gold" "medals"
[63929] "come" "way"
[63931] "back" "1980"
[63933] "Moscow" "Games"
[63935] "last" "time"
[63937] "India" "featured"
[63939] "semifinals" "Olympics"
[63941] "1972" "Munich"
[63943] "Games" "lost"
[63945] "0-2" "arch-rivals"
[63947] "Pakistan" "Classification"
[63949] "Language" "ENGLISH"
[63951] "Publication-Type" "Newspaper"
[63953] "Body" "Golfer"
[63955] "Aditi" "Ashok"
[63957] "also" "medal"
[63959] "contention" "Gold"
[63961] "continues" "escape"
[63963] "grip" "Indian"
[63965] "wrestlers" "Indian"
[63967] "contingent" "ongoing"
[63969] "Tokyo" "Olympics"
[63971] "just" "medals"
[63973] "today" "one"
[63975] "day" "spirit"
[63977] "sport" "silencedthe"
[63979] "demanding" "clamour"
[63981] "podium" "finish"
[63983] "women's" "hockey"
[63985] "team" "might"
[63987] "lost" "Great"
[63989] "Britain" "performance"
[63991] "rare" "pedigree"
[63993] "forever" "bookmarked"
[63995] "Games" "history"
[63997] "Popular" "names"
[63999] "walks" "life"
[64001] "took" "social"
[64003] "media" "praise"
[64005] "Rani" "Rampal"
[64007] "company" "Looking"
[64009] "beyond" "hockey"
[64011] "Bajrang" "Punia"
[64013] "might" "lost"
[64015] "semi-final" "still"
[64017] "hope" "another"
[64019] "podium" "finish"
[64021] "gold" "medal"
[64023] "continues" "escape"
[64025] "Indian" "wrestlers"
[64027] "Olympics" "far"
[64029] "golfer" "Aditi"
[64031] "Ashok" "concerned"
[64033] "keep" "eyes"
[64035] "peeled" "performance"
[64037] "Saturday" "round-up"
[64039] "went" "Tokyo"
[64041] "today" "India"
[64043] "women" "history"
[64045] "books" "history-making"
[64047] "Indian" "women's"
[64049] "hockey" "team's"
[64051] "dream" "securing"
[64053] "maiden" "Olympic"
[64055] "medal" "remained"
[64057] "unfulfilled" "lost"
[64059] "3-4" "Great"
[64061] "Britain" "hard-fought"
[64063] "bronze" "play-off"
[64065] "stout-hearted" "side"
[64067] "managed" "record"
[64069] "best" "ever"
[64071] "finish" "Games"
[64073] "team" "already"
[64075] "created" "history"
[64077] "surpassed" "expectations"
[64079] "entering" "semifinals"
[64081] "Games" "first"
[64083] "time" "maiden"
[64085] "Olympic" "medal"
[64087] "remained" "bounds"
[64089] "world" "4"
[64091] "Great" "Britain"
[64093] "gold-winners" "2016"
[64095] "Rio" "Games"
[64097] "came" "top"
[64099] "pulsating" "encounter"
[64101] "India's" "best"
[64103] "performance" "Olympics"
[64105] "fourth-place" "finish"
[64107] "1980" "Moscow"
[64109] "Games" "semifinals"
[64111] "edition" "six"
[64113] "teams" "competed"
[64115] "round-robin" "format"
[64117] "top" "two"
[64119] "featured" "final"
[64121] "heartbreak" "came"
[64123] "day" "Indian"
[64125] "men's" "team"
[64127] "ended" "41-year-old"
[64129] "medal" "drought"
[64131] "clinching" "bronze"
[64133] "5-4" "win"
[64135] "Germany" "Indians"
[64137] "played" "hearts"
[64139] "overcame" "two-goal"
[64141] "deficit" "lead"
[64143] "3-2" "half"
[64145] "time" "desperate"
[64147] "Great" "Britain"
[64149] "gave" "everything"
[64151] "second" "half"
[64153] "scored" "two"
[64155] "goals" "snatch"
[64157] "match" "India's"
[64159] "hands" "Shot"
[64161] "bronze" "Bajrang"
[64163] "Seema" "Bisla"
[64165] "Bajrang" "Punia's"
[64167] "perennial" "leg-defence"
[64169] "weakness" "came"
[64171] "haunt" "big"
[64173] "stage" "lost"
[64175] "men's" "freestyle"
[64177] "65kg" "semifinal"
[64179] "three-time" "world"
[64181] "champion" "Haji"
[64183] "Aliev" "Friday"
[64185] "now" "fight"
[64187] "bronze" "medal"
[64189] "Rio" "Olympics"
[64191] "bronze-winner" "Aliev"
[64193] "Azerbaijan" "consistently"
[64195] "attacked" "Bajrang's"
[64197] "legs" "twice"
[64199] "got" "position"
[64201] "roll" "Indian"
[64203] "comfortably" "easy"
[64205] "two-point" "throws"
[64207] "Trailing" "1-4"
[64209] "first" "period"
[64211] "Bajrang" "looked"
[64213] "big" "attack"
[64215] "Aliev" "smartly"
[64217] "effected" "counter"
[64219] "take" "placing"
[64221] "shoulder" "close"
[64223] "thighs" "Bajrang"
[64225] "threw" "Indian"
[64227] "huge" "8-1"
[64229] "lead" "Azerbaijani"
[64231] "losing" "steam"
[64233] "Bajrang" "got"
[64235] "two" "take-downs"
[64237] "reduce" "deficit"
[64239] "required" "big"
[64241] "move" "never"
[64243] "came" "30"
[64245] "seconds" "left"
[64247] "bout" "Bajrang"
[64249] "desperately" "looked"
[64251] "attack" "Aliev"
[64253] "let" "gripping"
[64255] "strong" "body-lock"
[64257] "Debutant" "Indian"
[64259] "wrestler" "Seema"
[64261] "Bisla" "find"
[64263] "way" "get"
[64265] "defensive" "trap"
[64267] "Tunisia's" "Sarra"
[64269] "Hamdi" "lost"
[64271] "50kg" "opening"
[64273] "round" "1-3"
[64275] "27-year-old" "make"
[64277] "moves" "Hamdi"
[64279] "applied" "body"
[64281] "lock" "great"
[64283] "effect" "never"
[64285] "allowing" "Seema"
[64287] "initiate" "strong"
[64289] "attack" "hardly"
[64291] "moves" "bout"
[64293] "Hamdi" "getting"
[64295] "two" "three"
[64297] "points" "push"
[64299] "one" "Seema's"
[64301] "passivity" "Hope"
[64303] "Aditi" "Ashok"
[64305] "Indian" "golfer"
[64307] "Aditi" "Ashok"
[64309] "carded" "three-under"
[64311] "67" "third"
[64313] "round" "hold"
[64315] "second" "position"
[64317] "remain" "strong"
[64319] "contention" "country's"
[64321] "maiden" "Olympic"
[64323] "medal" "sport"
[64325] "Friday" "Bengalurean"
[64327] "mother" "Maheshwari"
[64329] "bag" "shot"
[64331] "five" "birdies"
[64333] "two" "bogeys"
[64335] "moved" "12-under"
[64337] "three" "strokes"
[64339] "adrift" "leader"
[64341] "Nelly" "Korda"
[64343] "USA" "carded"
[64345] "two-under" "69"
[64347] "penultimate" "round"
[64349] "Four" "players"
[64351] "New" "Zealand's"
[64353] "Lydia" "Ko"
[64355] "66" "Australia's"
[64357] "Hannah" "Green"
[64359] "67" "Demark's"
[64361] "Kristine" "Pederson"
[64363] "70" "Japan's"
[64365] "Mone" "Inami"
[64367] "68" "shared"
[64369] "third" "spot"
[64371] "totals" "10-under"
[64373] "203" "Aditi"
[64375] "fired" "five"
[64377] "birdies" "two"
[64379] "bogeys" "day"
[64381] "three-under" "picking"
[64383] "shots" "fourth"
[64385] "sixth" "seventh"
[64387] "holes" "bogeys"
[64389] "ninth" "11th"
[64391] "pulled" "back"
[64393] "However" "made"
[64395] "amends" "birdies"
[64397] "15th" "17th"
[64399] "keep" "hunt"
[64401] "historic" "medal"
[64403] "Indian" "golfer"
[64405] "fray" "Diksha"
[64407] "Dagar" "remained"
[64409] "lower" "half"
[64411] "leaderboard" "erratic"
[64413] "one-over" "72"
[64415] "third" "successive"
[64417] "over-par" "card"
[64419] "week" "Athletics"
[64421] "High" "dry"
[64423] "National" "record"
[64425] "holder" "Priyanka"
[64427] "Goswami" "among"
[64429] "leading" "pack"
[64431] "around" "halfway"
[64433] "mark" "eventually"
[64435] "finished" "17th"
[64437] "compatriot" "Bhawna"
[64439] "Jat" "ended"
[64441] "32nd" "women's"
[64443] "20km" "race"
[64445] "walk" "event"
[64447] "men's" "50km"
[64449] "event" "Gurpreet"
[64451] "Singh" "pulled"
[64453] "35km" "mark"
[64455] "due" "cramps"
[64457] "hot" "humid"
[64459] "conditions" "Indian"
[64461] "race" "walkers"
[64463] "ended" "disappointing"
[64465] "campaign" "25-year-old"
[64467] "Priyanka" "clocked"
[64469] "1" "hr"
[64471] "32" "minute"
[64473] "36" "seconds"
[64475] "well" "outside"
[64477] "personal" "best"
[64479] "1" "28"
[64481] "45" "come"
[64483] "National" "Open"
[64485] "Race" "Walk"
[64487] "Championships" "February"
[64489] "event" "held"
[64491] "hot" "humid"
[64493] "conditions" "Priyanka"
[64495] "leading" "pack"
[64497] "beginning" "front"
[64499] "runner" "crossed"
[64501] "8km" "mark"
[64503] "slowly" "dropped"
[64505] "later" "Bhawna"
[64507] "hand" "failed"
[64509] "keep" "pace"
[64511] "leading" "pack"
[64513] "behind" "beginning"
[64515] "eventually" "end"
[64517] "32nd" "time"
[64519] "1" "37"
[64521] "38" "25-year-old"
[64523] "Indian" "personal"
[64525] "best" "1"
[64527] "29" "54"
[64529] "Classification" "Language"
[64531] "ENGLISH" "Publication-Type"
[64533] "Newspaper" "Body"
[64535] "sportspersons" "Tokyo"
[64537] "Olympics" "year"
[64539] "spotted" "dark"
[64541] "patches" "body"
[64543] "Team" "Australia's"
[64545] "swimmer" "Kyle"
[64547] "Chalmers" "even"
[64549] "shared" "pictures"
[64551] "Instagram" "showed"
[64553] "dots" "body"
[64555] "also" "spotted"
[64557] "Japanese" "swimmer"
[64559] "Akira" "Namba's"
[64561] "back" "2016"
[64563] "similar" "dark"
[64565] "circles" "reportedly"
[64567] "seen" "Olympic"
[64569] "gold" "medalist"
[64571] "Michael" "Phelp's"
[64573] "back" "marks"
[64575] "result" "ancient"
[64577] "therapy" "known"
[64579] "cupping" "therapy"
[64581] "thought" "roots"
[64583] "Middle" "Eastern"
[64585] "Asian" "cultures"
[64587] "involves" "application"
[64589] "heated" "cups"
[64591] "create" "local"
[64593] "suction" "skin"
[64595] "According" "article"
[64597] "Independent" "cupping"
[64599] "used" "traditional"
[64601] "Iranian" "medicine"
[64603] "throughout" "history"
[64605] "also" "used"
[64607] "China" "decades"
[64609] "two" "types"
[64611] "dry" "wet"
[64613] "cases" "therapist"
[64615] "puts" "flammable"
[64617] "substance" "alcohol"
[64619] "herbs" "paper"
[64621] "cup" "sets"
[64623] "fire" "according"
[64625] "webmd.com" "fire"
[64627] "goes" "cup"
[64629] "put" "upside"
[64631] "skin" "just"
[64633] "minutes" "modern"
[64635] "version" "however"
[64637] "uses" "rubber"
[64639] "pump" "instead"
[64641] "fire" "create"
[64643] "vacuum" "cup"
[64645] "antibiotic" "ointment"
[64647] "bandage" "used"
[64649] "prevent" "infection"
[64651] "One" "expected"
[64653] "regain" "normal"
[64655] "skin" "within"
[64657] "10" "days"
[64659] "Cupping" "known"
[64661] "many" "benefits"
[64663] "Research" "shown"
[64665] "therapy" "can"
[64667] "help" "pain"
[64669] "management" "herpes"
[64671] "zoster" "reactivation"
[64673] "chickenpox" "virus"
[64675] "body" "acne"
[64677] "According" "National"
[64679] "Health" "Portal"
[64681] "India" "cupping"
[64683] "mobilises" "blood"
[64685] "flow" "promote"
[64687] "healing" "cure"
[64689] "diseases" "lists"
[64691] "following" "health"
[64693] "issues" "cupping"
[64695] "can" "used"
[64697] "clean" "skin"
[64699] "waste" "matters"
[64701] "stop" "excessive"
[64703] "menses" "epistaxis"
[64705] "correct" "liver"
[64707] "disorders" "treat"
[64709] "problems" "spleen"
[64711] "disorders" "malaria"
[64713] "piles" "inflammation"
[64715] "testes" "uterus"
[64717] "scabies" "boils"
[64719] "Earlier" "Phelps"
[64721] "told" "Sky"
[64723] "Sports" "2016"
[64725] "interview" "usually"
[64727] "got" "treatment"
[64729] "shoulders" "usually"
[64731] "hurt" "done"
[64733] "meets" "pretty"
[64735] "much" "every"
[64737] "meet" "go"
[64739] "quoted" "saying"
[64741] "Classification" "Language"
[64743] "ENGLISH" "Publication-Type"
[64745] "Newspaper" "Body"
[64747] "India" "Aug"
[64749] "5" "Celebrations"
[64751] "around" "residence"
[64753] "Shanglakpam" "Nilakanta"
[64755] "Sharma" "midfielder"
[64757] "Indian" "men's"
[64759] "hockey" "team"
[64761] "spontaneous" "Kontha"
[64763] "Ahallup" "area"
[64765] "Manipur's" "Imphal"
[64767] "East" "district"
[64769] "Thursday" "soon"
[64771] "country" "got"
[64773] "bronze" "Tokyo"
[64775] "Olympics" "defeating"
[64777] "Germany" "People"
[64779] "marched" "streets"
[64781] "women" "performed"
[64783] "Thabal" "Chongba"
[64785] "popular" "traditional"
[64787] "dance" "usually"
[64789] "performed" "five-day"
[64791] "Yaoshang" "festival"
[64793] "state" "Chief"
[64795] "minister" "N"
[64797] "Biren" "Singh"
[64799] "also" "shared"
[64801] "video" "celebration"
[64803] "social" "media"
[64805] "accounts" "Twitter"
[64807] "wrote" "Friends"
[64809] "family" "neighbours"
[64811] "Nilakanta" "Sharma"
[64813] "midfielder" "Indian"
[64815] "Men's" "Hockey"
[64817] "team" "came"
[64819] "celebrated" "historic"
[64821] "win" "bronze"
[64823] "medal" "Indian"
[64825] "Hockey" "team"
[64827] "Tokyo" "Olympic"
[64829] "today" "Manipur"
[64831] "filled" "much"
[64833] "joy" "today"
[64835] "Also" "Watch"
[64837] "|" "PM"
[64839] "Modi" "speaks"
[64841] "Manpreet" "coach"
[64843] "Reid" "Olympic"
[64845] "hockey" "bronze"
[64847] "Congratulating" "India"
[64849] "team" "sharing"
[64851] "video" "chat"
[64853] "26-year-old" "Sharma"
[64855] "Facebook" "page"
[64857] "Singh" "promised"
[64859] "Nilakanta" "job"
[64861] "state" "along"
[64863] "cash" "reward"
[64865] "Rs" "75"
[64867] "lakh" "making"
[64869] "country" "state"
[64871] "proud.Sharma" "currently"
[64873] "employed" "Indian"
[64875] "Railways" "Meanwhile"
[64877] "congratulating" "team"
[64879] "victory" "Hockey"
[64881] "India" "president"
[64883] "Gyanendro" "Ningombam"
[64885] "said" "congratulate"
[64887] "India" "men's"
[64889] "team" "ending"
[64891] "41" "years"
[64893] "medal" "drought"
[64895] "made" "us"
[64897] "proud" "Now"
[64899] "also" "praying"
[64901] "women's" "team's"
[64903] "victory" "bronze"
[64905] "medal" "match"
[64907] "tomorrow" "Manipur"
[64909] "Hockey" "also"
[64911] "congratulated" "India"
[64913] "men's" "team"
[64915] "Since" "1984"
[64917] "state" "produced"
[64919] "seven" "Olympians"
[64921] "hockey" "alone"
[64923] "State's" "weightlifter"
[64925] "Saikhom" "Mirabai"
[64927] "Chanu" "made"
[64929] "country" "proud"
[64931] "clinching" "nation's"
[64933] "first" "silver"
[64935] "medal" "49"
[64937] "kg" "women's"
[64939] "weightlifting" "category"
[64941] "first" "day"
[64943] "Tokyo" "Olympic"
[64945] "2020" "Published"
[64947] "HT" "Digital"
[64949] "Content" "Services"
[64951] "permission" "Hindustan"
[64953] "Times" "query"
[64955] "respect" "article"
[64957] "content" "requirement"
[64959] "please" "contact"
[64961] "Editor" "Classification"
[64963] "Language" "ENGLISH"
[64965] "Publication-Type" "Newswire"
[64967] "Body" "Bhavani"
[64969] "Devi" "cast"
[64971] "aside" "Asian"
[64973] "Games" "one"
[64975] "baffling" "selection"
[64977] "calls" "country's"
[64979] "fencing" "governing"
[64981] "body" "27-year-old"
[64983] "Bhavani" "Devi"
[64985] "scripted" "history"
[64987] "became" "first"
[64989] "fencer" "India"
[64991] "qualify" "Olympics"
[64993] "Tokyo" "2020"
[64995] "Olympics" "became"
[64997] "first" "Indian"
[64999] "fencing" "player"
[65001] "win" "match"
[65003] "Olympics" "registering"
[65005] "confident" "15-3"
[65007] "win" "Tunisia's"
[65009] "Nadia" "Ben"
[65011] "Azizi" "next"
[65013] "round" "lost"
[65015] "toworld" "number"
[65017] "three" "Rio"
[65019] "Olympic" "semifinalist"
[65021] "Manon" "Brunet"
[65023] "France" "7-15"
[65025] "Manon" "Brunet"
[65027] "dominated" "Bhavani"
[65029] "two" "halves"
[65031] "defeated" "Indian"
[65033] "15-7" "marched"
[65035] "round" "16"
[65037] "getting" "knocked"
[65039] "Tokyo" "2020"
[65041] "Devi" "took"
[65043] "Twitter" "admitted"
[65045] "put" "everything"
[65047] "level" "best"
[65049] "convert" "second"
[65051] "round" "win"
[65053] "sorry" "Devi"
[65055] "wrote" "along"
[65057] "folded" "hand"
[65059] "emoji" "Indian"
[65061] "tricolors" "However"
[65063] "Bhavani" "Devi"
[65065] "got" "praise"
[65067] "accomplishment" "Olympics"
[65069] "Prime" "Minister"
[65071] "PM" "Narendra"
[65073] "Modi" "Tuesday"
[65075] "lauded" "India's"
[65077] "first-ever" "fencer"
[65079] "Olympics" "Bhavani"
[65081] "Devi" "commendable"
[65083] "performance" "Tokyo"
[65085] "PM" "Modi"
[65087] "reacted" "tweet"
[65089] "stating" "wins"
[65091] "losses" "part"
[65093] "life" "Indian"
[65095] "Prime" "Minister"
[65097] "wrote" "country"
[65099] "proud" "contributions"
[65101] "gave" "best"
[65103] "counts" "Wins"
[65105] "losses" "part"
[65107] "life" "India"
[65109] "proud" "contributions"
[65111] "inspiration" "citizens"
[65113] "PM" "Modi"
[65115] "wrote" "tweet"
[65117] "Fencing" "one"
[65119] "five" "sports"
[65121] "permanent" "fixtures"
[65123] "Olympic" "Games"
[65125] "since" "first"
[65127] "modern" "Games"
[65129] "held" "1896"
[65131] "Based" "sword"
[65133] "fighting" "fencing"
[65135] "demands" "speed"
[65137] "anticipation" "reflexes"
[65139] "great" "mental"
[65141] "strength" "Though"
[65143] "fencing" "roots"
[65145] "Europe" "China"
[65147] "United" "States"
[65149] "enjoyed" "success"
[65151] "recent" "Games"
[65153] "Ruben" "Limardo"
[65155] "won" "second"
[65157] "Olympic" "gold"
[65159] "medal" "Venezuela's"
[65161] "history" "London"
[65163] "Olympics" "2012"
[65165] "Evidence" "sword"
[65167] "fights" "goes"
[65169] "back" "far"
[65171] "Ancient" "Egypt"
[65173] "1190" "BC"
[65175] "bouts" "duels"
[65177] "continuing" "18th"
[65179] "century" "Fencing"
[65181] "originally" "form"
[65183] "military" "training"
[65185] "started" "evolve"
[65187] "sport" "14th"
[65189] "15th" "century"
[65191] "Germany" "Italy"
[65193] "German" "fencing"
[65195] "masters" "organised"
[65197] "first" "guilds"
[65199] "notable" "Marxbrueder"
[65201] "Frankfurt" "1478"
[65203] "sport's" "popularity"
[65205] "increased" "17th"
[65207] "18th" "centuries"
[65209] "due" "invention"
[65211] "weapon" "flattened"
[65213] "tip" "known"
[65215] "foil" "set"
[65217] "rules" "governing"
[65219] "target" "area"
[65221] "wire-mesh" "mask"
[65223] "Bhavani" "Devi"
[65225] "hails" "middle-class"
[65227] "family" "north"
[65229] "Chennai's" "Washermenpet"
[65231] "first" "Indian"
[65233] "fencer" "ever"
[65235] "qualify" "Olympics"
[65237] "qualifying" "2020"
[65239] "Summer" "Olympics"
[65241] "supported" "GoSports"
[65243] "Foundation" "Rahul"
[65245] "Dravid" "Athlete"
[65247] "Mentorship" "Programme"
[65249] "three" "categories"
[65251] "fencing" "epee"
[65253] "foil" "sabre"
[65255] "Bhavani" "Devi"
[65257] "fences" "sabre"
[65259] "Bhavani" "Devi"
[65261] "cast" "aside"
[65263] "Asian" "Games"
[65265] "one" "baffling"
[65267] "selection" "calls"
[65269] "country's" "fencing"
[65271] "governing" "body"
[65273] "Senior" "Commonwealth"
[65275] "Championships" "Canberra"
[65277] "Australia" "last"
[65279] "week" "Bhavani"
[65281] "Devi" "won"
[65283] "gold" "beating"
[65285] "England's" "Emily"
[65287] "Ruaux" "15-12"
[65289] "closely" "fought"
[65291] "final" "decision"
[65293] "carry" "training"
[65295] "base" "Italy"
[65297] "undeterred" "non-selection"
[65299] "made" "split"
[65301] "second" "Classification"
[65303] "Language" "ENGLISH"
[65305] "Publication-Type" "Newspaper"
[65307] "Body" "India"
[65309] "Aug" "1"
[65311] "Prime" "Minister"
[65313] "Narendra" "Modi"
[65315] "Sunday" "congratulated"
[65317] "PV" "Sindhu"
[65319] "Indian" "shuttler"
[65321] "won" "bronze"
[65323] "medal" "Tokyo"
[65325] "Olympics" "PM"
[65327] "Modi" "took"
[65329] "twitter" "heap"
[65331] "praise" "ace"
[65333] "shuttler" "beat"
[65335] "China's" "Bing"
[65337] "Jiao" "21-13"
[65339] "21-15" "add"
[65341] "second" "Olympic"
[65343] "medal" "silver"
[65345] "won" "2016"
[65347] "Rio" "Games"
[65349] "elated" "stellar"
[65351] "performance" "@Pvsindhu1"
[65353] "Congratulations" "winning"
[65355] "Bronze" "@Tokyo2020"
[65357] "India's" "pride"
[65359] "one" "outstanding"
[65361] "Olympians" "#Tokyo2020"
[65363] "PM" "Modi"
[65365] "tweeted" "Sindhu"
[65367] "among" "athletes"
[65369] "spoken" "prime"
[65371] "minister" "virtual"
[65373] "interaction" "Olympic-bound"
[65375] "athletes" "held"
[65377] "just" "Indian"
[65379] "contingent" "left"
[65381] "Games" "PM"
[65383] "Modi" "spoken"
[65385] "Sindhu" "preparations"
[65387] "also" "lauded"
[65389] "parents" "sacrifices"
[65391] "put" "help"
[65393] "Sindhu" "become"
[65395] "champion" "shuttler"
[65397] "President" "India"
[65399] "Ram" "Nath"
[65401] "Kovind" "also"
[65403] "took" "Twitter"
[65405] "congratulate" "Sindhu"
[65407] "P" "V"
[65409] "Sindhu" "becomes"
[65411] "first" "Indian"
[65413] "woman" "win"
[65415] "medals" "two"
[65417] "Olympic" "games"
[65419] "set" "new"
[65421] "yardstick" "consistency"
[65423] "dedication" "excellence"
[65425] "heartiest" "congratulations"
[65427] "bringing" "glory"
[65429] "India" "tweeted"
[65431] "President" "India"
[65433] "twitter" "handle"
[65435] "Sindhu" "became"
[65437] "second" "Indian"
[65439] "athlete" "Sushil"
[65441] "Kumar" "first"
[65443] "Indian" "woman"
[65445] "win" "two"
[65447] "individual" "Olympic"
[65449] "medals" "Published"
[65451] "HT" "Digital"
[65453] "Content" "Services"
[65455] "permission" "Hindustan"
[65457] "Times" "query"
[65459] "respect" "article"
[65461] "content" "requirement"
[65463] "please" "contact"
[65465] "Editor" "Classification"
[65467] "Language" "ENGLISH"
[65469] "Publication-Type" "Newswire"
[65471] "Body" "ROHTAK"
[65473] "July" "29"
[65475] "Bhiwani" "boxer"
[65477] "Pooja" "Rani"
[65479] "Bohra" "30"
[65481] "entered" "quarterfinals"
[65483] "75kg" "weight"
[65485] "category" "Tokyo"
[65487] "Olympics" "defeating"
[65489] "Algeria's" "Ichrak"
[65491] "Chaib" "5-0"
[65493] "opening" "bout"
[65495] "Wednesday" "one"
[65497] "win" "away"
[65499] "securing" "least"
[65501] "bronze" "medal"
[65503] "ongoing" "Olympics"
[65505] "take" "China's"
[65507] "former" "world"
[65509] "champion" "Olympic"
[65511] "bronze" "medallist"
[65513] "Li" "Qian"
[65515] "August" "31"
[65517] "reaching" "international"
[65519] "podium" "Pooja's"
[65521] "initial" "days"
[65523] "boxing" "full"
[65525] "struggle" "coach"
[65527] "Sanjay" "Singh"
[65529] "Sheoran" "runs"
[65531] "Captain" "Hawa"
[65533] "Singh" "Boxing"
[65535] "Academy" "Bhiwani"
[65537] "said" "first"
[65539] "spotted" "wife"
[65541] "Mukesh" "Rani"
[65543] "lecturer" "Adarsh"
[65545] "Mahila" "Mahavidyalaya"
[65547] "Bhiwani" "got"
[65549] "admission" "bachelor's"
[65551] "degree" "2009"
[65553] "Pooja's" "father"
[65555] "Rajbir" "Singh"
[65557] "Bohra" "retired"
[65559] "Haryana" "Police"
[65561] "SI" "want"
[65563] "pursue" "boxing"
[65565] "thought" "might"
[65567] "get" "injured"
[65569] "used" "stay"
[65571] "home" "wife"
[65573] "got" "punches"
[65575] "face" "Later"
[65577] "told" "father"
[65579] "potential" "agreed"
[65581] "used" "train"
[65583] "six" "hours"
[65585] "day" "Sheoran"
[65587] "said" "competitors"
[65589] "good" "well-prepared"
[65591] "boxers" "single"
[65593] "mistake" "can"
[65595] "take" "game"
[65597] "away" "asked"
[65599] "focus" "strengths"
[65601] "hoping" "bring"
[65603] "laurels" "nation"
[65605] "added" "father"
[65607] "said" "pushing"
[65609] "get" "married"
[65611] "nearly" "five"
[65613] "years" "deferred"
[65615] "requested" "family"
[65617] "give" "time"
[65619] "looking" "groom"
[65621] "Pooja" "requested"
[65623] "couple" "years"
[65625] "can" "perform"
[65627] "better" "international"
[65629] "levels" "Now"
[65631] "hoping" "clinch"
[65633] "gold" "father"
[65635] "added" "Sharing"
[65637] "challenges" "faced"
[65639] "Pooja" "said"
[65641] "battled" "career-threatening"
[65643] "shoulder" "injury"
[65645] "burnt" "hand"
[65647] "lack" "financial"
[65649] "support" "making"
[65651] "far" "Hailing"
[65653] "Nimriwali" "9km"
[65655] "Bhiwani" "Pooja"
[65657] "used" "cycle"
[65659] "Captain" "Hawa"
[65661] "Singh" "Academy"
[65663] "initial" "days"
[65665] "presently" "posted"
[65667] "income" "tax"
[65669] "officer" "Delhi"
[65671] "2012" "joined"
[65673] "Indian" "Railways"
[65675] "clerk" "pursuing"
[65677] "boxing" "used"
[65679] "play" "basketball"
[65681] "football" "asked"
[65683] "quit" "team"
[65685] "game" "start"
[65687] "single-event" "game"
[65689] "defeated" "Haryana"
[65691] "Police" "boxer"
[65693] "2010" "event"
[65695] "Bhiwani" "hundreds"
[65697] "people" "village"
[65699] "gone" "tractor-trolleys"
[65701] "cheer" "added"
[65703] "Published" "HT"
[65705] "Digital" "Content"
[65707] "Services" "permission"
[65709] "Hindustan" "Times"
[65711] "query" "respect"
[65713] "article" "content"
[65715] "requirement" "please"
[65717] "contact" "Editor"
[65719] "Classification" "Language"
[65721] "ENGLISH" "Publication-Type"
[65723] "Newswire" "Body"
[65725] "India" "July"
[65727] "28" "adorable"
[65729] "video" "little"
[65731] "girl" "surfaced"
[65733] "Internet" "left"
[65735] "netizens" "gushing"
[65737] "Shared" "Reddit"
[65739] "video" "shows"
[65741] "toddler" "watching"
[65743] "weightlifting" "match"
[65745] "Tokyo" "Olympics"
[65747] "2020" "girl's"
[65749] "expressions" "watching"
[65751] "event" "stolen"
[65753] "many" "hearts"
[65755] "may" "just"
[65757] "video" "starts"
[65759] "little" "one"
[65761] "watching" "event"
[65763] "women's" "weightlifting"
[65765] "clip" "shows"
[65767] "strength" "power"
[65769] "showcased" "athletes"
[65771] "leave" "mesmerised"
[65773] "give" "away"
[65775] "whole" "clip"
[65777] "take" "look"
[65779] "recording" "Shared"
[65781] "20" "hours"
[65783] "ago" "video"
[65785] "garnered" "36,000"
[65787] "upvotes" "numbers"
[65789] "still" "increasing"
[65791] "People" "loved"
[65793] "little" "girl"
[65795] "awestruck" "athletes"
[65797] "many" "expressed"
[65799] "may" "athlete"
[65801] "making" "others"
[65803] "simply" "showered"
[65805] "video" "love"
[65807] "good" "wishes"
[65809] "watching" "career"
[65811] "great" "interest"
[65813] "See" "20"
[65815] "years" "said"
[65817] "Reddit" "user"
[65819] "strong" "lift"
[65821] "weights" "others"
[65823] "strong" "lift"
[65825] "spirits" "Keep"
[65827] "lifting" "little"
[65829] "girl" "wrote"
[65831] "another" "Personal"
[65833] "highlight" "looking"
[65835] "hands" "saying"
[65837] "sadness" "wish"
[65839] "strong" "hands"
[65841] "sitcom" "cut"
[65843] "workout" "montage"
[65845] "commented" "third"
[65847] "adorable" "need"
[65849] "add" "dropping"
[65851] "Olympic" "sport"
[65853] "expressed" "fourth"
[65855] "thoughts" "video"
[65857] "Published" "HT"
[65859] "Digital" "Content"
[65861] "Services" "permission"
[65863] "Hindustan" "Times"
[65865] "query" "respect"
[65867] "article" "content"
[65869] "requirement" "please"
[65871] "contact" "Editor"
[65873] "Classification" "Language"
[65875] "ENGLISH" "Publication-Type"
[65877] "Newswire" "Body"
[65879] "India" "July"
[65881] "30" "India's"
[65883] "first" "medal"
[65885] "winner" "Tokyo"
[65887] "Olympics" "2020"
[65889] "weightlifter" "Mirabai"
[65891] "Chanu" "currently"
[65893] "riding" "high"
[65895] "home" "away"
[65897] "family" "long"
[65899] "time" "Chanu"
[65901] "returned" "hometown"
[65903] "Imphal" "Tuesday"
[65905] "winning" "silver"
[65907] "women's" "49kg"
[65909] "category" "tweeted"
[65911] "picture" "enjoying"
[65913] "home-cooked" "meal"
[65915] "two" "long"
[65917] "years" "smile"
[65919] "finally" "eat"
[65921] "ghar" "ka"
[65923] "khana" "2"
[65925] "years" "tweeted"
[65927] "Earlier" "Chanu"
[65929] "tweeted" "delight"
[65931] "reunited" "family"
[65933] "feeling" "meeting"
[65935] "family" "long"
[65937] "span" "2"
[65939] "years" "beyond"
[65941] "words" "grateful"
[65943] "one" "showing"
[65945] "faith" "supporting"
[65947] "Thank" "Ema"
[65949] "baba" "sacrifices"
[65951] "made" "reach"
[65953] "level" "tweeted"
[65955] "couple" "photos"
[65957] "Chanu" "received"
[65959] "grand" "welcome"
[65961] "return" "hometown"
[65963] "felicitation" "ceremony"
[65965] "Manipur" "Chief"
[65967] "Minister" "Biren"
[65969] "Singh" "handed"
[65971] "cheque" "Rs"
[65973] "1" "crore"
[65975] "cash" "reward"
[65977] "also" "handed"
[65979] "appointment" "order"
[65981] "Additional" "Superintendent"
[65983] "Police" "Sports"
[65985] "Chanu" "silver"
[65987] "medal" "even"
[65989] "special" "love"
[65991] "people" "India"
[65993] "state" "Manipur"
[65995] "shown" "grateful"
[65997] "every" "person"
[65999] "came" "today"
[66001] "congratulate" "gave"
[66003] "blessings" "tweeted"
[66005] "Published" "HT"
[66007] "Digital" "Content"
[66009] "Services" "permission"
[66011] "Hindustan" "Times"
[66013] "query" "respect"
[66015] "article" "content"
[66017] "requirement" "please"
[66019] "contact" "Editor"
[66021] "Classification" "Language"
[66023] "ENGLISH" "Publication-Type"
[66025] "Newswire" "Body"
[66027] "New" "Delhi"
[66029] "Aug" "7"
[66031] "Standing" "podium"
[66033] "step" "fellow"
[66035] "bronze" "winner"
[66037] "Bajrang" "Punia"
[66039] "picked" "medal"
[66041] "tray" "put"
[66043] "around" "neck"
[66045] "immediately" "lifted"
[66047] "hands" "examined"
[66049] "one" "side"
[66051] "medal" "flipped"
[66053] "stared" "couple"
[66055] "seconds" "letting"
[66057] "rest" "stomach"
[66059] "medal" "indeed"
[66061] "position" "standing"
[66063] "podium" "star"
[66065] "wrestler" "envisioned"
[66067] "landing" "Tokyo"
[66069] "Games" "medal"
[66071] "nonetheless" "bronze"
[66073] "27-year-old's" "first"
[66075] "taste" "Olympics"
[66077] "stage" "uncharacteristically"
[66079] "subdued" "Punia"
[66081] "fought" "three"
[66083] "bouts" "Friday"
[66085] "strapping" "right"
[66087] "knee" "injury"
[66089] "picked" "around"
[66091] "month" "ago"
[66093] "Saturday" "evening"
[66095] "walked" "mat"
[66097] "without" "one"
[66099] "knee" "unshackled"
[66101] "wrestler" "unfettered"
[66103] "Punia" "showed"
[66105] "class" "stamped"
[66107] "authority" "beating"
[66109] "Daulet" "Niyazbekov"
[66111] "Kazakhstan" "8-0"
[66113] "win" "65kg"
[66115] "freestyle" "bronze"
[66117] "medal" "bout"
[66119] "different" "Punia"
[66121] "one" "showed"
[66123] "semi-final" "barely"
[66125] "24" "hours"
[66127] "ago" "outclassed"
[66129] "Azerbaijan's" "Haji"
[66131] "Aliyev" "12-5"
[66133] "largely" "one-sided"
[66135] "battle" "lot"
[66137] "like" "Punia"
[66139] "known" "recent"
[66141] "years" "lot"
[66143] "like" "Punia"
[66145] "entered" "Olympics"
[66147] "world" "1"
[66149] "looked" "every"
[66151] "bit" "like"
[66153] "one" "months"
[66155] "leading" "winning"
[66157] "gold" "Rome"
[66159] "Ranking" "Series"
[66161] "silver" "Asian"
[66163] "championships" "lot"
[66165] "like" "Punia"
[66167] "primed" "glory"
[66169] "Games" "Indian"
[66171] "wrestler" "delivered"
[66173] "three" "medals"
[66175] "world" "championships"
[66177] "happy" "result"
[66179] "set" "achieve"
[66181] "Winning" "Olympic"
[66183] "medal" "mean"
[66185] "achievement" "jump"
[66187] "joy" "bronze"
[66189] "Punia" "quoted"
[66191] "saying" "PTI"
[66193] "bronze" "bout"
[66195] "potentially" "tricky"
[66197] "one" "Indian"
[66199] "Niyazbekov" "two-time"
[66201] "worlds" "medal"
[66203] "winner" "second"
[66205] "silver" "2019"
[66207] "edition" "Nur-Sultan"
[66209] "defeated" "Punia"
[66211] "high-tempered" "high-scoring"
[66213] "close" "controversial"
[66215] "semi-final" "contest"
[66217] "Saturday" "however"
[66219] "controversy" "dominant"
[66221] "wrestler" "Punia"
[66223] "erred" "side"
[66225] "caution" "semi-final"
[66227] "Aliev" "switched"
[66229] "attack" "mode"
[66231] "Niyazbekov" "couple"
[66233] "minutes" "sussing"
[66235] "Punia" "looking"
[66237] "find" "openings"
[66239] "got" "first"
[66241] "point" "account"
[66243] "Kazakh's" "passivity"
[66245] "Niyazbekov" "Punia"
[66247] "headlock" "got"
[66249] "neatly" "20"
[66251] "seconds" "clock"
[66253] "first" "three"
[66255] "minutes" "Punia"
[66257] "went" "Niyazbekov's"
[66259] "legs" "moments"
[66261] "later" "pushed"
[66263] "yellow" "zone"
[66265] "clever" "change"
[66267] "direction" "earn"
[66269] "another" "point"
[66271] "break" "Punia"
[66273] "continued" "target"
[66275] "right" "leg"
[66277] "Kazakh" "defending"
[66279] "well" "Punia"
[66281] "orchestrating" "attacks"
[66283] "Niyazbekov" "busy"
[66285] "thwarting" "point"
[66287] "floodgates" "open"
[66289] "Going" "susceptible"
[66291] "right" "leg"
[66293] "Punia" "finally"
[66295] "executed" "take"
[66297] "4-0" "lead"
[66299] "Niyazbekov" "tried"
[66301] "target" "Punia's"
[66303] "legs" "Indian"
[66305] "turned" "move"
[66307] "brilliant" "counter-attack"
[66309] "time" "grabbing"
[66311] "rival's" "left"
[66313] "leg" "collecting"
[66315] "two" "points"
[66317] "minute" "left"
[66319] "bout" "clear"
[66321] "tide" "turned"
[66323] "two" "points"
[66325] "grabbing" "Niyazbekov's"
[66327] "right" "leg"
[66329] "Punia" "brought"
[66331] "medal" "shore"
[66333] "gave" "India"
[66335] "second" "medal"
[66337] "wrestling" "Tokyo"
[66339] "Ravi" "Dahiya's"
[66341] "gutsy" "silver"
[66343] "matching" "sport's"
[66345] "productive" "showing"
[66347] "2012" "London"
[66349] "Games" "Sushil"
[66351] "Kumar" "Yogeshwar"
[66353] "Dutt" "won"
[66355] "silver" "bronze"
[66357] "respectively" "nine"
[66359] "years" "ago"
[66361] "four" "men"
[66363] "products" "famed"
[66365] "Chhatrasal" "Stadium"
[66367] "New" "Delhi"
[66369] "Punia" "spent"
[66371] "several" "years"
[66373] "enrolled" "decade"
[66375] "ago" "found"
[66377] "mentor" "Dutt"
[66379] "Khudan" "village"
[66381] "Haryana" "father"
[66383] "Balwan" "Singh"
[66385] "boldly" "confidently"
[66387] "predicted" "Punia's"
[66389] "victory" "bout"
[66391] "son" "ensured"
[66393] "stayed" "true"
[66395] "father's" "words"
[66397] "told" "feel"
[66399] "disheartened" "semi-final"
[66401] "loss" "keep"
[66403] "focus" "Singh"
[66405] "told" "reporters"
[66407] "assured" "us"
[66409] "bring" "medal"
[66411] "Published" "HT"
[66413] "Digital" "Content"
[66415] "Services" "permission"
[66417] "Hindustan" "Times"
[66419] "query" "respect"
[66421] "article" "content"
[66423] "requirement" "please"
[66425] "contact" "Editor"
[66427] "Classification" "Language"
[66429] "ENGLISH" "Publication-Type"
[66431] "Newswire" "Body"
[66433] "Lucknow" "Aug"
[66435] "6" "air"
[66437] "festivity" "palpable"
[66439] "Uttar" "Pradesh"
[66441] "shared" "nation's"
[66443] "joy" "India"
[66445] "ending" "medal"
[66447] "drought" "hockey"
[66449] "41" "years"
[66451] "Tokyo" "Olympics"
[66453] "Thursday" "Chief"
[66455] "minister" "Yogi"
[66457] "Adityanath" "congratulated"
[66459] "Manpreet" "Singh-led"
[66461] "men's" "hockey"
[66463] "team" "winning"
[66465] "bronze" "Uttar"
[66467] "Pradesh" "Sports"
[66469] "Directorate" "announced"
[66471] "Rs" "1"
[66473] "crore" "purse"
[66475] "team's" "midfielder"
[66477] "Lalit" "Kumar"
[66479] "Upadhyay" "hails"
[66481] "Varanasi" "Today"
[66483] "Indian" "men's"
[66485] "hockey" "team"
[66487] "won" "bronze"
[66489] "medal" "Tokyo"
[66491] "Olympics" "historic"
[66493] "performance" "Today's"
[66495] "success" "added"
[66497] "golden" "chapter"
[66499] "history" "Indian"
[66501] "Hockey" "whole"
[66503] "nation" "proud"
[66505] "unforgettable" "achievement"
[66507] "Team" "India"
[66509] "Yogi" "Adityanath"
[66511] "tweeted" "soon"
[66513] "India's" "thrilling"
[66515] "5-4" "win"
[66517] "Germany" "Oi"
[66519] "Hockey" "Stadium"
[66521] "Tokyo" "announcing"
[66523] "Rs" "1"
[66525] "crore" "Lalit"
[66527] "behalf" "state"
[66529] "government" "UP's"
[66531] "director" "sports"
[66533] "RP" "Singh"
[66535] "said" "prize"
[66537] "according" "government's"
[66539] "scheme" "achievements"
[66541] "historic" "win"
[66543] "waiting" "happen"
[66545] "since" "1980"
[66547] "India" "won"
[66549] "gold" "medal"
[66551] "hockey" "Moscow"
[66553] "Olympics" "said"
[66555] "government" "already"
[66557] "announced" "Rs"
[66559] "12" "lakh"
[66561] "10" "Uttar"
[66563] "Pradesh" "athletes"
[66565] "gone" "represent"
[66567] "India" "Summer"
[66569] "Olympics" "anyone"
[66571] "wins" "gold"
[66573] "silver" "bronze"
[66575] "individual" "event"
[66577] "get" "Rs"
[66579] "6" "crore"
[66581] "Rs" "4"
[66583] "crore" "Rs"
[66585] "2" "crore"
[66587] "respectively" "added"
[66589] "Hockey" "Olympians"
[66591] "like" "Devesh"
[66593] "Chauhan" "Rahul"
[66595] "Singh" "Sujit"
[66597] "Kumar" "Ali"
[66599] "Saeed" "Danish"
[66601] "Mujtaba" "Shakeel"
[66603] "Ahmed" "Khan"
[66605] "Syed" "Ali"
[66607] "Zafar" "Iqbal"
[66609] "Mohinder" "Pal"
[66611] "Singh" "Jagbir"
[66613] "Singh" "hockey"
[66615] "greats" "like"
[66617] "Rajneesh" "Mishra"
[66619] "Arf" "Mohd"
[66621] "Khan" "Sanjay"
[66623] "Bisht" "Atif"
[66625] "Idrish" "also"
[66627] "praised" "team"
[66629] "Zafar" "Iqbal"
[66631] "key" "member"
[66633] "India's" "last"
[66635] "Olympic" "gold"
[66637] "medal" "winning"
[66639] "team" "1980"
[66641] "Moscow" "Games"
[66643] "said" "heart"
[66645] "mouth" "final"
[66647] "minutes" "match"
[66649] "Germany" "attacking"
[66651] "search" "equaliser"
[66653] "History" "made"
[66655] "broken" "jinx"
[66657] "miracle" "going"
[66659] "big" "impact"
[66661] "game" "revive"
[66663] "sport" "country"
[66665] "new" "beginning"
[66667] "new" "dawn"
[66669] "said" "Since"
[66671] "childhood" "hearing"
[66673] "India" "won"
[66675] "gold" "medals"
[66677] "Olympics" "eight"
[66679] "times" "never"
[66681] "got" "see"
[66683] "occasion" "lifetime"
[66685] "today" "like"
[66687] "dream" "come"
[66689] "true" "now"
[66691] "can" "say"
[66693] "seen" "India"
[66695] "winning" "medals"
[66697] "Olympics" "former"
[66699] "Indian" "hockey"
[66701] "captain" "Rajneesh"
[66703] "Mishra" "said"
[66705] "Former" "Junior"
[66707] "India" "star"
[66709] "Vijay" "Singh"
[66711] "senior" "coach"
[66713] "SK" "Lahiri"
[66715] "Kanpur" "Hockey"
[66717] "secretary" "TP"
[66719] "Singh" "Olympic"
[66721] "Association" "secretary"
[66723] "Anandeshwar" "Pandey"
[66725] "admired" "India's"
[66727] "podium" "finish"
[66729] "Games" "watched"
[66731] "match" "can"
[66733] "feel" "joy"
[66735] "comes" "country"
[66737] "wins" "40"
[66739] "years" "Pandey"
[66741] "said" "phone"
[66743] "Tokyo" "Published"
[66745] "HT" "Digital"
[66747] "Content" "Services"
[66749] "permission" "Hindustan"
[66751] "Times" "query"
[66753] "respect" "article"
[66755] "content" "requirement"
[66757] "please" "contact"
[66759] "Editor" "Classification"
[66761] "Language" "ENGLISH"
[66763] "Publication-Type" "Newswire"
[66765] "Body" "Ludhiana"
[66767] "Aug" "6"
[66769] "emotional" "yet"
[66771] "exciting" "moment"
[66773] "veteran" "hockey"
[66775] "players" "city"
[66777] "Indian" "men's"
[66779] "team" "defeated"
[66781] "Germany" "thrilling"
[66783] "match" "win"
[66785] "bronze" "medal"
[66787] "Tokyo" "Olympics"
[66789] "Thursday" "India's"
[66791] "first" "Olympic"
[66793] "medal" "hockey"
[66795] "since" "won"
[66797] "gold" "1980"
[66799] "players" "seen"
[66801] "sport" "glory"
[66803] "also" "decline"
[66805] "popularity" "said"
[66807] "hope" "historic"
[66809] "win" "encourages"
[66811] "players" "take"
[66813] "sport" "Many"
[66815] "hockey" "lovers"
[66817] "also" "honoured"
[66819] "former" "Olympian"
[66821] "Hardeep" "Singh"
[66823] "Grewal" "Sarabha"
[66825] "Nagar" "Meanwhile"
[66827] "Punjab" "Basketball"
[66829] "Association" "general"
[66831] "secretary" "Teja"
[66833] "Singh" "Dhaliwal"
[66835] "organised" "special"
[66837] "event" "celebrate"
[66839] "occasion" "Grewal"
[66841] "said" "Many"
[66843] "young" "players"
[66845] "used" "play"
[66847] "hockey" "shifted"
[66849] "towards" "sports"
[66851] "amid" "decline"
[66853] "popularity" "country"
[66855] "win" "hope"
[66857] "wind" "change"
[66859] "revival" "game"
[66861] "important" "conserve"
[66863] "talent" "provide"
[66865] "state-of-the-art" "infrastructure"
[66867] "Veteran" "hockey"
[66869] "player" "Jagbir"
[66871] "Grewal" "said"
[66873] "players" "going"
[66875] "inspire" "children"
[66877] "take" "game"
[66879] "create" "pyramid"
[66881] "young" "talent"
[66883] "compete" "grassroots"
[66885] "level" "given"
[66887] "us" "glimpse"
[66889] "better" "future"
[66891] "hockey" "look"
[66893] "back" "Former"
[66895] "national-level" "player"
[66897] "Satnam" "Singh"
[66899] "said" "heartening"
[66901] "see" "Indian"
[66903] "hockey" "moving"
[66905] "towards" "regaining"
[66907] "lost" "glory"
[66909] "victory" "less"
[66911] "gold" "One"
[66913] "medal" "prove"
[66915] "catalyst" "change"
[66917] "usher" "fresh"
[66919] "talent" "Published"
[66921] "HT" "Digital"
[66923] "Content" "Services"
[66925] "permission" "Hindustan"
[66927] "Times" "query"
[66929] "respect" "article"
[66931] "content" "requirement"
[66933] "please" "contact"
[66935] "Editor" "Classification"
[66937] "Language" "ENGLISH"
[66939] "Publication-Type" "Newswire"
[66941] "Body" "New"
[66943] "Delhi" "July"
[66945] "22" "Ten"
[66947] "Indian" "hockey"
[66949] "enthusiasts" "including"
[66951] "two" "Mumbai"
[66953] "land" "Tokyo"
[66955] "opening" "day"
[66957] "Olympics" "now"
[66959] "watch" "hockey"
[66961] "television" "going"
[66963] "watch" "support"
[66965] "Indian" "hockey"
[66967] "teams" "Olympics"
[66969] "first" "time"
[66971] "ten" "persons"
[66973] "30" "65"
[66975] "age" "group"
[66977] "different" "Indian"
[66979] "cities" "members"
[66981] "core" "group"
[66983] "One" "Team"
[66985] "One" "Dream"
[66987] "OTOD" "looking"
[66989] "forward" "watching"
[66991] "cheering" "Indian"
[66993] "men" "women"
[66995] "hockey" "team"
[66997] "Following" "announcement"
[66999] "Japanese" "government"
[67001] "spectators" "allowed"
[67003] "Olympic" "Games"
[67005] "abandoned" "travel"
[67007] "plans" "joined"
[67009] "11" "OTOD"
[67011] "members" "Persons"
[67013] "Indian" "Origin"
[67015] "Canada" "Finland"
[67017] "New" "Zealand"
[67019] "Malaysia" "United"
[67021] "Kingdom" "One"
[67023] "Team" "One"
[67025] "Dream" "group"
[67027] "passionate" "hockey"
[67029] "lovers" "follow"
[67031] "Indian" "national"
[67033] "hockey" "team"
[67035] "around" "world"
[67037] "OTOD" "formed"
[67039] "2010" "hockey"
[67041] "lovers" "met"
[67043] "World" "Cup"
[67045] "Commonwealth" "Games"
[67047] "India" "dream"
[67049] "see" "India"
[67051] "win" "Olympics"
[67053] "win" "World"
[67055] "Cup" "group"
[67057] "easily" "recognised"
[67059] "hockey" "events"
[67061] "white" "turbans"
[67063] "white" "head"
[67065] "scarves" "Mr"
[67067] "Leo" "Anthony"
[67069] "Devadoss" "banker"
[67071] "turned" "Coordinator"
[67073] "group" "represented"
[67075] "Karnataka" "State"
[67077] "junior" "level"
[67079] "said" "18"
[67081] "OTOD" "members"
[67083] "booked" "private"
[67085] "apartment" "Shinagawa"
[67087] "made" "advance"
[67089] "payment" "Rs"
[67091] "2" "lakh"
[67093] "friends" "Canada"
[67095] "Finland" "Malaysia"
[67097] "made" "arrangements"
[67099] "Mr" "Anthony"
[67101] "also" "volunteered"
[67103] "coach" "Dhanraj-Ballal"
[67105] "hockey" "academy"
[67107] "Mr" "Raja"
[67109] "Namdhari" "sports"
[67111] "goods" "dealer"
[67113] "Delhi" "actually"
[67115] "driving" "forcing"
[67117] "behind" "One"
[67119] "Team" "One"
[67121] "Dream" "OTOD"
[67123] "members" "excited"
[67125] "meeting" "year"
[67127] "half" "last"
[67129] "met" "FIH"
[67131] "Pro" "League"
[67133] "Bhuvaneshwar" "January"
[67135] "2020" "just"
[67137] "money" "lost"
[67139] "worried" "opportunity"
[67141] "lost" "confident"
[67143] "hockey" "men's"
[67145] "team" "make"
[67147] "victory" "stand"
[67149] "hope" "Indian"
[67151] "women's" "hockey"
[67153] "team" "make"
[67155] "quarter" "finals"
[67157] "beat" "team"
[67159] "world" "lucky"
[67161] "Mumbai" "based"
[67163] "sole" "ticketing"
[67165] "agent" "Tokyo"
[67167] "Olympics" "promised"
[67169] "reimburse" "certain"
[67171] "per" "centage"
[67173] "ticket" "money"
[67175] "refunded" "Tokyo"
[67177] "Olympic" "Committee"
[67179] "apartment" "owner"
[67181] "understanding" "agreed"
[67183] "refund" "us"
[67185] "amount" "however"
[67187] "huge" "disappointment"
[67189] "softened" "knowledge"
[67191] "spectators" "policy"
[67193] "Games" "interest"
[67195] "public" "health"
[67197] "also" "looking"
[67199] "forward" "buying"
[67201] "tickets" "boxing"
[67203] "wrestling" "badminton"
[67205] "Mr" "Devadoss"
[67207] "acknowleded" "help"
[67209] "Mr" "Siegfred"
[67211] "Aikman" "national"
[67213] "coach" "Japanese"
[67215] "men" "hockey"
[67217] "team" "Mr"
[67219] "Iakman" "good"
[67221] "friend" "OTOD"
[67223] "met" "Mr"
[67225] "Aikman" "designated"
[67227] "FIH" "International"
[67229] "Hockey" "Federation"
[67231] "High" "Performance"
[67233] "coach" "2018"
[67235] "World" "Cup"
[67237] "Bhubaneshwar" "guiding"
[67239] "us" "regarding"
[67241] "tour" "Tokyo"
[67243] "friend's" "mother"
[67245] "Dr" "Yashoda"
[67247] "second" "generation"
[67249] "Japanese" "paediatrician"
[67251] "runs" "private"
[67253] "clinic" "Bengaluru"
[67255] "also" "go"
[67257] "Tokyo" "watch"
[67259] "games" "many"
[67261] "archer" "son"
[67263] "Rakshak's" "friends"
[67265] "going" "even"
[67267] "going" "now"
[67269] "spectators" "Mr"
[67271] "Devadoss" "said"
[67273] "OTOD" "group"
[67275] "now" "planning"
[67277] "meet" "Bengaluru"
[67279] "August" "1"
[67281] "6" "miss"
[67283] "live" "action"
[67285] "Oi" "hockey"
[67287] "stadium" "three"
[67289] "miles" "Shinagawa"
[67291] "city" "stay"
[67293] "now" "watching"
[67295] "quarter" "finals"
[67297] "semi" "finals"
[67299] "finals" "men"
[67301] "women's" "hockey"
[67303] "team" "arranged"
[67305] "big" "screen"
[67307] "put" "just"
[67309] "group" "August"
[67311] "4" "arranged"
[67313] "lunch" "reached"
[67315] "17" "Bengaluru"
[67317] "based" "hockey"
[67319] "Olympians" "eight"
[67321] "hockey" "Olympians"
[67323] "including" "Arjun"
[67325] "Halappa" "Sabu"
[67327] "Virkey" "Poonacha"
[67329] "Bharat" "Chetri"
[67331] "Ashish" "Ballal"
[67333] "Nikin" "Thimaiyya"
[67335] "V.R" "Raghnunath"
[67337] "S.K" "Uthappa"
[67339] "promised" "join"
[67341] "us" "Hopefully"
[67343] "able" "persuade"
[67345] "join" "us"
[67347] "cheering" "Indian"
[67349] "women" "hockey"
[67351] "team" "semi"
[67353] "final" "match"
[67355] "day" "Classification"
[67357] "Language" "ENGLISH"
[67359] "Publication-Type" "Newspaper"
[67361] "Body" "Athletes"
[67363] "taking" "stand"
[67365] "wearing" "unitards"
[67367] "instead" "leotards"
[67369] "one" "case"
[67371] "tight" "shorts"
[67373] "replaced" "bikini"
[67375] "bottoms" "medal"
[67377] "tallies" "new"
[67379] "world" "records"
[67381] "spectacular" "upsets"
[67383] "generally" "dominate"
[67385] "conversation" "around"
[67387] "Olympics" "time"
[67389] "another" "important"
[67391] "topic" "repeatedly"
[67393] "come" "limelight"
[67395] "sexualisation" "sport"
[67397] "phrase" "first"
[67399] "hit" "headlines"
[67401] "German" "women's"
[67403] "gymnastics" "team"
[67405] "wore" "unitards"
[67407] "uniform" "sporting"
[67409] "event" "instead"
[67411] "traditionally" "favoured"
[67413] "leotards" "Flipping"
[67415] "new" "page"
[67417] "German" "women's"
[67419] "gymnastics" "team"
[67421] "made" "headlines"
[67423] "chosen" "wardrobe"
[67425] "four-member" "team"
[67427] "comprising" "Sarah"
[67429] "Voss" "Pauline"
[67431] "Schaefer-Betz" "Elisabeth"
[67433] "Seitz" "Kim"
[67435] "Bui" "wore"
[67437] "red" "white"
[67439] "full-body" "unitards"
[67441] "qualifying" "rounds"
[67443] "Olympics" "team"
[67445] "discussion" "event"
[67447] "decided" "wear"
[67449] "unitards" "move"
[67451] "designed" "promote"
[67453] "freedom" "choice"
[67455] "encourage" "women"
[67457] "wear" "makes"
[67459] "feel" "comfortable"
[67461] "team" "worn"
[67463] "unitards" "practices"
[67465] "well" "also"
[67467] "worn" "unitard"
[67469] "European" "championships"
[67471] "April" "unitard"
[67473] "leotard" "skin-tight"
[67475] "garments" "usually"
[67477] "made" "lycra"
[67479] "spandex" "stretchability"
[67481] "making" "perfect"
[67483] "choice" "gymnastics"
[67485] "dance" "unitard"
[67487] "worn" "German"
[67489] "team" "essentially"
[67491] "skintight" "suit"
[67493] "covers" "athletes"
[67495] "body" "right"
[67497] "ankles" "wrists"
[67499] "departure" "tradition"
[67501] "Women" "gymnasts"
[67503] "longest" "time"
[67505] "worn" "bikini-cut"
[67507] "leotard" "skin-tight"
[67509] "one-piece" "attire"
[67511] "covers" "torso"
[67513] "leaves" "thighs"
[67515] "bare" "French"
[67517] "acrobat" "Jules"
[67519] "Leotard" "often"
[67521] "credited" "creation"
[67523] "eponymous" "attire"
[67525] "worn" "women"
[67527] "athletes" "dancers"
[67529] "century" "Male"
[67531] "gymnasts" "hand"
[67533] "wear" "body-covering"
[67535] "outfits" "Olympic"
[67537] "rule" "book"
[67539] "allows" "athletes"
[67541] "wear" "full-body"
[67543] "suits" "rare"
[67545] "times" "athlete"
[67547] "chosen" "opt"
[67549] "religious" "reasons"
[67551] "case" "German"
[67553] "women's" "gymnastic"
[67555] "team" "costume"
[67557] "controversy" "made"
[67559] "headlines" "sporting"
[67561] "world" "recent"
[67563] "times" "Norwegian"
[67565] "women's" "beach"
[67567] "handball" "team"
[67569] "competing" "European"
[67571] "Beach" "Handball"
[67573] "Championship" "decided"
[67575] "shed" "usual"
[67577] "bikini-bottoms" "worn"
[67579] "match" "pair"
[67581] "tight" "shorts"
[67583] "Norwegian" "team"
[67585] "decided" "go"
[67587] "shorts" "bikini-bottom"
[67589] "suitable" "sport"
[67591] "involves" "diving"
[67593] "sand" "additionally"
[67595] "seen" "degrading"
[67597] "women" "team"
[67599] "fined" "1,500"
[67601] "euros" "European"
[67603] "Handball" "Federation"
[67605] "decision" "Norwegian"
[67607] "Handball" "Federation"
[67609] "fully" "supporting"
[67611] "team" "accepted"
[67613] "fine" "Pop"
[67615] "star" "Pink"
[67617] "also" "offered"
[67619] "pay" "fine"
[67621] "behalf" "team"
[67623] "decision" "German"
[67625] "women's" "team"
[67627] "received" "widespread"
[67629] "global" "support"
[67631] "Celebrated" "US"
[67633] "gymnast" "four-times"
[67635] "Olympic" "gold"
[67637] "medallist" "Simone"
[67639] "Biles" "applauded"
[67641] "said" "keep"
[67643] "wearing" "bikini-cut"
[67645] "leotard" "makes"
[67647] "appear" "taller"
[67649] "competing" "direct"
[67651] "outcome" "German"
[67653] "team's" "stand"
[67655] "Olympic" "Broadcasting"
[67657] "Services" "called"
[67659] "clampdown" "showcase"
[67661] "overtly" "sexualised"
[67663] "images" "female"
[67665] "athletes" "International"
[67667] "Olympic" "Committee"
[67669] "refreshed" "updated"
[67671] "portrayal" "guidelines"
[67673] "asked" "gender-equal"
[67675] "fair" "broadcasts"
[67677] "events" "new"
[67679] "guide" "points"
[67681] "include" "suggestions"
[67683] "like" "focus"
[67685] "unnecessarily" "looks"
[67687] "clothing" "intimate"
[67689] "body" "parts"
[67691] "reframing" "deleting"
[67693] "wardrobe" "malfunction"
[67695] "respect" "integrity"
[67697] "athlete" "Classification"
[67699] "Language" "ENGLISH"
[67701] "Publication-Type" "Newspaper"
[67703] "Body" "Tokyo"
[67705] "July" "24"
[67707] "Indian" "shooters"
[67709] "endured" "multiple"
[67711] "heartbreaks" "first"
[67713] "day" "competition"
[67715] "Tokyo" "Olympics"
[67717] "Saturday" "biggest"
[67719] "disappointment" "Saurabh"
[67721] "Chaudhary's" "failure"
[67723] "win" "medal"
[67725] "topping" "qualifications"
[67727] "Chaudhary" "replicate"
[67729] "form" "displayed"
[67731] "qualifications" "finish"
[67733] "seventh" "men's"
[67735] "10m" "air"
[67737] "pistol" "final"
[67739] "roommate" "friend"
[67741] "Abhishek" "Verma"
[67743] "make" "eight-man"
[67745] "finals" "settling"
[67747] "17th" "place"
[67749] "575" "event"
[67751] "considered" "one"
[67753] "India's" "best"
[67755] "bets" "podium"
[67757] "finish" "Iran's"
[67759] "Javad" "Foroughi"
[67761] "entered" "Games"
[67763] "red-hot" "form"
[67765] "won" "World"
[67767] "Cups" "lead-up"
[67769] "crowned" "new"
[67771] "Olympic" "champion"
[67773] "finishing" "score"
[67775] "244.8" "24-shot"
[67777] "final" "Serbian"
[67779] "Damir" "Mikec"
[67781] "realized" "dream"
[67783] "Olympic" "medal"
[67785] "fourth" "Games"
[67787] "winning" "silver"
[67789] "237.9" "Beijing"
[67791] "Games" "champion"
[67793] "Pang" "Wei"
[67795] "China" "won"
[67797] "bronze" "217.6"
[67799] "women's" "10m"
[67801] "air" "rifle"
[67803] "event" "first-timer"
[67805] "Elavenil" "Valarivan"
[67807] "Apurvi" "Chandela"
[67809] "failed" "qualify"
[67811] "finals" "finishing"
[67813] "16th" "36th"
[67815] "respectively" "Akasa"
[67817] "Range" "China's"
[67819] "Qian" "Wang"
[67821] "won" "ongoing"
[67823] "Games" "first"
[67825] "gold" "medal"
[67827] "shot" "Olympic"
[67829] "record" "251.8"
[67831] "eight-woman" "finals"
[67833] "Russian" "Olympic"
[67835] "Committee's" "Anastasiia"
[67837] "Galashina" "claimed"
[67839] "silver" "251.1"
[67841] "Switzerland's" "Nina"
[67843] "Christen" "took"
[67845] "bronze" "230.6"
[67847] "Following" "sensational"
[67849] "entry" "finals"
[67851] "lot" "hope"
[67853] "pinned" "Chaudhary"
[67855] "dismal" "show"
[67857] "women" "script"
[67859] "pan" "way"
[67861] "country's" "shooting"
[67863] "team" "wanted"
[67865] "Indian" "ace"
[67867] "shot" "137.4"
[67869] "eliminated" "seventh"
[67871] "place" "Chaudhary"
[67873] "get" "best"
[67875] "starts" "score"
[67877] "47.7" "placed"
[67879] "eighth" "standings"
[67881] "first" "five"
[67883] "shots" "Asian"
[67885] "Games" "Youth"
[67887] "Olympics" "gold-medallist"
[67889] "positioned" "sixth"
[67891] "12th" "shot"
[67893] "score" "117.2"
[67895] "managed" "survive"
[67897] "first" "elimination"
[67899] "round" "sustain"
[67901] "long" "Things"
[67903] "different" "qualifications"
[67905] "though" "Chaudhary"
[67907] "shooting" "586"
[67909] "finish" "ahead"
[67911] "world-class" "field"
[67913] "thanks" "perfect"
[67915] "100" "fourth"
[67917] "series" "back-to-back"
[67919] "98" "Verma"
[67921] "also" "contention"
[67923] "make" "cut"
[67925] "staging" "excellent"
[67927] "rally" "two"
[67929] "8s" "final"
[67931] "series" "dashed"
[67933] "hopes" "Chaudhary"
[67935] "started" "excellent"
[67937] "fashion" "shooting"
[67939] "10" "10"
[67941] "slipping" "second"
[67943] "part" "first"
[67945] "series" "Appearing"
[67947] "maiden" "Olympics"
[67949] "19-year-old" "multiple"
[67951] "World" "Cup"
[67953] "gold-medallist" "rallied"
[67955] "19th" "place"
[67957] "field" "36"
[67959] "inch" "closer"
[67961] "top" "eight"
[67963] "qualifying" "spots"
[67965] "Earlier" "day"
[67967] "world" "number"
[67969] "one" "Elavenil"
[67971] "finished" "16th"
[67973] "qualifications" "shooting"
[67975] "626.5" "six"
[67977] "series" "10"
[67979] "shots" "experienced"
[67981] "Apurvi" "also"
[67983] "finals" "world"
[67985] "record" "holder"
[67987] "event" "settled"
[67989] "36th" "place"
[67991] "aggregating" "621.9"
[67993] "Indians" "decent"
[67995] "start" "even"
[67997] "Apurvi" "slipped"
[67999] "disastrous" "second"
[68001] "series" "two"
[68003] "scores" "9.5"
[68005] "9.9" "21-year-old"
[68007] "Elavenil" "tried"
[68009] "remain" "reckoning"
[68011] "fine" "performance"
[68013] "third" "series"
[68015] "including" "shooting"
[68017] "perfect" "10.9"
[68019] "However" "Elavenil"
[68021] "World" "Cup"
[68023] "Final" "gold-medallist"
[68025] "maintain" "form"
[68027] "couple" "9s"
[68029] "fifth" "sixth"
[68031] "series" "pushed"
[68033] "Apurvi" "28"
[68035] "won" "two"
[68037] "World" "Cup"
[68039] "gold" "medals"
[68041] "excellent" "run"
[68043] "2019" "finished"
[68045] "34th" "2016"
[68047] "Rio" "Games"
[68049] "Ironically" "women's"
[68051] "10m" "air"
[68053] "rifle" "first"
[68055] "event" "India"
[68057] "clinched" "quotas"
[68059] "Tokyo" "Games"
[68061] "Apurvi" "Anjum"
[68063] "Moudgil" "claiming"
[68065] "2018" "World"
[68067] "Championship" "Changwon"
[68069] "Korea" "Moudgil's"
[68071] "quota" "given"
[68073] "Elavenil" "basis"
[68075] "latter's" "excellent"
[68077] "run" "form"
[68079] "Olympic" "selection"
[68081] "cycle" "Classification"
[68083] "Language" "ENGLISH"
[68085] "Publication-Type" "Newspaper"
[68087] "Body" "India"
[68089] "Aug" "5"
[68091] "soon" "final"
[68093] "whistle" "blown"
[68095] "people" "gathered"
[68097] "modest" "house"
[68099] "India" "hockey"
[68101] "goalkeeper" "Kizakambalam"
[68103] "Kerala's" "Ernakulam"
[68105] "turned" "ecstatic"
[68107] "P" "R"
[68109] "Sreejesh's" "father"
[68111] "P" "V"
[68113] "Raveendran" "led"
[68115] "celebration" "distributed"
[68117] "sweets" "proud"
[68119] "moment" "us"
[68121] "dream" "comes"
[68123] "true" "us"
[68125] "really" "happy"
[68127] "son" "Sreejesh"
[68129] "played" "key"
[68131] "role" "team"
[68133] "India's" "success"
[68135] "said" "35-year-old"
[68137] "goal" "keeper"
[68139] "stood" "like"
[68141] "rock" "many"
[68143] "saves" "dying"
[68145] "minutes" "bronze"
[68147] "medal" "match"
[68149] "India" "won"
[68151] "5-4" "Germany"
[68153] "historic" "win"
[68155] "41" "years"
[68157] "medal" "drought"
[68159] "sport" "bit"
[68161] "upset" "lost"
[68163] "semi" "finals"
[68165] "sure" "team"
[68167] "win" "medal"
[68169] "said" "Sreejesh's"
[68171] "wife" "Annesya"
[68173] "Married" "2012"
[68175] "couple" "two"
[68177] "children" "People"
[68179] "celebrated" "occasion"
[68181] "bursting" "crackers"
[68183] "Kerala" "Hockey"
[68185] "Federation" "announced"
[68187] "reward" "Rs"
[68189] "5" "lakh"
[68191] "goal" "keeper"
[68193] "Kerala" "government"
[68195] "also" "decided"
[68197] "give" "grand"
[68199] "reception" "One"
[68201] "oldest" "players"
[68203] "team" "Sreejesh"
[68205] "started" "taking"
[68207] "sports" "seriously"
[68209] "age" "eight"
[68211] "Initially" "sprinter"
[68213] "volleyball" "player"
[68215] "turned" "hockey"
[68217] "age" "12"
[68219] "instance" "coach"
[68221] "Though" "sport"
[68223] "popular" "state"
[68225] "many" "advised"
[68227] "change" "track"
[68229] "stood" "ground"
[68231] "made" "debut"
[68233] "2004" "national"
[68235] "junior" "team"
[68237] "got" "senior"
[68239] "team" "two"
[68241] "years" "later"
[68243] "Sreejesh" "played"
[68245] "three" "Olympics"
[68247] "country" "honoured"
[68249] "Padma" "Shri"
[68251] "2017" "Published"
[68253] "HT" "Digital"
[68255] "Content" "Services"
[68257] "permission" "Hindustan"
[68259] "Times" "query"
[68261] "respect" "article"
[68263] "content" "requirement"
[68265] "please" "contact"
[68267] "Editor" "Classification"
[68269] "Language" "ENGLISH"
[68271] "Publication-Type" "Newswire"
[68273] "Body" "New"
[68275] "Delhi" "Aug"
[68277] "8" "Neeraj"
[68279] "Chopra" "historic"
[68281] "victory" "Tokyo"
[68283] "Olympics" "won"
[68285] "everyone's" "heart"
[68287] "country" "23-year-old"
[68289] "javelin" "thrower"
[68291] "become" "first"
[68293] "Indian" "120"
[68295] "years" "win"
[68297] "Olympic" "medal"
[68299] "track-and-field" "discipline"
[68301] "Chopra" "junior"
[68303] "officer" "Indian"
[68305] "army" "Rajputana"
[68307] "Rifles" "produced"
[68309] "second-round" "throw"
[68311] "87.58m" "men's"
[68313] "javelin" "throw"
[68315] "brought" "first"
[68317] "gold" "medal"
[68319] "India" "Tokyo"
[68321] "Olympics" "2020"
[68323] "yesterday's" "victory"
[68325] "Neeraj" "Chopra"
[68327] "become" "youngest"
[68329] "Indian" "win"
[68331] "Olympic" "gold"
[68333] "age" "23"
[68335] "Chopra" "scripted"
[68337] "history" "Tokyo"
[68339] "August" "7"
[68341] "lot" "things"
[68343] "sports" "career"
[68345] "childhood" "village"
[68347] "personal" "life"
[68349] "become" "headlines"
[68351] "One" "interesting"
[68353] "secret" "Neeraj"
[68355] "Chopra's" "life"
[68357] "avid" "motorcyclist"
[68359] "Chopra's" "liking"
[68361] "motorcycles" "evident"
[68363] "Instagram" "account"
[68365] "picture" "Chopra"
[68367] "can" "seen"
[68369] "posing" "Bajaj"
[68371] "Pulsar" "220F"
[68373] "View" "post"
[68375] "Instagram" "post"
[68377] "shared" "Neeraj"
[68379] "Chopra" "@neeraj____chopra"
[68381] "View" "post"
[68383] "Instagram" "post"
[68385] "shared" "Neeraj"
[68387] "Chopra" "@neeraj____chopra"
[68389] "However" "Olympian"
[68391] "gold" "medalist's"
[68393] "prized" "possession"
[68395] "Harley-Davidson" "1200"
[68397] "Roadster" "Chopra"
[68399] "bought" "American"
[68401] "motorcycle" "2019"
[68403] "gift" "winning"
[68405] "Asian" "Games"
[68407] "year" "View"
[68409] "post" "Instagram"
[68411] "post" "shared"
[68413] "Neeraj" "Chopra"
[68415] "@neeraj____chopra" "now"
[68417] "Chopra" "add"
[68419] "upcoming" "Mahindra"
[68421] "XUV700" "garage"
[68423] "Mahindra" "Mahindra"
[68425] "Chairman" "Anand"
[68427] "Mahindra" "yesterday"
[68429] "announced" "gift"
[68431] "Chopra" "XUV700"
[68433] "mind-blowing" "performance"
[68435] "Olympics" "Published"
[68437] "HT" "Digital"
[68439] "Content" "Services"
[68441] "permission" "MINT"
[68443] "query" "respect"
[68445] "article" "content"
[68447] "requirement" "please"
[68449] "contact" "Editor"
[68451] "Classification" "Language"
[68453] "ENGLISH" "Publication-Type"
[68455] "Newspaper" "Body"
[68457] "Puri-based" "internationally"
[68459] "acclaimed" "sand"
[68461] "animator" "Manas"
[68463] "Kumar" "Sahoo"
[68465] "congratulated" "unique"
[68467] "way" "Sahoo"
[68469] "made" "enthralling"
[68471] "sand" "animation"
[68473] "honour" "Mirabai"
[68475] "Chanu" "became"
[68477] "first" "Indian"
[68479] "score" "medal"
[68481] "2020" "Tokyo"
[68483] "Olympics" "Sahoo's"
[68485] "artwork" "featured"
[68487] "portrait" "Mirabai"
[68489] "Chanu" "message"
[68491] "creation" "read"
[68493] "Congratulations" "Mirabai"
[68495] "Chanu" "sand"
[68497] "animation" "Sahoo"
[68499] "beautifully" "crafted"
[68501] "Olympic" "silver"
[68503] "medallist" "Mirabai"
[68505] "Chanu's" "face"
[68507] "fact" "spent"
[68509] "two" "hours"
[68511] "creating" "extensive"
[68513] "sand" "art"
[68515] "See" "masterpiece"
[68517] "Talking" "India"
[68519] "Today" "Manas"
[68521] "Kumar" "Sahoo"
[68523] "said" "created"
[68525] "sand" "animation"
[68527] "congratulate" "winning"
[68529] "silver" "medal"
[68531] "world's" "biggest"
[68533] "international" "sports"
[68535] "arena" "incredibly"
[68537] "proud" "Indian"
[68539] "weightlifter" "Mirabai"
[68541] "Chanu" "Saturday"
[68543] "women's" "49"
[68545] "kg" "weightlifting"
[68547] "event" "Tokyo"
[68549] "Olympics" "bringing"
[68551] "pride" "billions"
[68553] "Indians" "Earlier"
[68555] "Manas" "Kumar"
[68557] "Sahoo" "released"
[68559] "2.50" "minutes"
[68561] "animated" "sand"
[68563] "art" "film"
[68565] "based" "grand"
[68567] "bathing" "ritual"
[68569] "eve" "Snana"
[68571] "Purnima" "bringing"
[68573] "holy" "trinity"
[68575] "closer" "devotees"
[68577] "film" "Sahoo"
[68579] "depicted" "Lord"
[68581] "Balabhadra" "Devi"
[68583] "Subhadra" "Lord"
[68585] "Jagannath" "bathing"
[68587] "rituals" "Snana"
[68589] "Mandap" "Pahandi"
[68591] "Bije" "Chhera"
[68593] "Pahanra" "ritualistic"
[68595] "sweeping" "floor"
[68597] "Puri" "Gajapati"
[68599] "Maharaja" "Dibyasingha"
[68601] "Deo" "Following"
[68603] "legendary" "Milkha"
[68605] "Singh's" "death"
[68607] "words" "Salute"
[68609] "superhero" "flying"
[68611] "Sikh" "heartfelt"
[68613] "homage" "Manas"
[68615] "sahoo" "@SandArtistManas"
[68617] "Read" "|"
[68619] "Read" "|"
[68621] "Graphic" "Odisha"
[68623] "sand" "artist"
[68625] "sculpts" "fitting"
[68627] "tribute" "Olympic"
[68629] "medallist" "Mirabai"
[68631] "Chanu" "Classification"
[68633] "Language" "ENGLISH"
[68635] "Publication-Type" "Web"
[68637] "Publication" "Body"
[68639] "New" "Delhi"
[68641] "Aug" "8"
[68643] "India" "capped"
[68645] "best-ever" "performance"
[68647] "Tokyo" "Olympics"
[68649] "haul" "seven"
[68651] "medals" "including"
[68653] "gold" "token"
[68655] "appreciation" "Go"
[68657] "First" "previously"
[68659] "known" "GoAir"
[68661] "today" "announced"
[68663] "free" "travel"
[68665] "network" "5"
[68667] "years" "medal"
[68669] "winners" "token"
[68671] "appreciation" "brought"
[68673] "us" "glory"
[68675] "#Olympics2021" "happy"
[68677] "offer" "free"
[68679] "travel" "network"
[68681] "5" "years"
[68683] "medal" "winners"
[68685] "Go" "First"
[68687] "said" "tweet"
[68689] "token" "appreciation"
[68691] "brought" "us"
[68693] "glory" "#Olympics2021"
[68695] "happy" "offer"
[68697] "free" "travel"
[68699] "network" "5"
[68701] "years" "medal"
[68703] "winners" "#Tokyo2020"
[68705] "#GoFirst" "@mirabai_chanu"
[68707] "@Pvsindhu1" "@LovlinaBorgohai"
[68709] "@BajrangPunia" "@Neeraj_chopra1"
[68711] "#RaviDahiya" "@TheHockeyIndia"
[68713] "GO" "FIRST"
[68715] "@GoFirstairways" "August"
[68717] "8" "2021"
[68719] "statement" "Go"
[68721] "First" "said"
[68723] "offering" "free"
[68725] "travel" "medal-winners"
[68727] "next" "five"
[68729] "years" "2025"
[68731] "celebrate" "India's"
[68733] "best-ever" "haul"
[68735] "seven" "medals"
[68737] "Olympics" "seven"
[68739] "Olympics" "medallists"
[68741] "Mirabai" "Chanu"
[68743] "weight-lifting" "P.V.Sindhu"
[68745] "badminton" "Lovlina"
[68747] "Borgohain" "boxing"
[68749] "men's" "hockey"
[68751] "team" "Ravi"
[68753] "Kumar" "Dahiya"
[68755] "wrestling" "Bajrang"
[68757] "Punia" "wrestling"
[68759] "gold" "medallist"
[68761] "Neeraj" "Chopra"
[68763] "javelin" "throw"
[68765] "provided" "free"
[68767] "air" "travel"
[68769] "Go" "First"
[68771] "sectors" "next"
[68773] "five" "years"
[68775] "Go" "First"
[68777] "noted" "Regional"
[68779] "carrier" "Star"
[68781] "Air" "congratulated"
[68783] "Indian" "Olympic"
[68785] "Champions" "Tokyo"
[68787] "2020" "offered"
[68789] "lifetime" "free"
[68791] "air" "travel"
[68793] "Star" "Air"
[68795] "congratulates" "Indian"
[68797] "Olympic" "Champions"
[68799] "Tokyo" "2020"
[68801] "@neeraj_chopra1" "@BajrangPunia"
[68803] "@mirabai_chanu" "@ravidahiya60"
[68805] "@TheHockeyIndia" "@Pvsindhu1"
[68807] "@LovlinaBorgohai" "#OfficialStarAir"
[68809] "#WeCare" "#ConnectingRealIndia"
[68811] "#FlyNonStop" "#FlyWithStarAir"
[68813] "#SGGRising" "pic.twitter.com"
[68815] "SqyAFd7y4M" "Star"
[68817] "Air" "@OfficialStarAir"
[68819] "August" "8"
[68821] "2021" "Saturday"
[68823] "Javelin" "thrower"
[68825] "Neeraj" "Chopra"
[68827] "became" "second"
[68829] "Indian" "win"
[68831] "individual" "gold"
[68833] "Olympics" "Budget"
[68835] "carrier" "IndiGo"
[68837] "announced" "offer"
[68839] "unlimited" "free"
[68841] "travel" "Gold"
[68843] "Medallist" "Neeraj"
[68845] "Chopra" "period"
[68847] "one" "year"
[68849] "offer" "applicable"
[68851] "August" "8"
[68853] "2021" "till"
[68855] "August" "7"
[68857] "2022" "Ronojoy"
[68859] "Dutta" "Whole-time"
[68861] "Director" "Chief"
[68863] "Executive" "Officer"
[68865] "IndiGo" "said"
[68867] "Neeraj" "overjoyed"
[68869] "hear" "remarkable"
[68871] "achievement" "made"
[68873] "country" "proud"
[68875] "know" "IndiGo"
[68877] "employees" "truly"
[68879] "honoured" "welcome"
[68881] "onboard" "one"
[68883] "flights" "humility"
[68885] "like" "offer"
[68887] "free" "flights"
[68889] "IndiGo" "year"
[68891] "shown" "us"
[68893] "hard" "work"
[68895] "resilience" "passion"
[68897] "can" "achieve"
[68899] "sure" "torchbearer"
[68901] "future" "Indian"
[68903] "athletes" "Well"
[68905] "done" "Neeraj"
[68907] "India" "now"
[68909] "won" "seven"
[68911] "medals" "multi-sporting"
[68913] "event" "best-ever"
[68915] "performance" "ongoing"
[68917] "Tokyo" "2020"
[68919] "Bajrang" "Punia"
[68921] "Bronze" "Mirabai"
[68923] "Chanu" "silver"
[68925] "PV" "Sindhu"
[68927] "bronze" "Lovlina"
[68929] "Borgohain" "bronze"
[68931] "men's" "hockey"
[68933] "team" "bronze"
[68935] "Ravi" "Kumar"
[68937] "Dahiya" "silver"
[68939] "also" "won"
[68941] "medals" "Published"
[68943] "HT" "Digital"
[68945] "Content" "Services"
[68947] "permission" "MINT"
[68949] "query" "respect"
[68951] "article" "content"
[68953] "requirement" "please"
[68955] "contact" "Editor"
[68957] "Classification" "Language"
[68959] "ENGLISH" "Publication-Type"
[68961] "Newspaper" "Body"
[68963] "India" "Aug"
[68965] "1" "Friday"
[68967] "soon" "Lovlina"
[68969] "Borgohain" "outclassed"
[68971] "Chinese" "Taipei's"
[68973] "Nien-Chin" "Chen"
[68975] "seal" "bronze"
[68977] "medal" "women's"
[68979] "welterweight" "category"
[68981] "boxing" "Tokyo"
[68983] "Olympics" "entered"
[68985] "semi-finals" "heavy"
[68987] "downpour" "turned"
[68989] "road" "leading"
[68991] "home" "Assam"
[68993] "completely" "muddy"
[68995] "Now" "attempt"
[68997] "cheer" "23-year-old"
[68999] "boxer" "Assam's"
[69001] "first" "Olympic"
[69003] "medal" "winner"
[69005] "family" "residents"
[69007] "Baromukhia" "village"
[69009] "public" "works"
[69011] "department" "PWD"
[69013] "busy" "repairing"
[69015] "kuccha" "unmetalled"
[69017] "road" "home"
[69019] "located" "Sarupathar"
[69021] "Golaghat" "district"
[69023] "Assam" "returns"
[69025] "area" "declared"
[69027] "drought-hit" "season"
[69029] "day" "Lovlina's"
[69031] "quarter" "final"
[69033] "match" "rained"
[69035] "heavily" "turned"
[69037] "road" "home"
[69039] "muddy" "unmotorable"
[69041] "said" "Biswajit"
[69043] "Phukan" "ruling"
[69045] "Bharatiya" "Janata"
[69047] "Party" "BJP"
[69049] "MLA" "Sarupathar"
[69051] "spoke" "chief"
[69053] "minister" "Himanta"
[69055] "Biswa" "Sarma"
[69057] "decided" "make"
[69059] "road" "motorable"
[69061] "now" "busy"
[69063] "ensuring" "repaired"
[69065] "returns" "Tokyo"
[69067] "metalled" "monsoon"
[69069] "season" "added"
[69071] "Lovlina's" "home"
[69073] "located" "around"
[69075] "3" "kms"
[69077] "Barpathar" "nearest"
[69079] "town" "portions"
[69081] "road" "gravelled"
[69083] "nearly" "2"
[69085] "kms" "completely"
[69087] "muddy" "Around"
[69089] "600" "metres"
[69091] "last" "stretch"
[69093] "leads" "boxer's"
[69095] "home" "repaired"
[69097] "workers" "now"
[69099] "Sarupathar" "assembly"
[69101] "constituency" "Baromukhia"
[69103] "village" "falls"
[69105] "biggest" "Assam"
[69107] "also" "worst"
[69109] "roads" "According"
[69111] "Phukan" "constituency"
[69113] "nearly" "2000"
[69115] "kms" "mud"
[69117] "roads" "present"
[69119] "Till" "years"
[69121] "back" "road"
[69123] "village" "bad"
[69125] "Last" "year"
[69127] "Lovlina" "qualified"
[69129] "Olympics" "Golaghat"
[69131] "deputy" "commissioner"
[69133] "visited" "home"
[69135] "assured" "us"
[69137] "something" "get"
[69139] "sand" "gravel"
[69141] "laid" "road"
[69143] "said" "Lovlina's"
[69145] "father" "Tiken"
[69147] "Borgohain" "Friday"
[69149] "Lovlina's" "match"
[69151] "local" "MLA"
[69153] "Phukan" "called"
[69155] "assured" "work"
[69157] "road" "completed"
[69159] "soon" "Starting"
[69161] "home" "workers"
[69163] "busy" "filling"
[69165] "600" "metre"
[69167] "stretch" "sand"
[69169] "gravel" "present"
[69171] "happy" "added"
[69173] "Speaking" "Lovlina's"
[69175] "semi-final" "match"
[69177] "August" "4"
[69179] "Borgohain" "said"
[69181] "boxer" "confident"
[69183] "state" "mind"
[69185] "expects" "win"
[69187] "enter" "finals"
[69189] "shot" "gold"
[69191] "Lovlina's" "father"
[69193] "mother" "Mamoni"
[69195] "watching" "daughter's"
[69197] "matches" "live"
[69199] "television" "Though"
[69201] "TV" "home"
[69203] "wait" "match"
[69205] "get" "news"
[69207] "result" "lot"
[69209] "emotion" "involved"
[69211] "watching" "match"
[69213] "live" "happy"
[69215] "Lovlina" "won"
[69217] "bouts" "assured"
[69219] "medal" "mother"
[69221] "watching" "next"
[69223] "two" "matches"
[69225] "well" "said"
[69227] "Borgohain" "Published"
[69229] "HT" "Digital"
[69231] "Content" "Services"
[69233] "permission" "Hindustan"
[69235] "Times" "query"
[69237] "respect" "article"
[69239] "content" "requirement"
[69241] "please" "contact"
[69243] "Editor" "Classification"
[69245] "Language" "ENGLISH"
[69247] "Publication-Type" "Newswire"
[69249] "Body" "Indian"
[69251] "women's" "hockey"
[69253] "team" "created"
[69255] "history" "entered"
[69257] "semi-finals" "big"
[69259] "tournament" "lost"
[69261] "Argentina" "now"
[69263] "play" "bronze"
[69265] "maiden" "Olympic"
[69267] "podium" "clash"
[69269] "Oi" "Hockey"
[69271] "Stadium" "time"
[69273] "women" "made"
[69275] "first" "Olympic"
[69277] "appearance" "1980"
[69279] "Games" "Moscow"
[69281] "second" "Olympic"
[69283] "appearance" "2016"
[69285] "Olympics" "Rio"
[69287] "de" "Janeiro"
[69289] "thedetailsof" "game"
[69291] "Great" "Britain"
[69293] "vs" "India"
[69295] "women's" "hockey"
[69297] "bronze" "medalmatch"
[69299] "start" "Great"
[69301] "Britain" "vs"
[69303] "India" "women's"
[69305] "hockey" "bronze"
[69307] "medal" "match"
[69309] "begin" "7"
[69311] "00" "IST"
[69313] "Friday" "August"
[69315] "6" "Germany"
[69317] "vs" "Indiamen's"
[69319] "hockey" "bronze"
[69321] "medal" "match"
[69323] "played" "Great"
[69325] "Britain" "vs"
[69327] "India" "women's"
[69329] "hockey" "bronze"
[69331] "medal" "match"
[69333] "played" "Oi"
[69335] "Hockey" "Stadium"
[69337] "North" "Pitch"
[69339] "Tokyo" "Japan"
[69341] "TV" "channels"
[69343] "broadcast" "Great"
[69345] "Britain" "vs"
[69347] "India" "women's"
[69349] "hockey" "bronze"
[69351] "medal" "match"
[69353] "Great" "Britain"
[69355] "vs" "India"
[69357] "women's" "hockey"
[69359] "bronze" "medal"
[69361] "matchwill" "broadcast"
[69363] "Sony" "Sports"
[69365] "Network" "India"
[69367] "watch" "live"
[69369] "streaming" "Great"
[69371] "Britain" "vs"
[69373] "India" "women's"
[69375] "hockey" "bronze"
[69377] "medal" "match"
[69379] "Fans" "can"
[69381] "catch" "live"
[69383] "streaming" "Great"
[69385] "Britain" "vs"
[69387] "India" "women's"
[69389] "hockey" "bronze"
[69391] "medal" "matchon"
[69393] "SonyLIV" "website"
[69395] "SonyLIV" "app"
[69397] "India" "Classification"
[69399] "Language" "ENGLISH"
[69401] "Publication-Type" "Newspaper"
[69403] "Body" "India"
[69405] "July" "31"
[69407] "Olympic" "bronze-medallist"
[69409] "shooter" "Gagan"
[69411] "Narang" "disappointed"
[69413] "India" "able"
[69415] "score" "win"
[69417] "shooting" "ongoing"
[69419] "Olympics" "also"
[69421] "thinking" "athletes"
[69423] "must" "going"
[69425] "much" "attention"
[69427] "flak" "coming"
[69429] "way" "winning"
[69431] "medals" "something"
[69433] "trying" "wrap"
[69435] "head" "around"
[69437] "multiple" "factors"
[69439] "lot" "talked"
[69441] "athletes" "must"
[69443] "understand" "young"
[69445] "whatever" "needed"
[69447] "done" "Narang"
[69449] "tells" "us"
[69451] "adding" "coaches"
[69453] "sent" "Croatia"
[69455] "whole" "system"
[69457] "behind" "administrative"
[69459] "part" "right"
[69461] "track" "Asked"
[69463] "ongoing" "tussle"
[69465] "around" "coach"
[69467] "player" "relationship"
[69469] "says" "aware"
[69471] "nitty-gritty" "exactly"
[69473] "going" "know"
[69475] "athletes" "training"
[69477] "certain" "set"
[69479] "coaches" "went"
[69481] "Olympics" "set"
[69483] "coaches" "go"
[69485] "sure" "players"
[69487] "comfortable" "situation"
[69489] "comes" "performance"
[69491] "Narang" "48"
[69493] "agrees" "quite"
[69495] "disappointing" "know"
[69497] "reason" "behind"
[69499] "probably" "away"
[69501] "home" "long"
[69503] "kind" "went"
[69505] "cup" "half"
[69507] "empty" "Olympic"
[69509] "Games" "pressure"
[69511] "speak" "thought"
[69513] "gave" "best"
[69515] "However" "ace"
[69517] "marksman" "whose"
[69519] "last" "Olympic"
[69521] "appearance" "Rio"
[69523] "five" "years"
[69525] "ago" "appreciate"
[69527] "criticism" "coming"
[69529] "way" "People"
[69531] "even" "read"
[69533] "sports" "reading"
[69535] "commenting" "feel"
[69537] "right" "nobody"
[69539] "contributed" "journey"
[69541] "people" "athletes"
[69543] "wanted" "support"
[69545] "everyone" "athletes"
[69547] "winning" "world"
[69549] "cup" "medals"
[69551] "People" "even"
[69553] "congratulate" "much"
[69555] "hue" "cry"
[69557] "lost" "today"
[69559] "either" "winning"
[69561] "complete" "death"
[69563] "rues" "Narang"
[69565] "India's" "leading"
[69567] "pistol" "shooters"
[69569] "Manu" "Bhaker"
[69571] "Saurabh" "Chaudhary"
[69573] "well" "rifle"
[69575] "stars" "Elavenil"
[69577] "Valarivan" "Divyansh"
[69579] "Singh" "Panwar"
[69581] "failed" "make"
[69583] "mark" "events"
[69585] "Tokyo" "games"
[69587] "aired" "Sony"
[69589] "Sports" "Even"
[69591] "athletes" "grappling"
[69593] "turmoil" "emotions"
[69595] "shares" "2012"
[69597] "London" "Olympics"
[69599] "medal-winning" "shooter"
[69601] "spoke" "Valarivan"
[69603] "told" "Sir"
[69605] "best" "just"
[69607] "happening" "one"
[69609] "tell" "thing"
[69611] "continues" "numb"
[69613] "head" "right"
[69615] "now" "completely"
[69617] "drained" "probably"
[69619] "reading" "people"
[69621] "talking" "never"
[69623] "faced" "kind"
[69625] "criticism" "won"
[69627] "world" "cup"
[69629] "medals" "media"
[69631] "shower" "also"
[69633] "Nobody" "bothered"
[69635] "won" "world"
[69637] "cup" "something"
[69639] "new" "Narang"
[69641] "thinks" "way"
[69643] "forward" "introspection"
[69645] "hopes" "athletes"
[69647] "face" "severe"
[69649] "punishment" "There'll"
[69651] "post" "mortem"
[69653] "hope" "athletes"
[69655] "get" "punished"
[69657] "performance" "job"
[69659] "perform" "best"
[69661] "trust" "deliver"
[69663] "Without" "putting"
[69665] "mental" "stress"
[69667] "introspect" "figure"
[69669] "went" "wrong"
[69671] "improve" "upon"
[69673] "next" "years"
[69675] "come" "says"
[69677] "Narang" "Still"
[69679] "giving" "hopes"
[69681] "writing" "anybody"
[69683] "still" "lot"
[69685] "shooting" "events"
[69687] "anyone" "can"
[69689] "dark" "horse"
[69691] "hope" "get"
[69693] "medals" "Rio"
[69695] "signs" "Interact"
[69697] "author" "Twitter"
[69699] "@sugandharawal" "Published"
[69701] "HT" "Digital"
[69703] "Content" "Services"
[69705] "permission" "Hindustan"
[69707] "Times" "query"
[69709] "respect" "article"
[69711] "content" "requirement"
[69713] "please" "contact"
[69715] "Editor" "Classification"
[69717] "Language" "ENGLISH"
[69719] "Publication-Type" "Newswire"
[69721] "Body" "Atanu"
[69723] "Das" "drilled"
[69725] "six" "perfect"
[69727] "10s" "play"
[69729] "crucial" "role"
[69731] "win" "Kazakhstan"
[69733] "Yumenoshima" "Park"
[69735] "Indian" "men's"
[69737] "archery" "team"
[69739] "Pravin" "Jadhav"
[69741] "Atanu" "Das"
[69743] "Tarundeep" "Rai"
[69745] "downed" "Kazakhstan"
[69747] "6-2" "set"
[69749] "quarterfinal" "clash"
[69751] "heavyweights" "Korea"
[69753] "Tokyo" "Olympics"
[69755] "Tokyo" "Monday"
[69757] "Indians" "strong"
[69759] "especially" "Atanu"
[69761] "Das" "drilled"
[69763] "six" "perfect"
[69765] "10s" "play"
[69767] "crucial" "role"
[69769] "team's" "win"
[69771] "Yumenoshima" "Park"
[69773] "Kazakhstan" "troika"
[69775] "Denis" "Gankin"
[69777] "Ilfat" "Abdullin"
[69779] "Sanzhar" "Mussayev"
[69781] "showed" "flashes"
[69783] "brilliance" "took"
[69785] "third" "set"
[69787] "one" "point"
[69789] "margin" "Das"
[69791] "made" "difference"
[69793] "hitting" "six"
[69795] "perfect" "10s"
[69797] "including" "two"
[69799] "Xs" "make"
[69801] "inconsistent" "show"
[69803] "Army" "duo"
[69805] "Rai" "Jadhav"
[69807] "Guatemala" "City"
[69809] "World" "Cup"
[69811] "gold" "medallist"
[69813] "Das" "looked"
[69815] "calm" "composed"
[69817] "showed" "tremendous"
[69819] "resilience" "bounce"
[69821] "back" "finishing"
[69823] "lowly" "35th"
[69825] "four" "places"
[69827] "behind" "Olympic"
[69829] "debutant" "Jadhav"
[69831] "ranking" "round"
[69833] "opening" "day"
[69835] "poor" "finish"
[69837] "resulted" "Das"
[69839] "removal" "mixed"
[69841] "team" "wife"
[69843] "Deepika" "Kumari"
[69845] "paired" "Jadhav"
[69847] "made" "quarterfinal"
[69849] "exit" "following"
[69851] "defeat" "Korea"
[69853] "Saturday" "Trailing"
[69855] "two" "points"
[69857] "halfway" "mark"
[69859] "first" "set"
[69861] "Jadhav" "Das"
[69863] "finished" "two"
[69865] "superb" "arrows"
[69867] "drilling" "X"
[69869] "edge" "Kazakhstan"
[69871] "rivals" "one"
[69873] "point" "gusts"
[69875] "wind" "second"
[69877] "set" "Army"
[69879] "duo" "three-time"
[69881] "Olympian" "Rai"
[69883] "debutant" "Jadhav"
[69885] "wobbly" "picking"
[69887] "8" "7"
[69889] "Das" "made"
[69891] "perfect" "10"
[69893] "9" "give"
[69895] "side" "commanding"
[69897] "4-0" "lead"
[69899] "high" "class"
[69901] "shooting" "third"
[69903] "set" "Kazakhstan"
[69905] "team" "stepped"
[69907] "three" "perfect"
[69909] "10s" "Indians"
[69911] "matched" "riding"
[69913] "two" "10s"
[69915] "Das" "8"
[69917] "Rai" "cost"
[69919] "set" "Kazakh"
[69921] "team" "showed"
[69923] "intent" "bring"
[69925] "match" "even"
[69927] "keel" "Indian"
[69929] "trio" "concede"
[69931] "inch" "sealed"
[69933] "issue" "two"
[69935] "10s" "Jadhav"
[69937] "Das" "Classification"
[69939] "Language" "ENGLISH"
[69941] "Publication-Type" "Newspaper"
[69943] "Body" "India"
[69945] "July" "28"
[69947] "Rani" "Rampal"
[69949] "Indian" "women's"
[69951] "hockey" "team"
[69953] "captain" "became"
[69955] "youngest" "player"
[69957] "national" "women's"
[69959] "hockey" "team"
[69961] "participated" "2010"
[69963] "World" "Cup"
[69965] "tender" "age"
[69967] "15" "Now"
[69969] "26" "Rani"
[69971] "reached" "Olympics"
[69973] "even" "participating"
[69975] "Tokyo" "year"
[69977] "Talking" "long"
[69979] "arduous" "journey"
[69981] "proper" "hockey"
[69983] "stick" "eating"
[69985] "barely" "two"
[69987] "meals" "day"
[69989] "now" "representing"
[69991] "India" "participating"
[69993] "Olympics" "young"
[69995] "sportswoman" "originally"
[69997] "hails" "Shahabad"
[69999] "Markanda" "Kurukshetra"
[70001] "district" "Haryana"
[70003] "recently" "opened"
[70005] "trials" "tribulations"
[70007] "faced" "course"
[70009] "Rani" "Rampal"
[70011] "shared" "amazing"
[70013] "inspiring" "story"
[70015] "Humans" "Bombay's"
[70017] "Instagram" "page"
[70019] "recently" "said"
[70021] "started" "playing"
[70023] "hockey" "simply"
[70025] "escape" "difficult"
[70027] "life" "play"
[70029] "broken" "one"
[70031] "begin" "shared"
[70033] "page" "wanted"
[70035] "escape" "life"
[70037] "electricity" "shortages"
[70039] "mosquitoes" "buzzing"
[70041] "ear" "barely"
[70043] "two" "meals"
[70045] "seeing" "home"
[70047] "getting" "flooded"
[70049] "much" "parents"
[70051] "Papa" "cart"
[70053] "puller" "Maa"
[70055] "maid" "went"
[70057] "spend" "hours"
[70059] "watching" "people"
[70061] "play" "hockey"
[70063] "nearby" "academy"
[70065] "hockey" "academy"
[70067] "nearby" "spend"
[70069] "hours" "watching"
[70071] "players-I" "really"
[70073] "wanted" "play"
[70075] "Papa" "earn"
[70077] "Rs" "80"
[70079] "day" "afford"
[70081] "buy" "stick"
[70083] "Everyday" "ask"
[70085] "coach" "teach"
[70087] "reject" "saying"
[70089] "strong" "enough"
[70091] "pull" "practice"
[70093] "session" "revealed"
[70095] "play" "broken"
[70097] "sticks" "usual"
[70099] "clothes" "rather"
[70101] "proper" "hockey"
[70103] "gear" "began"
[70105] "practicing" "broken"
[70107] "hockey" "stick-I"
[70109] "used" "run"
[70111] "around" "salwar"
[70113] "kameez" "determined"
[70115] "maine" "bahut"
[70117] "mushkil" "se"
[70119] "convince" "kiya"
[70121] "coach" "ko"
[70123] "family" "also"
[70125] "completely" "comfortable"
[70127] "wearing" "hockey"
[70129] "gear" "shares"
[70131] "family" "said"
[70133] "Hum" "tumhe"
[70135] "skirt" "pehen"
[70137] "kar" "khelne"
[70139] "nahi" "denge"
[70141] "plead" "Please"
[70143] "mujhe" "jaane"
[70145] "fail" "whatever"
[70147] "want" "family"
[70149] "gave" "Opening"
[70151] "difficult" "training"
[70153] "went" "Training"
[70155] "start" "early"
[70157] "clock" "mom"
[70159] "look" "sky"
[70161] "check" "time"
[70163] "wake" "academy"
[70165] "mandatory" "player"
[70167] "bring" "500"
[70169] "ml" "milk"
[70171] "family" "afford"
[70173] "milk" "worth"
[70175] "200" "ml"
[70177] "mix" "milk"
[70179] "water" "drink"
[70181] "However" "support"
[70183] "coach" "Rani"
[70185] "started" "make"
[70187] "improvements" "coach"
[70189] "supported" "buy"
[70191] "hockey" "kits"
[70193] "shoes" "even"
[70195] "took" "care"
[70197] "dietary" "needs"
[70199] "miss" "single"
[70201] "day" "practice"
[70203] "remember" "won"
[70205] "Rs" "500"
[70207] "tournament" "gave"
[70209] "money" "Papa"
[70211] "ever" "held"
[70213] "much" "money"
[70215] "hands" "promised"
[70217] "family" "One"
[70219] "day" "home"
[70221] "everything" "power"
[70223] "work" "towards"
[70225] "Rani" "recalls"
[70227] "fateful" "day"
[70229] "received" "lifechanging"
[70231] "call" "15"
[70233] "years" "age"
[70235] "representing" "state"
[70237] "finally" "got"
[70239] "national" "call"
[70241] "15" "Still"
[70243] "relatives" "ask"
[70245] "getting" "married"
[70247] "Papa" "said"
[70249] "Play" "heart's"
[70251] "content" "family's"
[70253] "support" "eventually"
[70255] "became" "captain"
[70257] "Indian" "hockey"
[70259] "team" "Soon"
[70261] "papa's" "friend"
[70263] "visited" "us"
[70265] "brought" "along"
[70267] "granddaughter" "told"
[70269] "inspired" "wants"
[70271] "become" "hockey"
[70273] "player" "happy"
[70275] "Rani" "concluded"
[70277] "sharing" "bought"
[70279] "home" "family"
[70281] "also" "dream"
[70283] "Tokyo" "Olympics"
[70285] "saying" "2017"
[70287] "fulfilled" "promise"
[70289] "made" "family"
[70291] "bought" "home"
[70293] "cried" "held"
[70295] "tightly" "done"
[70297] "yet" "year"
[70299] "determined" "repay"
[70301] "Coach" "something"
[70303] "always" "dreamed"
[70305] "of-a" "gold"
[70307] "medal" "Tokyo"
[70309] "Follow" "stories"
[70311] "Facebook" "Twitter"
[70313] "Published" "HT"
[70315] "Digital" "Content"
[70317] "Services" "permission"
[70319] "Hindustan" "Times"
[70321] "query" "respect"
[70323] "article" "content"
[70325] "requirement" "please"
[70327] "contact" "Editor"
[70329] "Classification" "Language"
[70331] "ENGLISH" "Publication-Type"
[70333] "Newswire" "Body"
[70335] "Indian" "boxer"
[70337] "Lovlina" "Borgohain"
[70339] "satisfied" "taking"
[70341] "bronze" "medal"
[70343] "women's" "welterweight"
[70345] "64-69kg" "category"
[70347] "stated" "prepared"
[70349] "gold" "ongoing"
[70351] "Tokyo" "2020"
[70353] "Olympics" "still"
[70355] "made" "India"
[70357] "proud" "hard-earned"
[70359] "bronze" "However"
[70361] "India" "still"
[70363] "three" "big"
[70365] "chances" "secure"
[70367] "medals" "today"
[70369] "Indian" "wrestler"
[70371] "Ravi" "Kumar"
[70373] "Dahiya" "57kg"
[70375] "Deepak" "Punia"
[70377] "86kg" "enjoyed"
[70379] "fruitful" "outings"
[70381] "Tokyo" "Olympic"
[70383] "Games" "secured"
[70385] "semifinal" "berths"
[70387] "respective" "weight"
[70389] "categories" "Makuhari"
[70391] "Messe" "opening"
[70393] "day" "wrestling"
[70395] "competition" "Ravi"
[70397] "Dahiya" "defeated"
[70399] "Bulgaria's" "Georgi"
[70401] "Vangelov" "14-4"
[70403] "technical" "superiority"
[70405] "reach" "last-four"
[70407] "men's" "57kg"
[70409] "category" "compatriot"
[70411] "Deepak" "Punia"
[70413] "overcame" "China's"
[70415] "Zushen" "Lin"
[70417] "6-3" "points"
[70419] "advance" "semifinals"
[70421] "Dahiya" "take"
[70423] "Nurislam" "Sanayev"
[70425] "Kazakhstan" "last-four"
[70427] "Punia" "David"
[70429] "Morris" "Taylor"
[70431] "USA" "Earlier"
[70433] "Dahiya" "won"
[70435] "opening-round" "bout"
[70437] "technical" "superiority"
[70439] "Colombia's" "Oscar"
[70441] "Tigreros" "secure"
[70443] "quarterfinal" "spot"
[70445] "Competing" "Round-of-16"
[70447] "bout" "Colombian"
[70449] "wrestler" "23-year-old"
[70451] "Dahiya" "making"
[70453] "Olympic" "debut"
[70455] "showed" "nerves"
[70457] "dominated" "bout"
[70459] "win" "technical"
[70461] "superiority" "13-2"
[70463] "Dahiya" "landed"
[70465] "attack" "attack"
[70467] "went" "13-2"
[70469] "winning" "bout"
[70471] "technical" "superiority"
[70473] "minutes" "spare"
[70475] "wrestling" "building"
[70477] "10-point" "lead"
[70479] "opponent" "results"
[70481] "victory" "technical"
[70483] "superiority" "3.30"
[70485] "pm" "later"
[70487] "day" "Indian"
[70489] "women" "take"
[70491] "Argentina" "second"
[70493] "semi-final" "women's"
[70495] "field" "hockey"
[70497] "competition" "Tokyo"
[70499] "Olympics" "Wednesday"
[70501] "Sjoerd" "Marijne's"
[70503] "charges" "created"
[70505] "history" "becoming"
[70507] "first" "Indian"
[70509] "team" "make"
[70511] "Olympic" "quarter-final"
[70513] "went" "step"
[70515] "getting" "better"
[70517] "three-time" "gold"
[70519] "medallists" "Australia"
[70521] "book" "place"
[70523] "semifinals" "Classification"
[70525] "Language" "ENGLISH"
[70527] "Publication-Type" "Newspaper"
[70529] "Body" "New"
[70531] "Delhi" "July"
[70533] "25" "Pizza"
[70535] "chain" "Domino's"
[70537] "promised" "weightlifter"
[70539] "Mirabai" "Chanu"
[70541] "free" "pizzas"
[70543] "life" "Olympic"
[70545] "athlete" "helped"
[70547] "India" "win"
[70549] "first" "silver"
[70551] "medal" "Tokyo"
[70553] "Olympics" "Chanu"
[70555] "said" "craved"
[70557] "pizza" "interview"
[70559] "TV" "channel"
[70561] "Congratulations" "bringing"
[70563] "medal" "home"
[70565] "brought" "dreams"
[70567] "billion" "+"
[70569] "Indians" "life"
[70571] "happier" "treat"
[70573] "FREE" "Domino's"
[70575] "pizza" "life"
[70577] "Congratulations" "Domino's"
[70579] "India" "posted"
[70581] "Twitter" "handle"
[70583] "Saturday" "evening"
[70585] "pizza" "chain's"
[70587] "team" "Imphal"
[70589] "made" "way"
[70591] "Chanu's" "family"
[70593] "home" "congratulate"
[70595] "parents" "well"
[70597] "Even" "prepare"
[70599] "give" "#MirabaiChanu"
[70601] "hero's" "welcome"
[70603] "let" "eat"
[70605] "pizzas" "heart's"
[70607] "content" "Imphal"
[70609] "team" "went"
[70611] "house" "congratulate"
[70613] "family" "else"
[70615] "Domino's" "Pizza"
[70617] "Congratulations" "@mirabai_chanu"
[70619] "done" "India"
[70621] "proud" "Pratik"
[70623] "Pota" "chief"
[70625] "executive" "officer"
[70627] "whole-time" "director"
[70629] "Jubilant" "Foodworks"
[70631] "operates" "pizza"
[70633] "chain" "India"
[70635] "said" "social"
[70637] "media" "post"
[70639] "Saturday" "26-year-old"
[70641] "Chanu" "won"
[70643] "silver" "49-kg"
[70645] "women's" "weightlifting"
[70647] "category" "marking"
[70649] "end" "India's"
[70651] "nearly" "two"
[70653] "decade" "long"
[70655] "wait" "win"
[70657] "medal" "win"
[70659] "category" "win"
[70661] "also" "marked"
[70663] "India's" "first"
[70665] "medal" "ongoing"
[70667] "2020" "Tokyo"
[70669] "Olympics" "interview"
[70671] "news" "channel"
[70673] "NDTV" "win"
[70675] "Chanu" "expressed"
[70677] "desire" "eat"
[70679] "pizza" "strict"
[70681] "diet" "preparation"
[70683] "Games" "First"
[70685] "go" "pizza"
[70687] "long" "time"
[70689] "since" "ate"
[70691] "eat" "lot"
[70693] "today" "Chanu"
[70695] "said" "India"
[70697] "sent" "largest-ever"
[70699] "continent" "2020"
[70701] "Tokyo" "Olympics"
[70703] "commenced" "23"
[70705] "July" "Mint"
[70707] "reported" "earlier"
[70709] "brands" "across"
[70711] "categories" "backing"
[70713] "India" "contingent"
[70715] "set" "represent"
[70717] "country" "2020"
[70719] "Tokyo" "Olympics"
[70721] "Indian" "Olympic"
[70723] "Association" "IOA"
[70725] "instance" "signed"
[70727] "brands" "Edelweiss"
[70729] "INOX" "Group"
[70731] "Nippon" "Paint"
[70733] "national" "sponsors"
[70735] "dairy" "brand"
[70737] "Amul" "Raymond"
[70739] "JSW" "Group"
[70741] "come" "board"
[70743] "partners" "Raymond"
[70745] "official" "styling"
[70747] "partner" "MPL"
[70749] "Sports" "Foundation"
[70751] "come" "board"
[70753] "principal" "sponsor"
[70755] "deal" "worth"
[70757] "Rs" "80"
[70759] "million" "covers"
[70761] "Tokyo" "Olympics"
[70763] "well" "Asian"
[70765] "Commonwealth" "Games"
[70767] "next" "year"
[70769] "promoters" "HT"
[70771] "Media" "Ltd"
[70773] "publishes" "Mint"
[70775] "Jubilant" "Foodworks"
[70777] "closely" "related"
[70779] "however" "promoter"
[70781] "cross-holdings" "Published"
[70783] "HT" "Digital"
[70785] "Content" "Services"
[70787] "permission" "MINT"
[70789] "query" "respect"
[70791] "article" "content"
[70793] "requirement" "please"
[70795] "contact" "Editor"
[70797] "Classification" "Language"
[70799] "ENGLISH" "Publication-Type"
[70801] "Newspaper" "Body"
[70803] "Tokyo" "Aug"
[70805] "7" "Putter"
[70807] "drawn" "Aditi"
[70809] "Ashok" "drew"
[70811] "breath" "Four"
[70813] "days" "leaderboard"
[70815] "come" "birdie"
[70817] "par-4" "18th"
[70819] "hole" "Kasumigaseki"
[70821] "Country" "Club"
[70823] "putter" "cut"
[70825] "tense" "silence"
[70827] "connected" "softly"
[70829] "birdie" "Grimacing"
[70831] "Ashok" "made"
[70833] "par" "knew"
[70835] "Olympic" "medal"
[70837] "first" "India"
[70839] "golf" "slipped"
[70841] "grasp" "golfing"
[70843] "gods" "said"
[70845] "Ashok" "finishing"
[70847] "three-under" "68"
[70849] "final" "day"
[70851] "Ashok" "said"
[70853] "given" "got"
[70855] "really" "good"
[70857] "lie" "tee"
[70859] "hit" "fairway"
[70861] "finally" "good"
[70863] "club" "good"
[70865] "number" "thought"
[70867] "okay" "chance"
[70869] "make" "birdie"
[70871] "said" "Ashok"
[70873] "23" "bunker"
[70875] "water" "hazard"
[70877] "right" "still"
[70879] "gave" "birdie"
[70881] "putt" "putt"
[70883] "think" "mean"
[70885] "wanted" "hole"
[70887] "gave" "best"
[70889] "attempt" "just"
[70891] "hard" "force"
[70893] "issue" "like"
[70895] "30" "feet"
[70897] "away" "Ranked"
[70899] "200th" "world"
[70901] "Ashok" "stunned"
[70903] "competition" "included"
[70905] "multiple" "winners"
[70907] "LPGA" "titles"
[70909] "seven-time" "winner"
[70911] "Japan" "Tour"
[70913] "Olympic" "medallists"
[70915] "finish" "15-under"
[70917] "269" "stroke"
[70919] "behind" "New"
[70921] "Zealand's" "Lydia"
[70923] "Ko" "Japanese"
[70925] "Mone" "Inami"
[70927] "Ko" "former"
[70929] "world" "1"
[70931] "16" "titles"
[70933] "won" "silver"
[70935] "Rio" "2016"
[70937] "Inami" "seven-time"
[70939] "winner" "Japan"
[70941] "LPGA" "Tour"
[70943] "Inami" "won"
[70945] "play-off" "take"
[70947] "silver" "gold"
[70949] "medallist" "world"
[70951] "1" "Nelly"
[70953] "Korda" "USA"
[70955] "ending" "stroke"
[70957] "ahead" "17-under"
[70959] "267" "Nelly's"
[70961] "sister" "Jessica"
[70963] "winner" "six"
[70965] "titles" "LPGA"
[70967] "Tour" "finished"
[70969] "tied" "15th"
[70971] "many" "expected"
[70973] "group" "Ashok"
[70975] "sole" "second"
[70977] "three" "rounds"
[70979] "generated" "interest"
[70981] "among" "leading"
[70983] "pack" "others"
[70985] "Many" "India"
[70987] "awake" "3am"
[70989] "weekend" "follow"
[70991] "final" "day"
[70993] "Another" "day"
[70995] "another" "tournament"
[70997] "Ashok" "23"
[70999] "taken" "fourth"
[71001] "place" "finish"
[71003] "even" "happy"
[71005] "though" "list"
[71007] "Indian" "fourth"
[71009] "finishers" "increased"
[71011] "one" "Saturday"
[71013] "club" "Ashok"
[71015] "said" "wanted"
[71017] "join" "guess"
[71019] "joined" "think"
[71021] "good" "just"
[71023] "even" "top"
[71025] "5" "top"
[71027] "10" "Olympics"
[71029] "really" "good"
[71031] "Ashok" "told"
[71033] "PTI" "Inami"
[71035] "zoomed" "contention"
[71037] "gold" "brilliant"
[71039] "final" "round"
[71041] "65" "nine"
[71043] "birdies" "dropped"
[71045] "shots" "second"
[71047] "sixth" "18th"
[71049] "holes" "Ashok"
[71051] "walked" "toe-to-toe"
[71053] "Korda" "Ko"
[71055] "birdies" "fifth"
[71057] "sixth" "eighth"
[71059] "13th" "14th"
[71061] "holes" "bogeyed"
[71063] "ninth" "11th"
[71065] "day" "play"
[71067] "stopped" "45"
[71069] "minutes" "rain"
[71071] "tee-off" "times"
[71073] "brought" "forward"
[71075] "get" "round"
[71077] "done" "tropical"
[71079] "storm" "hit"
[71081] "Ashok" "Lydia"
[71083] "close" "race"
[71085] "bronze" "New"
[71087] "Zealander" "dropped"
[71089] "shot" "16th"
[71091] "recovered" "birdie"
[71093] "17th" "Ashok"
[71095] "Even" "17th"
[71097] "perfect" "hit"
[71099] "exactly" "speed"
[71101] "wanted" "line"
[71103] "wanted" "Maybe"
[71105] "made" "many"
[71107] "birdies" "four"
[71109] "rounds" "golfing"
[71111] "gods" "like"
[71113] "okay" "going"
[71115] "give" "one"
[71117] "just" "tried"
[71119] "best" "said"
[71121] "Ashok's" "mother"
[71123] "Maheshwari" "carried"
[71125] "bags" "Tokyo"
[71127] "Rio" "two"
[71129] "great" "rounds"
[71131] "finished" "41st"
[71133] "father" "Ashok"
[71135] "Gudlamani" "incredible"
[71137] "experience" "said"
[71139] "parents" "walking"
[71141] "course" "successive"
[71143] "Olympics" "Published"
[71145] "HT" "Digital"
[71147] "Content" "Services"
[71149] "permission" "Hindustan"
[71151] "Times" "query"
[71153] "respect" "article"
[71155] "content" "requirement"
[71157] "please" "contact"
[71159] "Editor" "Classification"
[71161] "Language" "ENGLISH"
[71163] "Publication-Type" "Newswire"
[71165] "Body" "Indian"
[71167] "archers" "faltered"
[71169] "crucial" "moments"
[71171] "mighty" "Koreans"
[71173] "make" "quarterfinal"
[71175] "exit" "men's"
[71177] "team" "event"
[71179] "Tokyo" "Olympics"
[71181] "Monday" "beating"
[71183] "Kazakhstan" "6-2"
[71185] "Indian" "trio"
[71187] "Atanu" "Das"
[71189] "Pravin" "Jadhav"
[71191] "Tarundeep" "Rai"
[71193] "lost" "straight"
[71195] "sets" "top"
[71197] "seeds" "Yumenoshima"
[71199] "Park" "Korean"
[71201] "team" "Kim"
[71203] "Je" "Deok"
[71205] "Oh" "Jin"
[71207] "Hyek" "Kim"
[71209] "Woojin" "song"
[71211] "first" "two"
[71213] "sets" "shooting"
[71215] "10" "perfect"
[71217] "10s" "12"
[71219] "apply" "early"
[71221] "pressure" "Indians"
[71223] "won" "silver"
[71225] "medal" "2019"
[71227] "World" "Championships"
[71229] "responded" "well"
[71231] "second" "set"
[71233] "series" "four"
[71235] "10s" "Das"
[71237] "faltered" "8"
[71239] "last" "arrow"
[71241] "Koreans" "looked"
[71243] "roll" "India"
[71245] "let" "Guatemala"
[71247] "City" "World"
[71249] "Cup" "gold"
[71251] "medallist" "Das"
[71253] "failed" "repeat"
[71255] "brilliant" "show"
[71257] "earlier" "Kazakhstan"
[71259] "find" "single"
[71261] "10" "three"
[71263] "sets" "Olympic"
[71265] "debutant" "Jadhav"
[71267] "hand" "brilliant"
[71269] "five" "10s"
[71271] "veteran" "Rai"
[71273] "third" "Games"
[71275] "appearance" "also"
[71277] "stepped" "three"
[71279] "10s" "simply"
[71281] "enough" "Earlier"
[71283] "Das" "drilled"
[71285] "six" "perfect"
[71287] "10s" "play"
[71289] "crucial" "role"
[71291] "team's" "win"
[71293] "6-2" "win"
[71295] "Kazakhstan" "opening"
[71297] "round" "India's"
[71299] "hope" "first"
[71301] "ever" "medal"
[71303] "archery" "Olympics"
[71305] "now" "rest"
[71307] "individual" "section"
[71309] "men's" "trio"
[71311] "along" "world"
[71313] "number" "one"
[71315] "Deepika" "Kumari"
[71317] "take" "field"
[71319] "Wednesday" "Kazakhstan"
[71321] "Indians" "strong"
[71323] "especially" "Das"
[71325] "drilled" "six"
[71327] "perfect" "10s"
[71329] "play" "crucial"
[71331] "role" "team's"
[71333] "win" "Kazakhstan"
[71335] "troika" "Denis"
[71337] "Gankin" "Ilfat"
[71339] "Abdullin" "Sanzhar"
[71341] "Mussayev" "showed"
[71343] "flashes" "brilliance"
[71345] "took" "third"
[71347] "set" "one"
[71349] "point" "margin"
[71351] "Das" "made"
[71353] "difference" "hitting"
[71355] "six" "perfect"
[71357] "10s" "including"
[71359] "two" "Xs"
[71361] "make" "inconsistent"
[71363] "show" "Army"
[71365] "duo" "Rai"
[71367] "Jadhav" "Das"
[71369] "showed" "tremendous"
[71371] "resilience" "bounce"
[71373] "back" "finishing"
[71375] "lowly" "35th"
[71377] "four" "places"
[71379] "behind" "Olympic"
[71381] "debutant" "Jadhav"
[71383] "ranking" "round"
[71385] "opening" "day"
[71387] "poor" "finish"
[71389] "resulted" "Das"
[71391] "removal" "mixed"
[71393] "team" "wife"
[71395] "Deepika" "Kumari"
[71397] "paired" "Jadhav"
[71399] "made" "quarterfinal"
[71401] "exit" "following"
[71403] "defeat" "Korea"
[71405] "Saturday" "Trailing"
[71407] "two" "points"
[71409] "halfway" "mark"
[71411] "first" "set"
[71413] "Jadhav" "Das"
[71415] "finished" "two"
[71417] "superb" "arrows"
[71419] "drilling" "X"
[71421] "edge" "Kazakhstan"
[71423] "rivals" "one"
[71425] "point" "gusts"
[71427] "wind" "second"
[71429] "set" "Army"
[71431] "duo" "three-time"
[71433] "Olympian" "Rai"
[71435] "debutant" "Jadhav"
[71437] "wobbly" "picking"
[71439] "8" "7"
[71441] "Das" "made"
[71443] "perfect" "10"
[71445] "9" "give"
[71447] "side" "commanding"
[71449] "4-0" "lead"
[71451] "high" "class"
[71453] "shooting" "third"
[71455] "set" "Kazakhstan"
[71457] "team" "stepped"
[71459] "three" "perfect"
[71461] "10s" "Indians"
[71463] "matched" "riding"
[71465] "two" "10s"
[71467] "Das" "8"
[71469] "Rai" "cost"
[71471] "set" "Kazakh"
[71473] "team" "showed"
[71475] "intent" "bring"
[71477] "match" "even"
[71479] "keel" "Indian"
[71481] "trio" "concede"
[71483] "inch" "sealed"
[71485] "issue" "two"
[71487] "10s" "Jadhav"
[71489] "Das" "Classification"
[71491] "Language" "ENGLISH"
[71493] "Publication-Type" "Newspaper"
[71495] "Body" "decisive"
[71497] "smashes" "cutting"
[71499] "backhands" "confident"
[71501] "gait" "Rio"
[71503] "2016" "silver"
[71505] "medallist" "India's"
[71507] "PV" "Sindhu"
[71509] "Sunday" "July"
[71511] "25" "made"
[71513] "quick" "work"
[71515] "Israel's" "Ksenia"
[71517] "Polikarpova" "beating"
[71519] "21-7" "21-10"
[71521] "matches" "totalled"
[71523] "just" "twenty-nine"
[71525] "minutes" "Polikarpova"
[71527] "visibly" "frustrated"
[71529] "hanging" "head"
[71531] "lost" "point"
[71533] "quite" "easy"
[71535] "match" "Sindu"
[71537] "said" "Musashino"
[71539] "Forest" "Sport"
[71541] "Plaza" "adding"
[71543] "knows" "hopes"
[71545] "billion" "people"
[71547] "behind" "Though"
[71549] "Sindhu" "beaten"
[71551] "gold" "Rio"
[71553] "Olympics" "2016"
[71555] "Spain's" "Carolina"
[71557] "Marin" "7"
[71559] "world" "rankings"
[71561] "considered" "serious"
[71563] "threat" "table-toppers"
[71565] "Taiwan's" "Tai"
[71567] "Tzu-Ying" "Chen"
[71569] "Yu" "Fei"
[71571] "China" "Tokyo"
[71573] "fresh" "start"
[71575] "Sindu" "said"
[71577] "expect" "Superman"
[71579] "think" "medallist"
[71581] "like" "everybody"
[71583] "going" "top"
[71585] "form" "Later"
[71587] "Sunday" "Japan's"
[71589] "Kento" "Momota"
[71591] "make" "long-overdue"
[71593] "Olympic" "debut"
[71595] "highly" "anticipated"
[71597] "match" "United"
[71599] "States" "Timothy"
[71601] "Lam" "coming"
[71603] "personal" "professional"
[71605] "setbacks" "including"
[71607] "contracting" "COVID-19"
[71609] "Momota" "embroiled"
[71611] "illegal" "gambling"
[71613] "scandal" "months"
[71615] "Rio" "Games"
[71617] "2016" "banned"
[71619] "Nippon" "Badminton"
[71621] "Association" "world"
[71623] "2" "Momota"
[71625] "stripped" "league"
[71627] "tables" "time"
[71629] "got" "back"
[71631] "court" "2017"
[71633] "ranked" "282nd"
[71635] "39-match" "unbeaten"
[71637] "streak" "clawed"
[71639] "way" "back"
[71641] "top" "Momota's"
[71643] "Olympic" "dreams"
[71645] "seemed" "crushed"
[71647] "early" "2020"
[71649] "car" "accident"
[71651] "left" "driver"
[71653] "dead" "damaged"
[71655] "sight" "among"
[71657] "injuries" "time"
[71659] "recover" "pandemic"
[71661] "made" "comeback"
[71663] "All-England" "Open"
[71665] "March" "raising"
[71667] "Japanese" "hopes"
[71669] "can" "challenge"
[71671] "Olympic" "gold"
[71673] "never" "know"
[71675] "going" "happen"
[71677] "Kento" "obviously"
[71679] "tough" "experiences"
[71681] "said" "Denmark's"
[71683] "Viktor" "Axelsen"
[71685] "men's" "world"
[71687] "2" "Momota's"
[71689] "biggest" "competition"
[71691] "Games" "good"
[71693] "see" "back"
[71695] "healthy" "importantly"
[71697] "see" "can"
[71699] "well" "Classification"
[71701] "Language" "ENGLISH"
[71703] "Publication-Type" "Newspaper"
[71705] "Body" "Indian"
[71707] "shooters" "fired"
[71709] "blank" "second"
[71711] "successive" "Olympics"
[71713] "bitter" "mudslinging"
[71715] "game" "National"
[71717] "Rifle" "Association"
[71719] "India" "NRAI"
[71721] "blaming" "pistol"
[71723] "coach" "Jaspal"
[71725] "Rana" "debacle"
[71727] "need" "find"
[71729] "scapegoat" "happened"
[71731] "Tokyo" "someone"
[71733] "take" "lying"
[71735] "passing" "buck"
[71737] "Manu" "Bhaker's"
[71739] "failure" "want"
[71741] "know" "coaches"
[71743] "Tokyo" "happened"
[71745] "Zagreb" "Croatia"
[71747] "May" "onwards"
[71749] "shooters" "camp"
[71751] "Nobody" "asking"
[71753] "Zagreb" "month"
[71755] "told" "association"
[71757] "camp" "place"
[71759] "weather" "similar"
[71761] "Tokyo" "July-August"
[71763] "weather" "Zagreb"
[71765] "pleasant" "Nobody"
[71767] "bothered" "listen"
[71769] "ask" "accountability"
[71771] "NRAI" "requested"
[71773] "sports" "minister"
[71775] "Kiren" "Rijiju"
[71777] "appoint" "government"
[71779] "observer" "oversee"
[71781] "things" "run"
[71783] "NRAI" "taxpayer's"
[71785] "money" "association"
[71787] "feasting" "record"
[71789] "selection" "committee"
[71791] "meetings" "make"
[71793] "us" "know"
[71795] "happens" "deliberations"
[71797] "Parliament" "proceedings"
[71799] "can" "shown"
[71801] "live" "big"
[71803] "deal" "NRAI"
[71805] "meetings" "Jaspal"
[71807] "told" "Telegraph"
[71809] "According" "Jaspal"
[71811] "problem" "started"
[71813] "pistol" "shooter"
[71815] "Chinki" "Yadav"
[71817] "earned" "India"
[71819] "quota" "place"
[71821] "Shooting" "World"
[71823] "Cup" "held"
[71825] "New" "Delhi"
[71827] "March" "proposed"
[71829] "name" "25m"
[71831] "pistol" "event"
[71833] "advocated" "Chinki's"
[71835] "inclusion" "powers-that-be"
[71837] "like" "decided"
[71839] "Manu" "Rahi"
[71841] "Sarnobat" "participate"
[71843] "25m" "pistol"
[71845] "Chinky" "better"
[71847] "scores" "still"
[71849] "missed" "bus"
[71851] "earth" "Manu"
[71853] "allowed" "participate"
[71855] "three" "events"
[71857] "10m" "pistol"
[71859] "10m" "pistol"
[71861] "mixed" "25m"
[71863] "pistol" "Even"
[71865] "shooters" "calibre"
[71867] "Rajyavardhan" "Singh"
[71869] "Rathore" "Abhinav"
[71871] "Bindra" "Gagan"
[71873] "Narang" "participate"
[71875] "three" "events"
[71877] "throw" "kid"
[71879] "cauldron" "Manu"
[71881] "just" "19"
[71883] "just" "buckled"
[71885] "pressure" "preoccupied"
[71887] "things" "like"
[71889] "posting" "pictures"
[71891] "social" "media"
[71893] "eve" "10m"
[71895] "mixed" "event"
[71897] "Next" "day"
[71899] "Saurabh" "Chaudhary"
[71901] "tried" "best"
[71903] "Manu" "get"
[71905] "things" "right"
[71907] "age" "side"
[71909] "Paris" "matured"
[71911] "Jaspal" "1994"
[71913] "Asian" "Games"
[71915] "gold" "medallist"
[71917] "said" "NRAI"
[71919] "president" "Raninder"
[71921] "Singh" "Manu"
[71923] "blamed" "Jaspal"
[71925] "pistol" "shooters"
[71927] "abysmal" "performance"
[71929] "Jaspal" "thinks"
[71931] "19-year-old" "manipulated"
[71933] "feeling" "get"
[71935] "kid" "used"
[71937] "malign" "built"
[71939] "pistol" "squad"
[71941] "junior" "level"
[71943] "angry" "everything"
[71945] "fallen" "apart"
[71947] "Even" "leaving"
[71949] "Croatia" "told"
[71951] "travelling" "Tokyo"
[71953] "Amsterdam" "shooters"
[71955] "took" "flight"
[71957] "Tokyo" "came"
[71959] "know" "accompanying"
[71961] "felt" "bad"
[71963] "break" "news"
[71965] "Abhishek" "Verma"
[71967] "expecting" "shooting"
[71969] "range" "Classification"
[71971] "Language" "ENGLISH"
[71973] "Publication-Type" "Newspaper"
[71975] "Body" "Six-time"
[71977] "world" "champion"
[71979] "London" "Olympics"
[71981] "bronze" "medallist"
[71983] "registers" "fine"
[71985] "4-1" "victory"
[71987] "round-of-32" "bout"
[71989] "Six-time" "world"
[71991] "champion" "M"
[71993] "C" "Mary"
[71995] "Kom" "51kg"
[71997] "powered" "Olympic"
[71999] "Games" "pre-quarterfinals"
[72001] "staving" "stiff"
[72003] "challenge" "Dominican"
[72005] "Republic's" "Miguelina"
[72007] "Hernandez" "Garcia"
[72009] "opening" "round"
[72011] "Sunday" "38-year-old"
[72013] "2012" "Olympic"
[72015] "bronze-medallist" "prevailed"
[72017] "4-1" "rival"
[72019] "15" "years"
[72021] "junior" "Pan"
[72023] "American" "Games"
[72025] "bronze-medallist" "bout"
[72027] "exciting" "start"
[72029] "finish" "Mary"
[72031] "Kom" "displayed"
[72033] "brilliant" "tactics"
[72035] "overcome" "spirted"
[72037] "fight" "Garcia"
[72039] "put" "held"
[72041] "back" "opening"
[72043] "round" "get"
[72045] "good" "measure"
[72047] "rival" "veteran"
[72049] "aggression" "personified"
[72051] "final" "three"
[72053] "minutes" "Garcia"
[72055] "bagged" "second"
[72057] "round" "fierce"
[72059] "punching" "Mary"
[72061] "Kom's" "trusted"
[72063] "right" "hook"
[72065] "aided" "well"
[72067] "bout" "also"
[72069] "displayed" "sharp"
[72071] "mind" "forcing"
[72073] "Garcia" "lunge"
[72075] "opening" "space"
[72077] "Indian" "land"
[72079] "clear" "punches"
[72081] "youngster" "Dominica"
[72083] "stomach" "fight"
[72085] "undone" "inability"
[72087] "strike" "clearly"
[72089] "Mary" "Kom"
[72091] "mother" "four"
[72093] "next" "third-seeded"
[72095] "Colombian" "medallist"
[72097] "Ingrit" "Valencia"
[72099] "bronze-medallist" "2016"
[72101] "Rio" "Games"
[72103] "Classification" "Language"
[72105] "ENGLISH" "Publication-Type"
[72107] "Newspaper" "Body"
[72109] "Imphal" "July"
[72111] "27" "Manipur"
[72113] "accorded" "hero's"
[72115] "welcome" "welcome"
[72117] "India's" "first"
[72119] "silver" "medal"
[72121] "winner" "Olympics"
[72123] "Saikhom" "Mirabai"
[72125] "Chanu" "state"
[72127] "arrived" "Imphal"
[72129] "Tuesday" "afternoon"
[72131] "Manipur" "Chief"
[72133] "Minister" "N"
[72135] "Biren" "Singh"
[72137] "led" "well"
[72139] "wishers" "including"
[72141] "family" "Mirabai"
[72143] "received" "star"
[72145] "weightlifter" "won"
[72147] "India's" "first"
[72149] "Olympic" "medal"
[72151] "49kg" "women's"
[72153] "weightlifting" "total"
[72155] "lift" "202"
[72157] "kg" "Tokyo"
[72159] "Olympics" "July"
[72161] "24" "Without"
[72163] "delay" "state"
[72165] "Chief" "Minister"
[72167] "Biren" "Singh"
[72169] "along" "Olympic"
[72171] "medallist" "drove"
[72173] "straight" "City"
[72175] "Convention" "centre"
[72177] "attend" "felicitation"
[72179] "programme" "attended"
[72181] "ministers" "MLAs"
[72183] "officials" "family"
[72185] "Mirabai" "friends"
[72187] "relatives" "well-wishers"
[72189] "Speaking" "felicitation"
[72191] "programme" "Chief"
[72193] "Minister" "Biren"
[72195] "said" "silver"
[72197] "Medal" "Tokyo"
[72199] "Olympics" "stepping"
[72201] "stone" "milestones"
[72203] "Biren" "also"
[72205] "asked" "work"
[72207] "harder" "till"
[72209] "secures" "Olympic"
[72211] "Gold" "Medal"
[72213] "also" "announced"
[72215] "State" "Government"
[72217] "begin" "scheme"
[72219] "provide" "annual"
[72221] "financial" "grants"
[72223] "associations" "Olympic"
[72225] "sports" "disciplines"
[72227] "day's" "felicitation"
[72229] "Chief" "Minister"
[72231] "Biren" "Singh"
[72233] "handed" "cheque"
[72235] "Rs" "1"
[72237] "crore" "cash"
[72239] "reward" "also"
[72241] "handed" "appointment"
[72243] "order" "Additional"
[72245] "Superintendent" "Police"
[72247] "Sports" "Mirabai"
[72249] "Chanu" "Sports"
[72251] "Education" "departments"
[72253] "also" "extended"
[72255] "sum" "Rs"
[72257] "10" "lakh"
[72259] "Rs" "3"
[72261] "lakh" "respectively"
[72263] "Mirabai" "felicitation"
[72265] "event" "overjoyed"
[72267] "Mirabai" "Chanu"
[72269] "speaking" "felicitation"
[72271] "said" "love"
[72273] "faith" "blessing"
[72275] "given" "people"
[72277] "manage" "get"
[72279] "medal" "wanted"
[72281] "dedicate" "medal"
[72283] "people" "said"
[72285] "happy" "make"
[72287] "Rio" "Olympics"
[72289] "last" "time"
[72291] "Since" "tried"
[72293] "best" "completely"
[72295] "focussing" "training"
[72297] "five" "years"
[72299] "spite" "facing"
[72301] "difficulties" "including"
[72303] "injuries" "said"
[72305] "Mirabai" "thanked"
[72307] "parents" "coaches"
[72309] "state" "training"
[72311] "centre" "blessing"
[72313] "guide" "continuous"
[72315] "support" "years"
[72317] "also" "thanked"
[72319] "government" "extending"
[72321] "timely" "support"
[72323] "years" "particularly"
[72325] "trips" "USA"
[72327] "training" "Later"
[72329] "Chief" "Minister"
[72331] "along" "Deputy"
[72333] "Chief" "Minister"
[72335] "Ministers" "MLAs"
[72337] "took" "Mirabai"
[72339] "office" "ushered"
[72341] "seat" "Additional"
[72343] "SP" "Sports"
[72345] "tweet" "Chief"
[72347] "Minister" "Biren"
[72349] "wrote" "extremely"
[72351] "delighted" "handover"
[72353] "newly" "furnished"
[72355] "office" "Additional"
[72357] "Superintendent" "Police"
[72359] "Sports" "Saikhom"
[72361] "Mirabai" "Chanu"
[72363] "presence" "proud"
[72365] "parents" "today"
[72367] "joined" "cabinet"
[72369] "colleagues" "Hon'ble"
[72371] "MLAs" "officials"
[72373] "handing" "ceremony"
[72375] "Published" "HT"
[72377] "Digital" "Content"
[72379] "Services" "permission"
[72381] "Hindustan" "Times"
[72383] "query" "respect"
[72385] "article" "content"
[72387] "requirement" "please"
[72389] "contact" "Editor"
[72391] "Classification" "Language"
[72393] "ENGLISH" "Publication-Type"
[72395] "Newswire" "Body"
[72397] "Indian" "golfer"
[72399] "Aditi" "Ashok"
[72401] "suffer" "disappointment"
[72403] "finished" "outside"
[72405] "medal" "bracket"
[72407] "72" "holes"
[72409] "women's" "individual"
[72411] "event" "just"
[72413] "one" "shot"
[72415] "miss" "Tokyo"
[72417] "Olympic" "medal"
[72419] "second" "position"
[72421] "almost" "whole"
[72423] "duration" "tournament"
[72425] "raising" "hopes"
[72427] "unexpected" "podium"
[72429] "place" "Indian"
[72431] "golfer" "Aditi"
[72433] "Ashok" "suffer"
[72435] "disappointment" "finished"
[72437] "outside" "medal"
[72439] "bracket" "72"
[72441] "holes" "women's"
[72443] "individual" "event"
[72445] "just" "one"
[72447] "shot" "Nevertheless"
[72449] "hugely" "creditable"
[72451] "performance" "23-year-old"
[72453] "matched" "best"
[72455] "players" "world"
[72457] "big" "stage"
[72459] "intense" "pressure"
[72461] "fact" "speculation"
[72463] "tournament" "decided"
[72465] "54" "holes"
[72467] "due" "inclement"
[72469] "weather" "case"
[72471] "Aditi" "coming"
[72473] "home" "silver"
[72475] "medal" "Aditi"
[72477] "Ashok" "Bengaluru"
[72479] "native" "currently"
[72481] "200th-ranked" "woman"
[72483] "golfer" "world"
[72485] "plays" "Ladies"
[72487] "European" "Tour"
[72489] "LET" "LPGA"
[72491] "Tour" "United"
[72493] "States" "featured"
[72495] "2016" "Rio"
[72497] "Olympics" "well"
[72499] "finishing" "41st"
[72501] "Aditi" "three"
[72503] "LET" "titles"
[72505] "name" "two"
[72507] "Indian" "circuit"
[72509] "won" "amateur"
[72511] "first" "Indian"
[72513] "play" "win"
[72515] "LET" "finished"
[72517] "second" "European"
[72519] "circuit" "2016"
[72521] "also" "clinching"
[72523] "Rookie" "Year"
[72525] "honour" "recording"
[72527] "high" "finishes"
[72529] "tough" "LPGA"
[72531] "Tour" "well"
[72533] "maiden" "win"
[72535] "eluded" "far"
[72537] "Aditi" "Ashok"
[72539] "make" "Tokyo"
[72541] "Olympics" "Though"
[72543] "Tokyo" "Olympics"
[72545] "field" "limited"
[72547] "60" "players"
[72549] "totally" "based"
[72551] "world" "rankings"
[72553] "aim" "get"
[72555] "players" "many"
[72557] "countries" "possible"
[72559] "show" "broad-based"
[72561] "global" "popularity"
[72563] "golf" "top"
[72565] "nations" "United"
[72567] "States" "Korea"
[72569] "send" "limited"
[72571] "number" "top"
[72573] "players" "many"
[72575] "big" "names"
[72577] "missed" "even"
[72579] "choosing" "give"
[72581] "Olympics" "miss"
[72583] "Aditi" "placed"
[72585] "45th" "list"
[72587] "players" "eligible"
[72589] "Games" "Indian"
[72591] "field" "Diksha"
[72593] "Dagar" "finished"
[72595] "tied" "50th"
[72597] "four" "rounds"
[72599] "men's" "tournament"
[72601] "held" "earlier"
[72603] "Olympics" "two"
[72605] "Indian" "participants"
[72607] "Anirban" "Lahiri"
[72609] "tied" "42nd"
[72611] "Udayan" "Mane"
[72613] "56th" "Aditi"
[72615] "miss" "medal"
[72617] "Golf" "game"
[72619] "fine" "margins"
[72621] "often" "inches"
[72623] "difference" "putt"
[72625] "dropping" "hole"
[72627] "just" "lipping"
[72629] "Aditi" "fighting"
[72631] "podium" "place"
[72633] "best" "players"
[72635] "world" "Eventual"
[72637] "gold" "medallist"
[72639] "Nelly" "Korda"
[72641] "United" "States"
[72643] "led" "almost"
[72645] "start" "finish"
[72647] "world" "1"
[72649] "Major" "winner"
[72651] "Silver" "medallist"
[72653] "Inami" "Mone"
[72655] "ranked" "28th"
[72657] "New" "Zealand's"
[72659] "bronze" "medallist"
[72661] "Lydia" "Ko"
[72663] "ranked" "11th"
[72665] "must" "emphasised"
[72667] "elite" "company"
[72669] "Aditi" "choke"
[72671] "falter" "top"
[72673] "players" "raised"
[72675] "games" "claim"
[72677] "medals" "Aditi"
[72679] "dropped" "just"
[72681] "five" "shots"
[72683] "four" "days"
[72685] "one" "super-critical"
[72687] "four" "came"
[72689] "final" "two"
[72691] "rounds" "rounds"
[72693] "67" "66"
[72695] "68" "68"
[72697] "Indian" "consistent"
[72699] "throughout" "may"
[72701] "worked" "inability"
[72703] "make" "birdies"
[72705] "final" "four"
[72707] "holes" "Saturday"
[72709] "comparison" "Mone"
[72711] "Ko" "two"
[72713] "birdies" "bogey"
[72715] "stretch" "one"
[72717] "shot" "gained"
[72719] "proved" "decisive"
[72721] "Aditi" "edged"
[72723] "playoff" "decide"
[72725] "second" "third"
[72727] "places" "Aditi's"
[72729] "game" "betray"
[72731] "final" "stretch"
[72733] "admission" "driving"
[72735] "tee" "Aditi's"
[72737] "biggest" "strength"
[72739] "excellent" "putter"
[72741] "displayed" "prowess"
[72743] "throughout" "competition"
[72745] "frequently" "missing"
[72747] "fairways" "Saturday"
[72749] "made" "difficult"
[72751] "get" "approach"
[72753] "shots" "close"
[72755] "hole" "scrambled"
[72757] "well" "part"
[72759] "Mone" "Ko"
[72761] "shooting" "65s"
[72763] "final" "round"
[72765] "Aditi's" "68"
[72767] "fell" "short"
[72769] "required" "final"
[72771] "analysis" "something"
[72773] "give" "sleepless"
[72775] "nights" "missed"
[72777] "putt" "17th"
[72779] "hole" "estimation"
[72781] "hit" "perfect"
[72783] "putt" "expecting"
[72785] "drop" "maybe"
[72787] "golfing" "gods"
[72789] "side" "one"
[72791] "outside" "chance"
[72793] "birdie" "25"
[72795] "feet" "last"
[72797] "hole" "gave"
[72799] "go" "meant"
[72801] "Aditi's" "performance"
[72803] "impact" "bigger"
[72805] "picture" "Indian"
[72807] "golf" "Olympics"
[72809] "biggest" "stage"
[72811] "sporting" "world"
[72813] "many" "people"
[72815] "may" "interested"
[72817] "understand" "intricacies"
[72819] "golf" "following"
[72821] "Aditi's" "progress"
[72823] "chance" "medal"
[72825] "Though" "missed"
[72827] "increase" "interest"
[72829] "India" "show"
[72831] "wider" "world"
[72833] "India" "can"
[72835] "also" "produce"
[72837] "quality" "woman"
[72839] "golfers" "Indian"
[72841] "male" "golfers"
[72843] "made" "presence"
[72845] "felt" "international"
[72847] "tours" "Aditi's"
[72849] "achievement" "show"
[72851] "sport" "wide"
[72853] "base" "country"
[72855] "across" "genders"
[72857] "Classification" "Language"
[72859] "ENGLISH" "Publication-Type"
[72861] "Newspaper" "Body"
[72863] "Table" "Tennis"
[72865] "Federation" "termed"
[72867] "Manika" "Batra's"
[72869] "behaviour" "unprofessional"
[72871] "refused" "national"
[72873] "coach" "side"
[72875] "Table" "Tennis"
[72877] "Federation" "India"
[72879] "threatened" "action"
[72881] "star" "player"
[72883] "Manika" "Batra"
[72885] "refused" "national"
[72887] "coach" "Soumyadeep"
[72889] "Roy" "side"
[72891] "one" "games"
[72893] "ongoing" "Tokyo"
[72895] "Olympics" "Secretary"
[72897] "General" "federation"
[72899] "Arun" "Kumar"
[72901] "Banerjee" "said"
[72903] "matter" "taken"
[72905] "discussion" "whole"
[72907] "contingent" "back"
[72909] "India" "Banerjee"
[72911] "stated" "Manika"
[72913] "Batra's" "behaviour"
[72915] "unprofessional" "calling"
[72917] "Soumyadeep" "Roy"
[72919] "personal" "coach"
[72921] "fellow" "Indian"
[72923] "player" "Sutrtha"
[72925] "Mukherjee" "knocked"
[72927] "second" "round"
[72929] "Women's" "singles"
[72931] "Speaking" "news"
[72933] "agency" "ANI"
[72935] "Banerjee" "said"
[72937] "Personal" "coach"
[72939] "wrong" "statement"
[72941] "Sutirtha" "plays"
[72943] "Soumyadeep's" "academy"
[72945] "national" "coach"
[72947] "say" "coach"
[72949] "allowed" "wrong"
[72951] "Manika's" "part"
[72953] "Banerjee" "said"
[72955] "Manika" "Batra"
[72957] "applied" "personal"
[72959] "coach" "recommended"
[72961] "well" "demanding"
[72963] "personal" "coach"
[72965] "place" "Soumyadeep"
[72967] "calling" "Mukherjee's"
[72969] "personal" "coach"
[72971] "wrong" "part"
[72973] "Manika" "earlier"
[72975] "requested" "grant"
[72977] "field" "play"
[72979] "FOP" "access"
[72981] "personal" "coach"
[72983] "Sanmay" "Paranjape"
[72985] "access" "granted"
[72987] "even" "though"
[72989] "last-minute" "approval"
[72991] "travel" "Tokyo"
[72993] "given" "Manika's"
[72995] "campaign" "came"
[72997] "end" "Monday"
[72999] "lost" "Austria's"
[73001] "Sofia" "Polcanova"
[73003] "third" "round"
[73005] "women's" "singles"
[73007] "Sharath" "Kamal"
[73009] "already" "eliminated"
[73011] "mixed" "doubles"
[73013] "competition" "losing"
[73015] "Round" "16"
[73017] "Classification" "Language"
[73019] "ENGLISH" "Publication-Type"
[73021] "Newspaper" "Body"
[73023] "India" "Aug"
[73025] "8" "Prime"
[73027] "Minister" "Narendra"
[73029] "Modi" "Sunday"
[73031] "congratulated" "Indian"
[73033] "contingent" "Tokyo"
[73035] "Olympics" "successful"
[73037] "stint" "India"
[73039] "finished" "Tokyo"
[73041] "Games" "highest-ever"
[73043] "medal" "tally"
[73045] "seven" "medals"
[73047] "one" "gold"
[73049] "two" "silver"
[73051] "four" "bronze"
[73053] "medals" "Tokyo"
[73055] "Games" "come"
[73057] "close" "Sunday"
[73059] "Modi" "said"
[73061] "India's" "medal"
[73063] "wins" "Games"
[73065] "made" "nation"
[73067] "proud" "#Tokyo2020"
[73069] "draws" "close"
[73071] "like" "congratulate"
[73073] "Indian" "contingent"
[73075] "stupendous" "performance"
[73077] "games" "personified"
[73079] "best" "skill"
[73081] "teamwork" "dedication"
[73083] "Every" "athlete"
[73085] "represented" "India"
[73087] "champion" "PM"
[73089] "Modi" "wrote"
[73091] "Twitter" "medals"
[73093] "India" "won"
[73095] "certainly" "made"
[73097] "nation" "proud"
[73099] "elated" "time"
[73101] "time" "keep"
[73103] "working" "popularise"
[73105] "sports" "grassroots"
[73107] "new" "talent"
[73109] "emerges" "gets"
[73111] "opportunity" "represent"
[73113] "India" "times"
[73115] "come" "#Tokyo2020"
[73117] "added" "special"
[73119] "thank" "Government"
[73121] "people" "Japan"
[73123] "especially" "Tokyo"
[73125] "hosting" "well-organised"
[73127] "games" "host"
[73129] "successfully" "times"
[73131] "gave" "strong"
[73133] "message" "resilience"
[73135] "also" "demonstrated"
[73137] "sports" "great"
[73139] "unifier" "Modi"
[73141] "said" "India"
[73143] "created" "history"
[73145] "Tokyo" "Neeraj"
[73147] "Chopra" "becoming"
[73149] "first" "person"
[73151] "independent" "India"
[73153] "win" "medal"
[73155] "track-and-field" "event"
[73157] "javelin" "thrower"
[73159] "won" "gold"
[73161] "medal" "becoming"
[73163] "second" "Indian"
[73165] "athlete" "shooer"
[73167] "Abhinav" "Bindra"
[73169] "win" "individual"
[73171] "gold" "medal"
[73173] "Published" "HT"
[73175] "Digital" "Content"
[73177] "Services" "permission"
[73179] "Hindustan" "Times"
[73181] "query" "respect"
[73183] "article" "content"
[73185] "requirement" "please"
[73187] "contact" "Editor"
[73189] "Classification" "Language"
[73191] "ENGLISH" "Publication-Type"
[73193] "Newswire" "Body"
[73195] "plump" "kid"
[73197] "took" "athletics"
[73199] "lose" "weight"
[73201] "ended" "India's"
[73203] "first" "track-and-field"
[73205] "Olympic" "gold-medallist"
[73207] "Sounds" "like"
[73209] "fairytale" "Neeraj"
[73211] "Chopra's" "life"
[73213] "actually" "23"
[73215] "superstar" "dare"
[73217] "one" "say"
[73219] "messiah" "Indian"
[73221] "athletics" "waiting"
[73223] "century" "Saturday"
[73225] "javelin" "hand"
[73227] "Chopra" "nothing"
[73229] "short" "rockstar"
[73231] "Tokyo's" "Olympic"
[73233] "stadium" "full"
[73235] "capacity" "watch"
[73237] "genius" "unfold"
[73239] "just" "handful"
[73241] "officials" "coaches"
[73243] "cheer" "thanks"
[73245] "COVID-19" "pandemic"
[73247] "got" "everyone"
[73249] "cheer" "like"
[73251] "always" "even"
[73253] "need" "throw"
[73255] "personal" "best"
[73257] "88.07m" "gold"
[73259] "sealed" "87.58m"
[73261] "throw" "just"
[73263] "second" "final"
[73265] "round" "many"
[73267] "years" "moment"
[73269] "greatness" "Chopra"
[73271] "tremendous" "pressure"
[73273] "joint" "family"
[73275] "17" "lose"
[73277] "weight" "13"
[73279] "point" "become"
[73281] "mischievous" "boy"
[73283] "often" "fiddling"
[73285] "beehives" "village"
[73287] "trees" "trying"
[73289] "pull" "buffaloes"
[73291] "tails" "father"
[73293] "Satish" "Kumar"
[73295] "Chopra" "wanted"
[73297] "something" "done"
[73299] "discipline" "boy"
[73301] "lot" "cajoling"
[73303] "child" "finally"
[73305] "agreed" "running"
[73307] "shed" "flab"
[73309] "uncle" "took"
[73311] "Shivaji" "Stadium"
[73313] "Panipat" "around"
[73315] "15km" "village"
[73317] "Chopra" "interested"
[73319] "running" "almost"
[73321] "instantly" "fell"
[73323] "love" "javelin"
[73325] "throw" "saw"
[73327] "seniors" "practising"
[73329] "stadium" "decided"
[73331] "try" "luck"
[73333] "clich" "goes"
[73335] "rest" "history"
[73337] "probably" "now"
[73339] "make" "way"
[73341] "school" "textbooks"
[73343] "consistent" "performer"
[73345] "since" "bursting"
[73347] "spotlight" "historic"
[73349] "gold" "junior"
[73351] "world" "championships"
[73353] "2016" "Under-20"
[73355] "world" "record"
[73357] "86.48m" "still"
[73359] "stands" "achievements"
[73361] "include" "gold"
[73363] "medals" "2018"
[73365] "Commonwealth" "Games"
[73367] "Asian" "Games"
[73369] "besides" "top"
[73371] "finish" "2017"
[73373] "Asian" "Championships"
[73375] "also" "2018"
[73377] "Arjuna" "Awardee"
[73379] "infectious" "smile"
[73381] "give" "away"
[73383] "Chopra" "brush"
[73385] "low" "phases"
[73387] "underwent" "arthroscopic"
[73389] "surgery" "elbow"
[73391] "right" "throwing"
[73393] "arm" "2019"
[73395] "kept" "action"
[73397] "nearly" "year"
[73399] "came" "back"
[73401] "stronger" "pursuit"
[73403] "excellence" "roller-coaster"
[73405] "ride" "tall"
[73407] "sprightly" "humble"
[73409] "athlete" "pulled"
[73411] "sport" "senior"
[73413] "javelin" "thrower"
[73415] "Jaiveer" "Choudhary"
[73417] "nearby" "village"
[73419] "2011" "Chopra"
[73421] "game" "months"
[73423] "search" "better"
[73425] "facilities" "shifted"
[73427] "Tau" "Devi"
[73429] "Lal" "Stadium"
[73431] "Panchkula" "end"
[73433] "2012" "become"
[73435] "U-16" "national"
[73437] "champion" "point"
[73439] "came" "financial"
[73441] "issues" "Chopra"
[73443] "needed" "accomodation"
[73445] "better" "equipment"
[73447] "kit" "better"
[73449] "diet" "go"
[73451] "next" "level"
[73453] "tough" "decision"
[73455] "joint" "family"
[73457] "owns" "less"
[73459] "10" "acres"
[73461] "land" "pulled"
[73463] "2015" "Chopra"
[73465] "joined" "national"
[73467] "camp" "farmers"
[73469] "nobody" "family"
[73471] "government" "job"
[73473] "family" "supporting"
[73475] "difficulty" "sort"
[73477] "relief" "now"
[73479] "able" "support"
[73481] "family" "financially"
[73483] "besides" "continuing"
[73485] "training" "Chopra"
[73487] "told" "PTI"
[73489] "interview" "made"
[73491] "Junior" "Commission"
[73493] "Officer" "Indian"
[73495] "Army" "2017"
[73497] "now" "Naib"
[73499] "Subedar" "medal"
[73501] "Tokyo" "Olympics"
[73503] "target" "ultimate"
[73505] "athlete" "still"
[73507] "young" "best"
[73509] "yet" "come"
[73511] "said" "2013"
[73513] "took" "part"
[73515] "World" "Youth"
[73517] "Championships" "Ukraine"
[73519] "returned" "without"
[73521] "medal" "Next"
[73523] "year" "won"
[73525] "silver" "Youth"
[73527] "Olympics" "Qualification"
[73529] "Bangkok" "first"
[73531] "international" "medal"
[73533] "Chopra's" "first"
[73535] "medal" "national"
[73537] "senior" "championship"
[73539] "came" "July"
[73541] "2015" "Inter-State"
[73543] "event" "Chennai"
[73545] "throw" "77.33m"
[73547] "months" "later"
[73549] "won" "gold"
[73551] "National" "Open"
[73553] "Championships" "Kolkata"
[73555] "year" "2016"
[73557] "breakthrough" "one"
[73559] "Chopra" "crossing"
[73561] "80m" "mark"
[73563] "fag" "end"
[73565] "2015" "Chopra"
[73567] "won" "South"
[73569] "Asian" "Games"
[73571] "Guwahati" "February"
[73573] "2016" "throw"
[73575] "82.23m" "months"
[73577] "later" "guidance"
[73579] "late" "Australian"
[73581] "coach" "Gary"
[73583] "Calvert" "Chopra"
[73585] "created" "history"
[73587] "world" "junior"
[73589] "championships" "announced"
[73591] "arrival" "truly"
[73593] "world-class" "javelin"
[73595] "thrower" "still"
[73597] "wall-hanging" "drawing"
[73599] "room" "Chopra's"
[73601] "ancestral" "home"
[73603] "features" "oft-repeated"
[73605] "motivational" "quote"
[73607] "single" "idea"
[73609] "can" "light"
[73611] "life" "Chopra"
[73613] "family's" "single"
[73615] "idea" "let"
[73617] "pursue" "javelin"
[73619] "throw" "Saturday"
[73621] "lit" "country"
[73623] "golden" "glow"
[73625] "Classification" "Language"
[73627] "ENGLISH" "Publication-Type"
[73629] "Newspaper" "Body"
[73631] "Indian" "men's"
[73633] "hockey" "team's"
[73635] "dream" "entering"
[73637] "Olympics" "final"
[73639] "41-years" "remained"
[73641] "unfulfilled" "lost"
[73643] "2-5" "world"
[73645] "champions" "Belgium"
[73647] "last-four" "stage"
[73649] "side" "still"
[73651] "hunt" "bronze"
[73653] "Tokyo" "Games"
[73655] "Tuesday" "Indians"
[73657] "blame" "Tuesday's"
[73659] "disappointment" "Belgium's"
[73661] "four" "goals"
[73663] "came" "penalty"
[73665] "corners" "Indian"
[73667] "defence" "put"
[73669] "relentless" "pressure"
[73671] "Belgians" "secured"
[73673] "many" "14"
[73675] "penalty" "corners"
[73677] "converted" "four"
[73679] "Belgium's" "game"
[73681] "plan" "clear"
[73683] "onset" "tried"
[73685] "enter" "Indian"
[73687] "circle" "earn"
[73689] "penalty" "corners"
[73691] "Hendrickx" "Luypaert"
[73693] "ranks" "ploy"
[73695] "worked" "perfection"
[73697] "Indian" "defence"
[73699] "wilted" "pressure"
[73701] "concede" "set"
[73703] "pieces" "India"
[73705] "earned" "five"
[73707] "penalty" "corners"
[73709] "match" "make"
[73711] "use" "just"
[73713] "one" "Meanwhile"
[73715] "Indians" "back"
[73717] "home" "glued"
[73719] "screens" "cheering"
[73721] "players" "felt"
[73723] "mighty" "disappointed"
[73725] "Since" "love"
[73727] "hockey" "team"
[73729] "frustration" "removed"
[73731] "virtually" "referee"
[73733] "match" "Indians"
[73735] "made" "memes"
[73737] "penalties" "deal"
[73739] "loss" "sad"
[73741] "loss" "memes"
[73743] "might" "make"
[73745] "laugh" "go"
[73747] "Classification" "Language"
[73749] "ENGLISH" "Publication-Type"
[73751] "Newspaper" "Body"
[73753] "New" "Delhi"
[73755] "Aug" "7"
[73757] "Star" "javelin"
[73759] "thrower" "Neeraj"
[73761] "Chopra" "got"
[73763] "India's" "first"
[73765] "gold" "Tokyo"
[73767] "Olympics" "broke"
[73769] "India's" "100-year"
[73771] "wait" "gold"
[73773] "athletics" "given"
[73775] "Rs" "6"
[73777] "crore" "class"
[73779] "category" "job"
[73781] "announced" "Haryana"
[73783] "chief" "minister"
[73785] "ML" "Khattar"
[73787] "Saturday" "building"
[73789] "Centre" "Excellence"
[73791] "athletes" "Panchkula"
[73793] "head" "wants"
[73795] "given" "plot"
[73797] "50" "concession"
[73799] "like" "players"
[73801] "also" "added"
[73803] "Earlier" "today"
[73805] "Khattar" "also"
[73807] "announced" "Haryana"
[73809] "Govt" "give"
[73811] "Rs" "2.5"
[73813] "crore" "govt"
[73815] "job" "plot"
[73817] "land" "50"
[73819] "concession" "wrestler"
[73821] "Bajrang" "Punia"
[73823] "winning" "bronze"
[73825] "medal" "Tokyo"
[73827] "2020" "indoor"
[73829] "stadium" "constructed"
[73831] "native" "village"
[73833] "Khudan" "Jhajjar"
[73835] "added" "Bajrang"
[73837] "Punia" "return"
[73839] "Tokyo" "bronze"
[73841] "medal" "Olympic"
[73843] "debut" "outwitting"
[73845] "Daulet" "Niyazbekov"
[73847] "men's" "freestyle"
[73849] "65kg" "play-off"
[73851] "Saturday" "Chopra"
[73853] "Saturday" "became"
[73855] "second" "Indian"
[73857] "win" "individual"
[73859] "gold" "Olympics"
[73861] "out-performing" "field"
[73863] "distance" "immortalise"
[73865] "first" "track-and-field"
[73867] "Games" "medal-winner"
[73869] "country" "23-year-old"
[73871] "son" "farmer"
[73873] "Khandra" "village"
[73875] "near" "Panipat"
[73877] "Haryana" "produced"
[73879] "second" "round"
[73881] "throw" "87.58m"
[73883] "finals" "stun"
[73885] "athletics" "world"
[73887] "end" "India's"
[73889] "100-year" "wait"
[73891] "track" "field"
[73893] "medal" "Olympics"
[73895] "Brimming" "confidence"
[73897] "hardly" "nerves"
[73899] "display" "Chopra"
[73901] "walked" "like"
[73903] "rockstar" "make"
[73905] "Tokyo" "Games"
[73907] "India's" "best"
[73909] "ever" "Olympic"
[73911] "outing" "country's"
[73913] "final" "competitive"
[73915] "outing" "ongoing"
[73917] "edition" "country's"
[73919] "seventh" "medal"
[73921] "first" "gold"
[73923] "Olympics" "joined"
[73925] "shooter" "Abhinav"
[73927] "Bindra" "2008"
[73929] "Beijing" "Games"
[73931] "elite" "hard-to-reach"
[73933] "club" "India's"
[73935] "individual" "gold"
[73937] "winners" "showpiece"
[73939] "country" "surpassed"
[73941] "previous" "best"
[73943] "haul" "six"
[73945] "medals" "achieved"
[73947] "2012" "London"
[73949] "Games" "Apart"
[73951] "Chopra's" "gold"
[73953] "India" "won"
[73955] "silver" "four"
[73957] "bronze" "medals"
[73959] "Indian" "won"
[73961] "medal" "athletics"
[73963] "since" "country"
[73965] "started" "taking"
[73967] "part" "Games"
[73969] "1920" "Antwerp"
[73971] "Belgium" "Three"
[73973] "track" "field"
[73975] "athletes" "part"
[73977] "five-member" "team"
[73979] "two" "wrestlers"
[73981] "Games" "International"
[73983] "Olympic" "Committee"
[73985] "still" "credits"
[73987] "Norman" "Pritchard's"
[73989] "200m" "200m"
[73991] "hurdles" "silver"
[73993] "medals" "1900"
[73995] "Paris" "Olympics"
[73997] "India" "though"
[73999] "various" "researches"
[74001] "including" "records"
[74003] "IAAF" "now"
[74005] "World" "Athletics"
[74007] "showed" "competed"
[74009] "Great" "Britain"
[74011] "Pritchard" "Indian"
[74013] "country's" "first"
[74015] "Olympic" "participation"
[74017] "national" "Olympic"
[74019] "body" "1920"
[74021] "Since" "track"
[74023] "field" "athletes"
[74025] "integral" "part"
[74027] "Indian" "contingents"
[74029] "almost" "editions"
[74031] "Games" "Published"
[74033] "HT" "Digital"
[74035] "Content" "Services"
[74037] "permission" "MINT"
[74039] "query" "respect"
[74041] "article" "content"
[74043] "requirement" "please"
[74045] "contact" "Editor"
[74047] "Classification" "Language"
[74049] "ENGLISH" "Publication-Type"
[74051] "Newspaper" "Body"
[74053] "India" "Aug"
[74055] "2" "British"
[74057] "diver" "Tom"
[74059] "Daley" "won"
[74061] "gold" "medal"
[74063] "Tokyo" "Olympics"
[74065] "week" "ago"
[74067] "Now" "Olympian"
[74069] "grabbed" "attention"
[74071] "completely" "different"
[74073] "reason" "may"
[74075] "just" "make"
[74077] "smile" "Daley"
[74079] "spotted" "knitting"
[74081] "watching" "event"
[74083] "Tokyo" "Aquatics"
[74085] "Centre" "Sunday"
[74087] "Clips" "pictures"
[74089] "Daley" "went"
[74091] "viral" "social"
[74093] "media" "garnered"
[74095] "much" "love"
[74097] "people" "Oh"
[74099] "Just" "Olympic"
[74101] "champ" "@TomDaley1994"
[74103] "knitting" "stands"
[74105] "watching" "diving"
[74107] "reads" "caption"
[74109] "shared" "official"
[74111] "Instagram" "handle"
[74113] "Olympics" "Take"
[74115] "look" "post"
[74117] "garnered" "1.6"
[74119] "lakh" "likes"
[74121] "thousands" "comments"
[74123] "netizen" "also"
[74125] "shared" "clip"
[74127] "gold" "medalist"
[74129] "knitting" "sitting"
[74131] "audience" "Daley's"
[74133] "love" "knitting"
[74135] "crocheting" "however"
[74137] "unknown" "followers"
[74139] "social" "media"
[74141] "winning" "gold"
[74143] "medal" "shared"
[74145] "sweet" "clip"
[74147] "Instagram" "showing"
[74149] "little" "knitted"
[74151] "bag" "made"
[74153] "store" "medal"
[74155] "THANK" "FELLOW"
[74157] "STITCHERS" "Learning"
[74159] "knit" "crochet"
[74161] "helped" "much"
[74163] "Olympics" "won"
[74165] "GOLD" "yesterday"
[74167] "made" "little"
[74169] "medal" "case"
[74171] "Daley" "wrote"
[74173] "caption" "Take"
[74175] "look" "video"
[74177] "People" "shared"
[74179] "kinds" "supportive"
[74181] "comments" "posts"
[74183] "capturing" "Daley's"
[74185] "knitting" "thoughts"
[74187] "shares" "Published"
[74189] "HT" "Digital"
[74191] "Content" "Services"
[74193] "permission" "Hindustan"
[74195] "Times" "query"
[74197] "respect" "article"
[74199] "content" "requirement"
[74201] "please" "contact"
[74203] "Editor" "Classification"
[74205] "Language" "ENGLISH"
[74207] "Publication-Type" "Newswire"
[74209] "Body" "Indian"
[74211] "wrestler" "Bajrang"
[74213] "Punia" "fighting"
[74215] "bronze" "medal"
[74217] "match" "losing"
[74219] "semi-final" "bout"
[74221] "Azerbaijan's" "Haji"
[74223] "Aliyev" "Indian"
[74225] "wrestler" "Bajrang"
[74227] "Punia" "one"
[74229] "bite" "cherry"
[74231] "features" "bronze"
[74233] "medal" "match"
[74235] "losing" "semi-final"
[74237] "bout" "65kg"
[74239] "category" "men's"
[74241] "wrestling" "ongoing"
[74243] "Tokyo" "Olympics"
[74245] "2020" "Bajrang"
[74247] "made" "debut"
[74249] "Olympic" "Games"
[74251] "year" "won"
[74253] "almost" "everywhere"
[74255] "played" "three"
[74257] "medals" "World"
[74259] "Championships" "Gold"
[74261] "medal" "Asian"
[74263] "Games" "Commonwealth"
[74265] "Games" "2018"
[74267] "couple" "gold"
[74269] "medals" "Commonwealth"
[74271] "Championships" "two"
[74273] "Asian" "Championships"
[74275] "27" "Bajrang"
[74277] "won" "lost"
[74279] "hoping" "increase"
[74281] "medal" "tally"
[74283] "winning" "one"
[74285] "debut" "Games"
[74287] "Bajrang" "one"
[74289] "pre-tournament" "medal"
[74291] "hopes" "India"
[74293] "played" "first"
[74295] "two" "rounds"
[74297] "like" "champion"
[74299] "overcoming" "slow"
[74301] "start" "first"
[74303] "defeated" "Kyrgyztan'sErnazar"
[74305] "Akmataliev" "count"
[74307] "high-scoring" "move"
[74309] "bout" "ended"
[74311] "3-3" "scoreline"
[74313] "Bajrang" "needed"
[74315] "just" "little"
[74317] "luck" "show"
[74319] "really" "capable"
[74321] "Bajrang" "everyone"
[74323] "knows" "show"
[74325] "quarter-final" "Facing"
[74327] "Iran'sMorteza" "Cheka"
[74329] "Ghiasi" "Bajrang"
[74331] "trailing" "opponent"
[74333] "part" "even"
[74335] "put" "twice"
[74337] "activity" "clock"
[74339] "wrestler" "score"
[74341] "point" "30"
[74343] "seconds" "bout"
[74345] "dying" "stages"
[74347] "Bajrang" "overpowered"
[74349] "Ghiasi" "won"
[74351] "bout" "fall"
[74353] "thereby" "qualifying"
[74355] "semi-finals" "However"
[74357] "Bajrang" "semis"
[74359] "lost" "Azerbaijan's"
[74361] "Haji" "Aliyev"
[74363] "points" "5-12"
[74365] "bout" "close"
[74367] "first" "round"
[74369] "especially" "Rio"
[74371] "Olympics" "bronze"
[74373] "medallist" "just"
[74375] "good" "day"
[74377] "Punia" "Bajrang"
[74379] "Punia" "now"
[74381] "face" "either"
[74383] "Senegal'sAdama" "Diatta"
[74385] "Kazakhstan'sDaulet" "Niyazbekov"
[74387] "bronze" "medal"
[74389] "match" "details"
[74391] "Bajrang" "Punia's"
[74393] "bronze" "medal"
[74395] "match" "start"
[74397] "Bajrang" "Punia's"
[74399] "bronze" "medal"
[74401] "match" "begin"
[74403] "4.08" "PM"
[74405] "IST" "Saturday"
[74407] "August" "7"
[74409] "Bajrang" "Punia's"
[74411] "bronze" "medal"
[74413] "match" "played"
[74415] "Bajrang" "Punia's"
[74417] "bronze" "medal"
[74419] "match" "played"
[74421] "mat" "B"
[74423] "Makuhari" "Messe"
[74425] "Hall" "TV"
[74427] "channels" "broadcast"
[74429] "Bajrang" "Punia's"
[74431] "bronze" "medal"
[74433] "match" "Bajrang"
[74435] "Punia's" "bronze"
[74437] "medal" "matchwill"
[74439] "broadcast" "Sony"
[74441] "Sports" "Network"
[74443] "India" "watch"
[74445] "live" "streaming"
[74447] "Bajrang" "Punia's"
[74449] "bronze" "medal"
[74451] "match" "Fans"
[74453] "can" "catch"
[74455] "live" "streaming"
[74457] "Bajrang" "Punia's"
[74459] "bronze" "medal"
[74461] "matchon" "SonyLIV"
[74463] "website" "SonyLIV"
[74465] "app" "India"
[74467] "Classification" "Language"
[74469] "ENGLISH" "Publication-Type"
[74471] "Newspaper" "Body"
[74473] "bagging" "bronze"
[74475] "medal" "men's"
[74477] "freestyle" "65kg"
[74479] "beating" "Niyazbekov"
[74481] "Kazakhstan" "8-0"
[74483] "points" "first"
[74485] "medal" "Tokyo"
[74487] "Olympics" "wrestler"
[74489] "Bajrang" "Punia"
[74491] "made" "India"
[74493] "proud" "Prime"
[74495] "Minister" "Narendra"
[74497] "Modi" "dialled"
[74499] "wrestler" "outstanding"
[74501] "feat" "olympics"
[74503] "PM" "Modi"
[74505] "spoke" "Bajrang"
[74507] "Punia" "congratulated"
[74509] "winning" "bronze"
[74511] "medal" "also"
[74513] "lauded" "Bajrang"
[74515] "determination" "hard"
[74517] "work" "led"
[74519] "accomplishment" "President"
[74521] "Ram" "Nath"
[74523] "Kovind" "also"
[74525] "among" "millions"
[74527] "Indians" "congratulated"
[74529] "Bajrang" "winning"
[74531] "bronze" "dominating"
[74533] "style" "special"
[74535] "moment" "Indian"
[74537] "wrestling" "Congratulations"
[74539] "Bajrang" "Punia"
[74541] "winning" "Bronze"
[74543] "#Tokyo2020" "distinguished"
[74545] "outstanding" "wrestler"
[74547] "untiring" "efforts"
[74549] "consistency" "tenacity"
[74551] "years" "Every"
[74553] "Indian" "shares"
[74555] "joy" "success"
[74557] "wrote" "President"
[74559] "Twitter" "Cricketers"
[74561] "including" "VVS"
[74563] "Laxman" "also"
[74565] "quick" "laud"
[74567] "Bajrang's" "effort"
[74569] "Super" "Duper"
[74571] "@bajrangpunia" "India"
[74573] "proud" "Absolutely"
[74575] "brilliant" "#BajrangPunia"
[74577] "win" "8-0"
[74579] "win" "#Bronze"
[74581] "match" "Laxman"
[74583] "posted" "2008"
[74585] "Olympic" "gold-winning"
[74587] "shooter" "Abhinav"
[74589] "Bindra" "said"
[74591] "Many" "Congratulations"
[74593] "@BajrangPunia" "winning"
[74595] "Bronze" "medal"
[74597] "#Tokyo2020" "Great"
[74599] "grit" "shown"
[74601] "Brilliantly" "fought"
[74603] "Another" "shooter"
[74605] "Heena" "Sindhu"
[74607] "said" "manner"
[74609] "victory" "impressive"
[74611] "@BajrangPunia" "done"
[74613] "style" "comfortable"
[74615] "lead" "possible"
[74617] "Congratulations" "team"
[74619] "working" "hard"
[74621] "best" "great"
[74623] "future" "Sports"
[74625] "Minister" "Anurag"
[74627] "Thakur" "wrote"
[74629] "BRONZE" "Third"
[74631] "place" "medal"
[74633] "BAJRANG" "India"
[74635] "thrilled" "beyond"
[74637] "words" "proud"
[74639] "loved" "watching"
[74641] "dominating" "performance"
[74643] "spectacular" "finish"
[74645] "Cricketing" "icon"
[74647] "Sachin" "Tendulkar"
[74649] "added" "Sheer"
[74651] "class" "domination"
[74653] "display" "@BajrangPunia"
[74655] "#wrestling" "win"
[74657] "Third" "place"
[74659] "medal" "India"
[74661] "Congratulations" "much"
[74663] "deserved" "victory"
[74665] "leaving" "us"
[74667] "stunned" "performance"
[74669] "Bajrang's" "smart"
[74671] "attacking" "moves"
[74673] "made" "8-0"
[74675] "winner" "Kazakhstan's"
[74677] "Daulet" "Niyazbekov"
[74679] "bronze" "medal"
[74681] "play-off" "medal-favourite"
[74683] "Vinesh" "Phogat's"
[74685] "shock" "quarterfinal"
[74687] "exit" "Bajrang's"
[74689] "par" "show"
[74691] "first" "three"
[74693] "matches" "pall"
[74695] "gloom" "descended"
[74697] "Indian" "wrestling"
[74699] "contingent" "However"
[74701] "three-time" "medallist"
[74703] "world" "championships"
[74705] "rose" "occasion"
[74707] "comfortable" "win"
[74709] "Bajrang's" "medal"
[74711] "Indian" "wrestlers"
[74713] "matched" "best"
[74715] "performance" "Olympic"
[74717] "Games" "earning"
[74719] "two" "podium"
[74721] "finishes" "Ravi"
[74723] "Dahiya" "won"
[74725] "inspiring" "silver"
[74727] "medal" "57kg"
[74729] "category" "Classification"
[74731] "Language" "ENGLISH"
[74733] "Publication-Type" "Newspaper"
[74735] "Body" "Olympic"
[74737] "silver" "medalist"
[74739] "Saikhom" "Mirabai"
[74741] "Chanu" "announced"
[74743] "public" "reception"
[74745] "Imphal" "Tuesday"
[74747] "dedicating" "medal"
[74749] "people" "Manipur"
[74751] "Ms" "Chanu"
[74753] "said" "prayers"
[74755] "unwavering" "support"
[74757] "wishes" "bagged"
[74759] "silver" "medal"
[74761] "event" "excited"
[74763] "speak" "said"
[74765] "taken" "aback"
[74767] "Manipur" "Chief"
[74769] "Minister" "N"
[74771] "Biren" "called"
[74773] "soon" "won"
[74775] "medal" "said"
[74777] "India's" "Prime"
[74779] "Minister" "Narendra"
[74781] "Modi" "also"
[74783] "rang" "express"
[74785] "happiness" "bringing"
[74787] "laurel" "Chief"
[74789] "Minister" "N"
[74791] "Biren" "presided"
[74793] "reception" "said"
[74795] "handing" "cheque"
[74797] "₹" "1"
[74799] "crore" "appointed"
[74801] "Additional" "Superintendent"
[74803] "Police" "Sports"
[74805] "also" "given"
[74807] "appointment" "letter"
[74809] "CM" "Later"
[74811] "Mr" "Biren"
[74813] "others" "escorted"
[74815] "new" "office"
[74817] "Imphal" "Also"
[74819] "Read" "Olympic"
[74821] "silver" "medallist"
[74823] "Mirabai" "Chanu"
[74825] "accorded" "grand"
[74827] "reception" "New"
[74829] "Delhi" "Earlier"
[74831] "Ms" "Chanu's"
[74833] "parents" "joined"
[74835] "thousand" "people"
[74837] "including" "fans"
[74839] "well" "wishers"
[74841] "Imphal" "international"
[74843] "airport" "welcome"
[74845] "garlands" "hugs"
[74847] "Though" "wearing"
[74849] "masks" "social"
[74851] "distancing" "observed"
[74853] "Chief" "Minister"
[74855] "said" "view"
[74857] "situation" "escorted"
[74859] "car" "whisked"
[74861] "away" "Thousands"
[74863] "people" "lined"
[74865] "seven" "km"
[74867] "road" "City"
[74869] "Convention" "Centre"
[74871] "waved" "friends"
[74873] "fans" "spectators"
[74875] "airport" "get"
[74877] "chance" "speak"
[74879] "way" "reception"
[74881] "change" "places"
[74883] "Mr" "Biren"
[74885] "car" "wave"
[74887] "fans" "sides"
[74889] "road" "cheering"
[74891] "crowds" "threw"
[74893] "garlands" "petals"
[74895] "car" "Determined"
[74897] "win" "father"
[74899] "Saikhom" "Kriti"
[74901] "said" "youngest"
[74903] "baby" "six"
[74905] "siblings" "age"
[74907] "12" "years"
[74909] "indicated" "want"
[74911] "become" "athlete"
[74913] "poor" "family"
[74915] "give" "₹"
[74917] "5" "daily"
[74919] "pittance" "used"
[74921] "go" "home"
[74923] "Nongpok" "Kakching"
[74925] "Khuman" "Lampak"
[74927] "bus" "service"
[74929] "unreliable" "used"
[74931] "hitch" "ride"
[74933] "trucks" "transporting"
[74935] "sand" "stones"
[74937] "etc" "Also"
[74939] "Read" "Manipur"
[74941] "creates" "special"
[74943] "post" "Mirabai"
[74945] "Ms" "Chanu"
[74947] "said" "Rio"
[74949] "2016" "Olympics"
[74951] "win" "medal"
[74953] "dishearten" "Instead"
[74955] "firmed" "result"
[74957] "underwent" "vigorous"
[74959] "training" "five"
[74961] "years" "said"
[74963] "prepare" "next"
[74965] "Olympic" "games"
[74967] "Ms" "Anita"
[74969] "coach" "said"
[74971] "One" "day"
[74973] "Mirabai" "came"
[74975] "sports" "complex"
[74977] "saying" "like"
[74979] "become" "athlete"
[74981] "examined" "found"
[74983] "physically" "okay"
[74985] "immediately" "made"
[74987] "arrangements" "Brojen"
[74989] "another" "coach"
[74991] "also" "said"
[74993] "happy" "achievements"
[74995] "Later" "day"
[74997] "another" "grand"
[74999] "reception" "held"
[75001] "village" "Nongpok"
[75003] "Kakching" "Ms"
[75005] "Chanu" "family"
[75007] "returned" "Classification"
[75009] "Language" "ENGLISH"
[75011] "Publication-Type" "Newspaper"
[75013] "Body" "women's"
[75015] "team" "led"
[75017] "Rani" "Rampal"
[75019] "improved" "leaps"
[75021] "bounds" "last"
[75023] "five" "years"
[75025] "India's" "men's"
[75027] "women's" "hockey"
[75029] "teams" "begin"
[75031] "campaigns" "Saturday"
[75033] "Manpreet" "Singh"
[75035] "Co" "take"
[75037] "New" "Zealand"
[75039] "Group" "match"
[75041] "early" "morning"
[75043] "women's" "team"
[75045] "face" "tough"
[75047] "opponents" "Netherlands"
[75049] "evening" "Going"
[75051] "form" "current"
[75053] "ranking" "men"
[75055] "start" "favourites"
[75057] "New" "Zealand"
[75059] "2016" "Rio"
[75061] "Olympics" "Manpreet"
[75063] "Singh-led" "side"
[75065] "beaten" "Black"
[75067] "Sticks" "eight"
[75069] "times" "11"
[75071] "encounters" "two"
[75073] "sides" "India's"
[75075] "chief" "coach"
[75077] "Graham" "Reid"
[75079] "asked" "men"
[75081] "stay" "guard"
[75083] "take" "one"
[75085] "match" "time"
[75087] "pursuit" "podium"
[75089] "finish" "New"
[75091] "Zealand" "never"
[75093] "give" "attitude"
[75095] "makes" "dangerous"
[75097] "opponents" "said"
[75099] "Reid" "Former"
[75101] "India" "player"
[75103] "Viren" "Rasquinha"
[75105] "day" "sounded"
[75107] "bullish" "team's"
[75109] "chances" "winning"
[75111] "medal" "41"
[75113] "years" "best"
[75115] "chance" "medal"
[75117] "last" "chance"
[75119] "Sydney" "Olympic"
[75121] "Games" "missed"
[75123] "place" "semi-finals"
[75125] "team" "improved"
[75127] "consistently" "beaten"
[75129] "top" "teams"
[75131] "last" "Olympic"
[75133] "cycle" "said"
[75135] "interaction" "facilitated"
[75137] "Sony" "women's"
[75139] "team" "led"
[75141] "Rani" "Rampal"
[75143] "improved" "leaps"
[75145] "bounds" "last"
[75147] "five" "years"
[75149] "Rani" "great"
[75151] "leader" "lot"
[75153] "relies" "shoulder"
[75155] "inspire" "entire"
[75157] "forward" "line"
[75159] "alone" "Rasquinha"
[75161] "said" "Badminton"
[75163] "battles" "eyes"
[75165] "highly" "skilled"
[75167] "Saurabh" "Chaudhary"
[75169] "Abhishek" "Verma"
[75171] "men's" "10m"
[75173] "air" "pistol"
[75175] "event" "fate"
[75177] "Apurvi" "Chandela"
[75179] "Elavenil" "Valarivan"
[75181] "women's" "10m"
[75183] "air" "rifle"
[75185] "event" "decided"
[75187] "good" "outing"
[75189] "either" "means"
[75191] "India" "win"
[75193] "first" "medal"
[75195] "Tokyo" "Games"
[75197] "badminton" "men's"
[75199] "singles" "player"
[75201] "B" "Sai"
[75203] "Praneeth" "pair"
[75205] "Chirag" "Shetty"
[75207] "Satwiksairaj" "Rankireddy"
[75209] "action" "13th-seeded"
[75211] "Praneeth" "hope"
[75213] "make" "dream"
[75215] "Olympic" "debut"
[75217] "begins" "campaign"
[75219] "Isreal's" "Misha"
[75221] "Zilberman" "ranked"
[75223] "47th" "men's"
[75225] "doubles" "Chirag"
[75227] "Satwik" "go"
[75229] "Chinese" "Taipei's"
[75231] "world" "3"
[75233] "Lee" "Yang"
[75235] "Wang" "Chi"
[75237] "Lin" "PV"
[75239] "Sindhu" "begins"
[75241] "quest" "bring"
[75243] "elusive" "gold"
[75245] "medal" "Sunday"
[75247] "weightlifting" "lot"
[75249] "hope" "Mirabai"
[75251] "Chanu" "favourite"
[75253] "win" "medal"
[75255] "49-kg" "category"
[75257] "Classification" "Language"
[75259] "ENGLISH" "Publication-Type"
[75261] "Newspaper" "Body"
[75263] "India" "Aug"
[75265] "1" "PV"
[75267] "Sindhu" "Sunday"
[75269] "ensured" "name"
[75271] "written" "bold"
[75273] "letters" "annals"
[75275] "Indian" "sporting"
[75277] "history" "shuttler-par-excellence"
[75279] "became" "first"
[75281] "Indian" "woman"
[75283] "athlete" "win"
[75285] "two" "individual"
[75287] "Olympic" "medals"
[75289] "beat" "China's"
[75291] "Bing" "Jiao"
[75293] "win" "bronze"
[75295] "medal" "Tokyo"
[75297] "Olympics" "earlier"
[75299] "won" "silver"
[75301] "medal" "2016"
[75303] "Rio" "Olympics"
[75305] "Sindhu" "won"
[75307] "match" "21-13"
[75309] "21-15" "completely"
[75311] "dominated" "opponent"
[75313] "Sindhu" "lost"
[75315] "women's" "singles"
[75317] "semi-final" "Chinese"
[75319] "Taipei's" "Tai"
[75321] "Tzu-Ying" "18-21"
[75323] "12-21" "controlled"
[75325] "match" "beginning"
[75327] "used" "powerful"
[75329] "smashes" "subdue"
[75331] "Chinese" "opponent"
[75333] "thus" "became"
[75335] "fourth" "woman"
[75337] "win" "singles"
[75339] "medal" "consecutive"
[75341] "Olympic" "Games"
[75343] "PV" "Sindhu"
[75345] "vs" "Bing"
[75347] "Jiao" "Highlights"
[75349] "Women's" "singles"
[75351] "bronze" "medal"
[75353] "match" "Tokyo"
[75355] "Olympics" "Since"
[75357] "losing" "Rio"
[75359] "Olympics" "final"
[75361] "Sindhu" "risen"
[75363] "become" "one"
[75365] "consistent" "female"
[75367] "players" "badminton"
[75369] "might" "top"
[75371] "BWF" "rankings"
[75373] "ever" "made"
[75375] "presence" "felt"
[75377] "almost" "top"
[75379] "tournaments" "last"
[75381] "five" "years"
[75383] "reigning" "world"
[75385] "champion" "won"
[75387] "title" "2019"
[75389] "failing" "final"
[75391] "hurdle" "2017"
[75393] "2018" "full"
[75395] "list" "major"
[75397] "honours" "won"
[75399] "PV" "Sindhu"
[75401] "women's" "singles"
[75403] "Olympic" "Games"
[75405] "2016" "Silver"
[75407] "2020" "Bronze"
[75409] "World" "Championships"
[75411] "2013" "Bronze"
[75413] "2014" "Bronze"
[75415] "2017" "Silver"
[75417] "2018" "Silver"
[75419] "2019" "Gold"
[75421] "Commonwealth" "Games"
[75423] "2014" "Bronze"
[75425] "2018" "Silver"
[75427] "Asian" "Games"
[75429] "2018" "Silver"
[75431] "BWF" "World"
[75433] "Tour" "1"
[75435] "Gold" "4"
[75437] "Silver" "BWF"
[75439] "Superseries" "3"
[75441] "Gold" "4"
[75443] "Silver" "BWF"
[75445] "Grand" "Prix"
[75447] "6" "Gold"
[75449] "3" "Silver"
[75451] "Published" "HT"
[75453] "Digital" "Content"
[75455] "Services" "permission"
[75457] "Hindustan" "Times"
[75459] "query" "respect"
[75461] "article" "content"
[75463] "requirement" "please"
[75465] "contact" "Editor"
[75467] "Classification" "Language"
[75469] "ENGLISH" "Publication-Type"
[75471] "Newswire" "Body"
[75473] "PRAYAGRAJ" "Aug"
[75475] "6" "Indian"
[75477] "men's" "hockey"
[75479] "team" "given"
[75481] "entire" "country"
[75483] "big" "reason"
[75485] "rejoice" "clinched"
[75487] "bronze" "medal"
[75489] "Tokyo" "Olympics"
[75491] "gap" "41"
[75493] "years" "residents"
[75495] "Prayagraj" "especially"
[75497] "residing" "Jhunsi"
[75499] "area" "city"
[75501] "equally" "special"
[75503] "moment" "one"
[75505] "key" "members"
[75507] "winning" "team"
[75509] "long" "strong"
[75511] "connection" "Sangam"
[75513] "city" "Assistant"
[75515] "coach" "team"
[75517] "Piyush" "Dubey"
[75519] "MA" "Economics"
[75521] "Allahabad" "University"
[75523] "getting" "diploma"
[75525] "NIS-Patiala" "even"
[75527] "coached" "students"
[75529] "Kendriya" "Vidyalaya"
[75531] "AFS-Manauri" "besides"
[75533] "working" "guest"
[75535] "lecturer" "department"
[75537] "Physical" "Education"
[75539] "AU" "Speaking"
[75541] "Tokyo" "Dubey"
[75543] "shared" "many"
[75545] "moments" "shaped"
[75547] "career" "always"
[75549] "cherish" "quite"
[75551] "young" "started"
[75553] "working" "KV"
[75555] "Manauri" "guest"
[75557] "coach" "training"
[75559] "hockey" "team"
[75561] "school" "2004"
[75563] "Hearing" "new"
[75565] "coach" "come"
[75567] "around" "130"
[75569] "students" "boys"
[75571] "girls" "came"
[75573] "field" "suddenly"
[75575] "faced" "challenge"
[75577] "select" "final"
[75579] "team" "many"
[75581] "hopefuls" "Although"
[75583] "first" "salary"
[75585] "around" "Rs"
[75587] "2800" "per"
[75589] "month" "time"
[75591] "personal" "expenses"
[75593] "around" "Rs"
[75595] "15000" "experience"
[75597] "teaching" "basics"
[75599] "exposure" "work"
[75601] "independently" "far"
[75603] "monetary" "gains"
[75605] "said" "Dubey"
[75607] "coached" "AU's"
[75609] "hockey" "team"
[75611] "later" "grounds"
[75613] "KV" "Manauri"
[75615] "principal" "Shalini"
[75617] "Dikshit" "selected"
[75619] "coach" "team"
[75621] "School's" "team"
[75623] "won" "nationals"
[75625] "2004" "2011"
[75627] "period" "Dubey"
[75629] "BPEd" "MPEd"
[75631] "Barkatullah" "University"
[75633] "Bhopal" "2014"
[75635] "Piyush" "got"
[75637] "selected" "Sports"
[75639] "Authority" "India"
[75641] "SAI" "first"
[75643] "appointment" "Sonepat"
[75645] "Haryana" "Piyush"
[75647] "also" "among"
[75649] "selected" "trainers"
[75651] "sent" "Government"
[75653] "India" "University"
[75655] "Birmingham" "England"
[75657] "2016" "studied"
[75659] "Sports" "Science"
[75661] "Coaching" "75"
[75663] "trainees" "far"
[75665] "shown" "mettle"
[75667] "national" "international"
[75669] "level" "tournaments"
[75671] "Piyush's" "family"
[75673] "originally" "Mathura"
[75675] "father" "Kunwar"
[75677] "Garvendra" "Singh"
[75679] "Dubey" "wrestler"
[75681] "got" "title"
[75683] "Singh" "wrestling"
[75685] "happened" "elder"
[75687] "brother" "Shravan"
[75689] "also" "fond"
[75691] "wrestling" "used"
[75693] "go" "akhara"
[75695] "Jhunsi" "way"
[75697] "small" "ground"
[75699] "noted" "coach"
[75701] "Prem" "Shankar"
[75703] "Shukla" "used"
[75705] "teach" "hockey"
[75707] "kids" "One"
[75709] "day" "handed"
[75711] "stick" "asked"
[75713] "try" "hands"
[75715] "impressed" "see"
[75717] "dribbling" "skills"
[75719] "early" "age"
[75721] "asked" "concentrate"
[75723] "hockey" "shared"
[75725] "Dubey" "phone"
[75727] "Published" "HT"
[75729] "Digital" "Content"
[75731] "Services" "permission"
[75733] "Hindustan" "Times"
[75735] "query" "respect"
[75737] "article" "content"
[75739] "requirement" "please"
[75741] "contact" "Editor"
[75743] "Classification" "Language"
[75745] "ENGLISH" "Publication-Type"
[75747] "Newswire" "Body"
[75749] "Tokyo" "Olympics"
[75751] "weightlifter" "Mirabai"
[75753] "Chanu" "made"
[75755] "Indian" "proud"
[75757] "winning" "silver"
[75759] "medal" "49"
[75761] "kg" "category"
[75763] "occurred" "21"
[75765] "years" "Following"
[75767] "tournament" "Chanu"
[75769] "shared" "craved"
[75771] "pizza" "treat"
[75773] "Dominos" "India"
[75775] "stepped" "special"
[75777] "announcement" "restaurant"
[75779] "chain" "said"
[75781] "offering" "Chanu"
[75783] "lifetime" "free"
[75785] "pizza" "@Mirabai_chanu"
[75787] "Congratulations" "bringing"
[75789] "medal" "home"
[75791] "brought" "dreams"
[75793] "billion" "+"
[75795] "Indians" "life"
[75797] "happier" "treat"
[75799] "FREE" "Domino's"
[75801] "pizza" "life"
[75803] "Congratulations" "Dominos"
[75805] "tweeted" "@Mirabai_chanu"
[75807] "Congratulations" "bringing"
[75809] "medal" "home"
[75811] "brought" "dreams"
[75813] "billion" "+"
[75815] "Indians" "life"
[75817] "happier" "treat"
[75819] "FREE" "Domino's"
[75821] "pizza" "life"
[75823] "Congratulations" "#DominosPizza"
[75825] "#PizzasForLife" "#Tokyo2020"
[75827] "#MirabaiChanu" "dominos_india"
[75829] "@dominos_india" "July"
[75831] "24" "2021"
[75833] "pizza" "company"
[75835] "made" "announcement"
[75837] "response" "Chanu's"
[75839] "interview" "NDTV"
[75841] "weightlifter" "said"
[75843] "First" "go"
[75845] "pizza" "long"
[75847] "time" "since"
[75849] "ate" "eat"
[75851] "lot" "today"
[75853] "netizens" "reacted"
[75855] "announcement" "@mirabai_chanu"
[75857] "Congratulations" "Bringing"
[75859] "medal" "home"
[75861] "big" "#DominosPizza"
[75863] "@amarkothi" "insta"
[75865] "great" "full"
[75867] "announce" "anytime"
[75869] "visit" "#udaipur"
[75871] "stay" "hotel"
[75873] "free" "life"
[75875] "time.@my_rajasthan" "#Tokyo2020"
[75877] "@TajHotels" "Prithvi"
[75879] "Raj" "Chauhan"
[75881] "@PRC0027" "July"
[75883] "25" "2021"
[75885] "Good" "offer"
[75887] "eats" "pizza"
[75889] "winning" "medal"
[75891] "offer" "become"
[75893] "brand" "ambassador"
[75895] "suggestion" "mukesh"
[75897] "arora" "@maroraa"
[75899] "July" "25"
[75901] "2021" "Thank"
[75903] "DOMINOS" "magical"
[75905] "gesture" "@dominos"
[75907] "Milind" "Bhadsavle"
[75909] "@MilindBhadsavle" "July"
[75911] "25" "2021"
[75913] "Classification" "Language"
[75915] "ENGLISH" "Publication-Type"
[75917] "Newspaper" "Body"
[75919] "41-year" "wait"
[75921] "medal" "ended"
[75923] "Thursday" "Indian"
[75925] "Men's" "hockey"
[75927] "team" "won"
[75929] "match" "Germany"
[75931] "secure" "bronze"
[75933] "medal" "Tokyo"
[75935] "Olympics" "Since"
[75937] "congratulatory" "messages"
[75939] "taken" "social"
[75941] "media" "platforms"
[75943] "politicians" "actors"
[75945] "sportspeople" "countless"
[75947] "netizens" "cheering"
[75949] "vociferously" "soon"
[75951] "win" "euphoric"
[75953] "team" "captain"
[75955] "coach" "surprise"
[75957] "caller" "lauding"
[75959] "performance" "video"
[75961] "since" "gone"
[75963] "viral" "Prime"
[75965] "Minister" "Narendra"
[75967] "Modi" "can"
[75969] "heard" "speaking"
[75971] "Indian" "Hockey"
[75973] "team" "Captain"
[75975] "Manpreet" "Singh"
[75977] "Head" "Coach"
[75979] "Graham" "Reid"
[75981] "Assistant" "Coach"
[75983] "Piyush" "Dubey"
[75985] "clip" "shows"
[75987] "group" "thanking"
[75989] "PM" "congratulates"
[75991] "performance" "via"
[75993] "speakerphone" "scripted"
[75995] "history" "Prime"
[75997] "Minister" "told"
[75999] "adding" "hard"
[76001] "work" "paid"
[76003] "Modi" "urged"
[76005] "Singh" "wish"
[76007] "entire" "team"
[76009] "behalf" "telling"
[76011] "Captain" "entire"
[76013] "country" "filled"
[76015] "joy" "conversation"
[76017] "Modi" "also"
[76019] "remarked" "today"
[76021] "Singh's" "voice"
[76023] "loud" "clear"
[76025] "compared" "day"
[76027] "India" "lost"
[76029] "Belgium" "semi-finals"
[76031] "Indian" "team"
[76033] "captain" "part"
[76035] "thanked" "PM"
[76037] "constant" "encouragement"
[76039] "team" "Earlier"
[76041] "Thursday" "Modi"
[76043] "hailed" "win"
[76045] "insisting" "day"
[76047] "etched" "memory"
[76049] "every" "Indian"
[76051] "Historic" "day"
[76053] "etched" "memory"
[76055] "every" "Indian"
[76057] "Congratulations" "Men's"
[76059] "Hockey" "Team"
[76061] "bringing" "home"
[76063] "Bronze" "feat"
[76065] "captured" "imagination"
[76067] "entire" "nation"
[76069] "especially" "youth"
[76071] "India" "proud"
[76073] "Hockey" "team"
[76075] "tweeted" "Classification"
[76077] "Language" "ENGLISH"
[76079] "Publication-Type" "Newspaper"
[76081] "Body" "Hockey"
[76083] "team" "left"
[76085] "high" "dry"
[76087] "mighty" "Australia"
[76089] "Sania" "Mirza"
[76091] "Ankita" "Raina"
[76093] "crash" "Pranati"
[76095] "Nayak" "fails"
[76097] "make" "all-round"
[76099] "final" "Shooters"
[76101] "fail" "fire"
[76103] "Expectations" "soared"
[76105] "Mirabai" "Chanu"
[76107] "won" "India"
[76109] "first" "medal"
[76111] "Tokyo" "Olympics"
[76113] "Saturday" "things"
[76115] "really" "go"
[76117] "according" "plan"
[76119] "Indian" "contingent"
[76121] "Japan" "Among"
[76123] "women" "Manika"
[76125] "Batra" "MC"
[76127] "Mary" "Kom"
[76129] "PV" "Sindhu"
[76131] "stood" "disappointment"
[76133] "Sania" "Mirza"
[76135] "Pranati" "Nayak's"
[76137] "quarters" "women's"
[76139] "tennis" "doubles"
[76141] "team" "Mirza"
[76143] "Ankita" "Raina"
[76145] "crashed" "first"
[76147] "round" "defeat"
[76149] "Nayak" "failed"
[76151] "qualify" "round"
[76153] "finals" "managing"
[76155] "win" "versus"
[76157] "New" "Zealand"
[76159] "opener" "Indian"
[76161] "hockey" "team"
[76163] "succumbed" "Australia"
[76165] "7-1" "second"
[76167] "group" "stage"
[76169] "clash" "take"
[76171] "look" "happened"
[76173] "India" "today"
[76175] "Hockey" "Australia"
[76177] "leave" "India"
[76179] "high" "dry"
[76181] "Indian" "hockey"
[76183] "contingent" "look"
[76185] "like" "end"
[76187] "41-year-old" "medal"
[76189] "drought" "Games"
[76191] "hero" "previous"
[76193] "game" "versus"
[76195] "New" "Zealand"
[76197] "goalkeeper" "PR"
[76199] "Sreejesh" "bundle"
[76201] "nerves" "Australia"
[76203] "conceded" "many"
[76205] "seven" "goals"
[76207] "India's" "7-1"
[76209] "rout" "add"
[76211] "India's" "defence"
[76213] "best" "India"
[76215] "morale-shattering" "loss"
[76217] "probably" "exposed"
[76219] "every" "possible"
[76221] "chink" "India's"
[76223] "armour" "world"
[76225] "1" "side"
[76227] "simply" "toyed"
[76229] "Indian" "defence"
[76231] "first" "quarter"
[76233] "scored" "goals"
[76235] "comfortably" "secure"
[76237] "second" "consecutive"
[76239] "win" "competition"
[76241] "India" "biggest"
[76243] "loss" "since"
[76245] "Australian" "Graham"
[76247] "Reid" "took"
[76249] "charge" "team"
[76251] "coach" "April"
[76253] "2019" "India's"
[76255] "lone" "goal"
[76257] "came" "stick"
[76259] "Dilpreet" "Singh"
[76261] "34th" "minute"
[76263] "thing" "relish"
[76265] "Reid's" "men"
[76267] "Artistic" "Gymnastics"
[76269] "Pranati" "Nayak"
[76271] "qualify" "India's"
[76273] "lone" "gymnast"
[76275] "Tokyo" "Olympics"
[76277] "Pranati" "Nayak"
[76279] "failed" "qualify"
[76281] "Round" "finals"
[76283] "Artistic" "Gymnastics"
[76285] "competition" "26-year-old"
[76287] "West" "Bengal"
[76289] "recorded" "total"
[76291] "score" "42.565"
[76293] "four" "categories"
[76295] "floor" "exercise"
[76297] "vault" "uneven"
[76299] "bars" "balance"
[76301] "beam" "Ariake"
[76303] "Gymnastic" "centre"
[76305] "now" "ranked"
[76307] "29th" "overall"
[76309] "end" "subdivision"
[76311] "2" "total"
[76313] "five" "subdivisions"
[76315] "top" "24"
[76317] "gymnasts" "best"
[76319] "score" "across"
[76321] "four" "apparatus"
[76323] "qualify" "all-round"
[76325] "final" "held"
[76327] "July" "29"
[76329] "top" "eight"
[76331] "gymnasts" "event"
[76333] "qualify" "respective"
[76335] "individual" "event"
[76337] "finals" "held"
[76339] "August" "1"
[76341] "3" "However"
[76343] "Nayak" "finished"
[76345] "bottom" "half"
[76347] "events" "Badminton"
[76349] "PV" "Sindhu"
[76351] "eases" "past"
[76353] "Israel's" "Ksenia"
[76355] "Polikarpova" "good"
[76357] "start" "India's"
[76359] "prime" "medal"
[76361] "hope" "Sindhu"
[76363] "thrashed" "Israel's"
[76365] "Ksenia" "Polikarpova"
[76367] "straight" "games"
[76369] "women's" "singles"
[76371] "group" "J"
[76373] "match" "26-year-old"
[76375] "Indian" "seeded"
[76377] "sixth" "beat"
[76379] "58th" "ranked"
[76381] "Polikarpova" "21-7"
[76383] "21-10" "lop-sided"
[76385] "opening" "match"
[76387] "Even" "though"
[76389] "easy" "first"
[76391] "match" "take"
[76393] "easy" "way"
[76395] "like" "prepared"
[76397] "Every" "time"
[76399] "important" "focused"
[76401] "prepared" "every"
[76403] "single" "point"
[76405] "every" "single"
[76407] "match" "Sindhu"
[76409] "said" "match"
[76411] "world" "number"
[76413] "seven" "Indian"
[76415] "next" "play"
[76417] "Hong" "Kong's"
[76419] "world" "number"
[76421] "34" "Cheung"
[76423] "Ngan" "Yi"
[76425] "group" "stage"
[76427] "Boxing" "MC"
[76429] "Mary" "Kom"
[76431] "wins" "opener"
[76433] "Manish" "Kaushik"
[76435] "disappoints" "debut"
[76437] "Kom" "38"
[76439] "years" "old"
[76441] "want" "stop"
[76443] "six-time" "world"
[76445] "champion" "Mary"
[76447] "Kom" "51kg"
[76449] "powered" "pre-quarterfinals"
[76451] "superb" "tactical"
[76453] "victory" "Dominican"
[76455] "Republic's" "Miguelina"
[76457] "Hernandez" "Garcia"
[76459] "Kaushik's" "63kg"
[76461] "Games" "debut"
[76463] "ended" "disappointment"
[76465] "following" "hard-fought"
[76467] "opening-round" "loss"
[76469] "38-year-old" "Mary"
[76471] "Kom" "2012"
[76473] "Olympic" "bronze-medallist"
[76475] "multiple-time" "Asian"
[76477] "champion" "prevailed"
[76479] "4-1" "rival"
[76481] "15" "years"
[76483] "junior" "Pan"
[76485] "American" "Games"
[76487] "bronze-medallist" "Manish"
[76489] "Commonwealth" "Games"
[76491] "silver-medallist" "world"
[76493] "championship" "bronze-winner"
[76495] "went" "1-4"
[76497] "Britain's" "Luke"
[76499] "McCormack" "edge-of-the-seat"
[76501] "clash" "Rowing"
[76503] "Arjun" "Lal"
[76505] "Jat" "Arvind"
[76507] "Singh" "semi-finals"
[76509] "Indian" "rowers"
[76511] "Arjun" "Lal"
[76513] "Jat" "Arvind"
[76515] "Singh" "qualified"
[76517] "semifinals" "men's"
[76519] "lightweight" "double"
[76521] "sculls" "repechage"
[76523] "Indian" "duo"
[76525] "clocked" "6"
[76527] "51.36" "finish"
[76529] "third" "place"
[76531] "Sea" "Forest"
[76533] "Waterway" "Poland's"
[76535] "Jerzy" "Kowalski"
[76537] "Artur" "Mikolajczewski"
[76539] "finished" "top"
[76541] "timing" "6"
[76543] "43.44" "followed"
[76545] "Spain's" "Caetano"
[76547] "Horta" "Pombo"
[76549] "Manel" "Balastegui"
[76551] "clocked" "6"
[76553] "45.71" "repechage"
[76555] "2" "semifinals"
[76557] "July" "27"
[76559] "Sailing" "Kumanan"
[76561] "27th" "Saravanan"
[76563] "14th" "Nethra"
[76565] "Kumanan" "placed"
[76567] "27th" "two"
[76569] "races" "Vishnu"
[76571] "Saravanan" "14th"
[76573] "first" "race"
[76575] "Indian" "sailors"
[76577] "opened" "Games"
[76579] "campaign" "Kumanan"
[76581] "finished" "33rd"
[76583] "first" "race"
[76585] "women's" "laser"
[76587] "radial" "recovering"
[76589] "bit" "taking"
[76591] "16th" "spot"
[76593] "second" "overall"
[76595] "27th" "place"
[76597] "49" "net"
[76599] "points" "Saravanan"
[76601] "finished" "14th"
[76603] "men's" "laser"
[76605] "event" "second"
[76607] "race" "postponed"
[76609] "due" "bad"
[76611] "weather" "conditions"
[76613] "Enoshima" "Yacht"
[76615] "Harbour" "event"
[76617] "consists" "series"
[76619] "races" "Points"
[76621] "race" "awarded"
[76623] "according" "position"
[76625] "winner" "gets"
[76627] "one" "point"
[76629] "second-placed" "finisher"
[76631] "scores" "two"
[76633] "Shooting" "Shooters"
[76635] "dissapoint" "unfortunate"
[76637] "day" "Bhaker"
[76639] "fancied" "Indian"
[76641] "shooting" "team"
[76643] "drew" "blank"
[76645] "second" "day"
[76647] "running" "major"
[76649] "weapon" "malfunction"
[76651] "leading" "heartbreaking"
[76653] "exit" "young"
[76655] "Manu" "Bhaker"
[76657] "women's" "10"
[76659] "air" "pistol"
[76661] "event" "Appearing"
[76663] "maiden" "Olympics"
[76665] "19-year-old" "finished"
[76667] "creditable" "12th"
[76669] "despite" "losing"
[76671] "nearly" "20"
[76673] "minutes" "qualifications"
[76675] "cocking" "lever"
[76677] "pistol" "broke"
[76679] "forcing" "go"
[76681] "designated" "area"
[76683] "getting" "fixed"
[76685] "Manu" "shot"
[76687] "575" "cut-off"
[76689] "577" "Yashaswini"
[76691] "Singh" "Deswal"
[76693] "first-timer" "Games"
[76695] "recovered" "subdued"
[76697] "start" "end"
[76699] "13th" "total"
[76701] "score" "574"
[76703] "men's" "10"
[76705] "air" "rifle"
[76707] "event" "experienced"
[76709] "Deepak" "Kumar"
[76711] "teenaged" "Divyansh"
[76713] "Singh" "Panwar"
[76715] "finished" "lowly"
[76717] "26th" "32nd"
[76719] "respectively" "Deepak"
[76721] "aggregated" "624.7"
[76723] "Divyansh" "shot"
[76725] "622.8" "six"
[76727] "series" "scores"
[76729] "never" "going"
[76731] "enough" "make"
[76733] "final" "India's"
[76735] "Angad" "Vir"
[76737] "Singh" "Bajwa"
[76739] "missed" "two"
[76741] "targets" "75"
[76743] "placed" "11th"
[76745] "count" "back"
[76747] "end" "third"
[76749] "round" "men's"
[76751] "skeet" "qualifications"
[76753] "looks" "search"
[76755] "top-six" "finals"
[76757] "spot" "Angad"
[76759] "scores" "25"
[76761] "24" "24"
[76763] "first" "three"
[76765] "series" "come"
[76767] "back" "Monday"
[76769] "shoot" "final"
[76771] "two" "series"
[76773] "Compatriot" "Mairaj"
[76775] "Ahmad" "Khan"
[76777] "shot" "71"
[76779] "placed" "25th"
[76781] "30" "shooters"
[76783] "fray" "Swimming"
[76785] "Patel" "Nataraj"
[76787] "fall" "short"
[76789] "Indian" "swimmers"
[76791] "Srihari" "Nataraj"
[76793] "Maana" "Patel's"
[76795] "Olympic" "campaign"
[76797] "came" "end"
[76799] "two" "youngsters"
[76801] "failed" "qualify"
[76803] "semifinals" "respective"
[76805] "events" "Competing"
[76807] "maiden" "Olympics"
[76809] "swimmers" "unable"
[76811] "match" "personal"
[76813] "best" "performances"
[76815] "100m" "backstroke"
[76817] "events" "Srihari"
[76819] "managed" "time"
[76821] "54.31s" "finish"
[76823] "men's" "100m"
[76825] "backstroke" "heat"
[76827] "creditable" "sixth"
[76829] "place" "20-year-old"
[76831] "personal" "best"
[76833] "53.77s" "clocked"
[76835] "Sette" "Colli"
[76837] "Trophy" "Italy"
[76839] "qualify" "Tokyo"
[76841] "Games" "June"
[76843] "Overall" "Srihari"
[76845] "ranked" "27"
[76847] "among" "40"
[76849] "swimmers" "top"
[76851] "16" "swimmers"
[76853] "qualify" "semifinals"
[76855] "Table" "Tennis"
[76857] "Batra" "impresses"
[76859] "Sathiyan" "flops"
[76861] "India's" "table"
[76863] "tennis" "star"
[76865] "Manika" "Batra"
[76867] "made" "stunning"
[76869] "comeback" "world"
[76871] "number" "32"
[76873] "Margaryta" "Pesotska"
[76875] "reach" "women's"
[76877] "singles" "third"
[76879] "round" "G"
[76881] "Sathiyan" "succumbed"
[76883] "pressure" "Olympic"
[76885] "debut" "exit"
[76887] "men's" "singles"
[76889] "competition" "26th"
[76891] "seed" "Sathian"
[76893] "expected" "beat"
[76895] "world" "number"
[76897] "94" "Hong"
[76899] "Kong's" "Siu"
[76901] "Hang" "Lam"
[76903] "second" "round"
[76905] "match" "getting"
[76907] "first" "round"
[76909] "bye" "said"
[76911] "Manika" "whose"
[76913] "gritty" "approach"
[76915] "pressure" "proved"
[76917] "decisive" "higher-ranked"
[76919] "opponent" "Ukraine"
[76921] "Manika" "ranked"
[76923] "62" "made"
[76925] "remarkable" "comeback"
[76927] "losing" "first"
[76929] "two" "games"
[76931] "prevail" "4-11"
[76933] "4-11" "11-7"
[76935] "12-10" "8-11"
[76937] "11-5" "11-7"
[76939] "second" "round"
[76941] "match" "lasted"
[76943] "57" "minutes"
[76945] "Tennis" "Sania-Ankita"
[76947] "crash" "Sania"
[76949] "Mirza" "debutant"
[76951] "Ankita" "Raina"
[76953] "knocked" "Games"
[76955] "despite" "dominating"
[76957] "large" "part"
[76959] "women's" "doubles"
[76961] "opener" "Ukrainian"
[76963] "twin" "sisters"
[76965] "Nadiia" "Liudmyla"
[76967] "Kichenok" "Sania"
[76969] "Raina" "running"
[76971] "away" "contest"
[76973] "bageling" "opponents"
[76975] "dramatic" "turnround"
[76977] "Kichenok" "sisters"
[76979] "came" "back"
[76981] "dead" "pull"
[76983] "0-6" "7-6"
[76985] "0" "10-8"
[76987] "win" "court"
[76989] "11" "Ariake"
[76991] "Tennis" "Centre"
[76993] "Sania" "serving"
[76995] "match" "5-3"
[76997] "second" "set"
[76999] "perhaps" "nerves"
[77001] "got" "better"
[77003] "ended" "dropping"
[77005] "serve" "match"
[77007] "Ukrainians" "looked"
[77009] "sort" "struggling"
[77011] "serves" "returns"
[77013] "Indians" "became"
[77015] "prey" "Ukrainians"
[77017] "pounced" "Classification"
[77019] "Language" "ENGLISH"
[77021] "Publication-Type" "Newspaper"
[77023] "Body" "perhaps"
[77025] "India's" "successful"
[77027] "Olympics" "ever"
[77029] "seven" "medals"
[77031] "India" "recorded"
[77033] "best-ever" "haul"
[77035] "Tokyo" "Olympics"
[77037] "2020" "India"
[77039] "scripted" "history"
[77041] "athlete" "Neeraj"
[77043] "Chopra's" "win"
[77045] "23-year-old" "won"
[77047] "Men's" "Javelin"
[77049] "Gold" "medal"
[77051] "historic" "win"
[77053] "people" "started"
[77055] "congratulating" "athlete"
[77057] "social" "media"
[77059] "stupendous" "show"
[77061] "However" "one"
[77063] "Twitter" "user"
[77065] "wanted" "Mahindra"
[77067] "XUV700" "Twitter"
[77069] "user" "Ritesh"
[77071] "Jain" "tagged"
[77073] "Mahindra" "Group"
[77075] "Chairman" "Anand"
[77077] "Mahindra" "wrote"
[77079] "Xuv700" "sic"
[77081] "Xuv700" "Ritesh"
[77083] "Jain" "@ritjain13"
[77085] "saying" "privilege"
[77087] "gift" "golden"
[77089] "boy" "Neeraj"
[77091] "Chopra" "XUV700"
[77093] "Yes" "indeed"
[77095] "personal" "privilege"
[77097] "honour" "gift"
[77099] "Golden" "Athlete"
[77101] "XUV" "7OO"
[77103] "@rajesh664" "@vijaynakra"
[77105] "Keep" "one"
[77107] "ready" "please"
[77109] "sic" "wrote"
[77111] "Read" "tweet"
[77113] "Yes" "indeed"
[77115] "personal" "privilege"
[77117] "honour" "gift"
[77119] "Golden" "Athlete"
[77121] "XUV" "7OO"
[77123] "Keep" "one"
[77125] "ready" "please"
[77127] "anand" "mahindra"
[77129] "@anandmahindra" "Neeraj"
[77131] "Chopra's" "win"
[77133] "Olympics" "Anand"
[77135] "Mahindra" "mentioned"
[77137] "Prime" "Minister"
[77139] "Narendra" "Modi"
[77141] "Union" "Minister"
[77143] "Youth" "Affairs"
[77145] "Sports" "Anurag"
[77147] "Thakur" "tweet"
[77149] "wrote" "Javelin"
[77151] "throw" "arguably"
[77153] "frequently" "used"
[77155] "image" "commemorative"
[77157] "coins" "need"
[77159] "one" "officially"
[77161] "released" "depicting"
[77163] "#NeerajChopra" "@narendramodi"
[77165] "@ianuragthakur" "sic"
[77167] "Javelin" "throw"
[77169] "arguably" "frequently"
[77171] "used" "image"
[77173] "commemorative" "coins"
[77175] "need" "one"
[77177] "officially" "released"
[77179] "depicting" "anand"
[77181] "mahindra" "@anandmahindra"
[77183] "army" "Baahubali"
[77185] "anand" "mahindra"
[77187] "@anandmahindra" "Neeraj"
[77189] "Chopra" "became"
[77191] "second" "Indian"
[77193] "Abhinav" "Bindra"
[77195] "win" "individual"
[77197] "Olympic" "Gold"
[77199] "medal" "ALSO"
[77201] "READ" "|"
[77203] "ALSO" "READ"
[77205] "|" "Graphic"
[77207] "Anand" "Mahindra's"
[77209] "reply" "Twitter"
[77211] "user" "demanding"
[77213] "XUV700" "golden"
[77215] "boy" "Neeraj"
[77217] "Chopra" "Olympic"
[77219] "win" "Classification"
[77221] "Language" "ENGLISH"
[77223] "Publication-Type" "Web"
[77225] "Publication" "Body"
[77227] "India" "July"
[77229] "25" "ongoing"
[77231] "Tokyo" "Olympics"
[77233] "2020" "began"
[77235] "celebratory" "note"
[77237] "India" "weightlifter"
[77239] "Mirabai" "Chanu"
[77241] "won" "Olympic"
[77243] "medal" "Women's"
[77245] "49kg" "category"
[77247] "Following" "win"
[77249] "told" "reporters"
[77251] "future" "plans"
[77253] "Chanu" "said"
[77255] "first" "thing"
[77257] "love" "visit"
[77259] "family" "Among"
[77261] "things" "also"
[77263] "mentioned" "love"
[77265] "eat" "pizza"
[77267] "strict" "diet"
[77269] "months" "like"
[77271] "party" "Village"
[77273] "rules" "strict"
[77275] "said" "Maybe"
[77277] "can" "pizza"
[77279] "Twitter" "user"
[77281] "probably" "knowing"
[77283] "Mirabai" "Chanu's"
[77285] "love" "pizza"
[77287] "replied" "post"
[77289] "Domino's" "shared"
[77291] "congratulate" "athlete"
[77293] "urged" "pizza"
[77295] "chain" "deliver"
[77297] "dish" "Mirabai"
[77299] "Chanu" "returns"
[77301] "home" "Twitter"
[77303] "user" "also"
[77305] "added" "pay"
[77307] "dish" "reply"
[77309] "pizza" "chain"
[77311] "shared" "offering"
[77313] "athlete" "free"
[77315] "pizza" "life"
[77317] "Take" "look"
[77319] "post" "Pratik"
[77321] "Pota" "chief"
[77323] "executive" "officer"
[77325] "whole-time" "director"
[77327] "Jubilant" "Foodworks"
[77329] "company" "operates"
[77331] "pizza" "chain"
[77333] "India" "also"
[77335] "shared" "tweet"
[77337] "related" "matter"
[77339] "Even" "prepare"
[77341] "give" "#MirabaiChanu"
[77343] "hero's" "welcome"
[77345] "let" "eat"
[77347] "pizzas" "heart's"
[77349] "content" "Imphal"
[77351] "team" "went"
[77353] "house" "congratulate"
[77355] "family" "else"
[77357] "Domino's" "Pizza"
[77359] "@dominos_india" "Congratulations"
[77361] "@mirabai_chanu" "done"
[77363] "India" "proud"
[77365] "tweeted" "post"
[77367] "complete" "images"
[77369] "thoughts" "incident"
[77371] "Published" "HT"
[77373] "Digital" "Content"
[77375] "Services" "permission"
[77377] "Hindustan" "Times"
[77379] "query" "respect"
[77381] "article" "content"
[77383] "requirement" "please"
[77385] "contact" "Editor"
[77387] "Classification" "Language"
[77389] "ENGLISH" "Publication-Type"
[77391] "Newswire" "Body"
[77393] "Despite" "loss"
[77395] "Belgium" "Manpreet"
[77397] "Singh-led" "Indian"
[77399] "men's" "hockey"
[77401] "team" "still"
[77403] "medal" "play"
[77405] "side" "face"
[77407] "Germany" "bronze"
[77409] "medal" "August"
[77411] "5" "Indian"
[77413] "men's" "cricket"
[77415] "team" "seek"
[77417] "first" "Olympics"
[77419] "medal" "41"
[77421] "years" "Belgium"
[77423] "defeated" "India"
[77425] "5-2" "semi-final"
[77427] "face" "winner"
[77429] "second" "semi-final"
[77431] "Germany" "India"
[77433] "scored" "20"
[77435] "goals" "conceded"
[77437] "19" "Germany"
[77439] "slightly" "ahead"
[77441] "23" "goals"
[77443] "14" "conceded"
[77445] "played" "seven"
[77447] "matches" "thedetailsof"
[77449] "game" "Germany"
[77451] "vs" "India"
[77453] "men's" "hockey"
[77455] "bronze" "medal"
[77457] "match" "start"
[77459] "Germany" "vs"
[77461] "India" "men's"
[77463] "hockey" "bronze"
[77465] "medal" "match"
[77467] "begin" "7"
[77469] "00" "IST"
[77471] "Thursday" "August"
[77473] "4" "Germany"
[77475] "vs" "Indiamen's"
[77477] "hockey" "bronze"
[77479] "medal" "match"
[77481] "played" "Germany"
[77483] "vs" "Indiamen's"
[77485] "hockey" "bronze"
[77487] "medal" "match"
[77489] "played" "Oi"
[77491] "Hockey" "Stadium"
[77493] "North" "Pitch"
[77495] "Tokyo" "Japan"
[77497] "TV" "channels"
[77499] "broadcast" "Germany"
[77501] "vs" "Indiamen's"
[77503] "hockey" "bronze"
[77505] "medal" "match"
[77507] "Germany" "vs"
[77509] "Indiamen's" "hockey"
[77511] "bronze" "medal"
[77513] "matchwill" "broadcast"
[77515] "Sony" "Sports"
[77517] "Network" "India"
[77519] "watch" "live"
[77521] "streaming" "Germany"
[77523] "vs" "Indiamen's"
[77525] "hockey" "bronze"
[77527] "medal" "match"
[77529] "Fans" "can"
[77531] "catch" "live"
[77533] "streaming" "theGermany"
[77535] "vs" "Indiamen's"
[77537] "hockey" "bronze"
[77539] "medal" "matchon"
[77541] "SonyLIV" "website"
[77543] "SonyLIV" "app"
[77545] "India" "Classification"
[77547] "Language" "ENGLISH"
[77549] "Publication-Type" "Newspaper"
[77551] "Body" "India's"
[77553] "Neeraj" "Chopra"
[77555] "started" "final"
[77557] "87.02-metre" "throw"
[77559] "bettered" "next"
[77561] "attempt" "87.58"
[77563] "metres" "qualified"
[77565] "top" "spot"
[77567] "India's" "Neeraj"
[77569] "Chopra" "started"
[77571] "men's" "javelin"
[77573] "throw" "final"
[77575] "stupendous" "throw"
[77577] "87.02" "metres"
[77579] "Olympics" "Stadium"
[77581] "enough" "Neeraj"
[77583] "soon" "bettered"
[77585] "next" "attempt"
[77587] "threw" "javelin"
[77589] "87.58" "metres"
[77591] "almost" "confirmed"
[77593] "medal" "India"
[77595] "two" "throws"
[77597] "two" "87-plus"
[77599] "metre" "throws"
[77601] "ensured" "qualified"
[77603] "Top" "8"
[77605] "pole" "position"
[77607] "however" "medal"
[77609] "favourite" "Germany's"
[77611] "Johannes" "Vetter"
[77613] "couple" "throws"
[77615] "sub-82" "failed"
[77617] "throw" "remained"
[77619] "9" "Pakistan's"
[77621] "Arshad" "Nadeem"
[77623] "decent" "start"
[77625] "82.40" "even"
[77627] "come" "hand"
[77629] "liked" "bettered"
[77631] "84.62" "third"
[77633] "throw" "qualified"
[77635] "top" "8"
[77637] "fifth" "position"
[77639] "Following" "Neeraj"
[77641] "second" "position"
[77643] "Czech" "Republic'sVtezslav"
[77645] "Vesel" "38-year"
[77647] "old" "threw"
[77649] "85.44" "metres"
[77651] "qualified" "Top"
[77653] "8" "second"
[77655] "position" "Top"
[77657] "8" "Germany's"
[77659] "Julian" "Weber"
[77661] "presented" "opportunity"
[77663] "finished" "fourth"
[77665] "position" "Jakub"
[77667] "Vadlejch" "Czech"
[77669] "Republic" "surpassed"
[77671] "countryman" "throw"
[77673] "86.67" "metres"
[77675] "final" "round"
[77677] "confirm" "second"
[77679] "place" "Neeraj"
[77681] "Chopra" "whose"
[77683] "87.58-metre" "throw"
[77685] "enough" "win"
[77687] "Gold" "medal"
[77689] "India" "first"
[77691] "Track" "field"
[77693] "event" "country"
[77695] "Classification" "Language"
[77697] "ENGLISH" "Publication-Type"
[77699] "Newspaper" "Body"
[77701] "India" "Aug"
[77703] "6" "India"
[77705] "women's" "hockey"
[77707] "team" "missed"
[77709] "medal" "went"
[77711] "Rio" "Olympics"
[77713] "gold" "medalist"
[77715] "Great" "Britain"
[77717] "bronze" "medal"
[77719] "match" "Tokyo"
[77721] "Olympics" "coach"
[77723] "Sjoerd" "Marijne's"
[77725] "team" "can"
[77727] "take" "pride"
[77729] "fact" "finished"
[77731] "fourth" "Tokyo"
[77733] "Games" "highest-ever"
[77735] "Olympic" "finish"
[77737] "history" "competed"
[77739] "medal" "Games"
[77741] "first" "time"
[77743] "India" "also"
[77745] "finished" "fourth"
[77747] "1980" "six"
[77749] "teams" "competing"
[77751] "Moscow" "Games"
[77753] "medal" "matches"
[77755] "Great" "Britain"
[77757] "started" "match"
[77759] "typical" "attacking"
[77761] "style" "play"
[77763] "forcing" "Indian"
[77765] "defenders" "push"
[77767] "deep" "inside"
[77769] "circles" "two"
[77771] "penalty" "corners"
[77773] "Britain" "first"
[77775] "15" "minutes"
[77777] "one" "saved"
[77779] "Savita" "second"
[77781] "one" "lucky"
[77783] "escape" "India"
[77785] "Britain" "players"
[77787] "unable" "trap"
[77789] "ball" "Savita"
[77791] "also" "made"
[77793] "two" "saves"
[77795] "open" "play"
[77797] "attempts" "Leah"
[77799] "Wilkinson" "sent"
[77801] "ball" "inside"
[77803] "circle" "Elena"
[77805] "Rayer" "struck"
[77807] "Indian" "goalkeeper"
[77809] "pushed" "leg"
[77811] "rebound" "landed"
[77813] "Sarah" "Jones"
[77815] "stick" "took"
[77817] "shot" "deflected"
[77819] "back" "Savita"
[77821] "Jones" "attempted"
[77823] "another" "shot"
[77825] "target" "minutes"
[77827] "later" "Indian"
[77829] "goalkeeper" "denied"
[77831] "constant" "attacks"
[77833] "reaped" "fruits"
[77835] "Britain" "second"
[77837] "quarter" "Rayer"
[77839] "made" "run"
[77841] "right" "sent"
[77843] "ball" "inside"
[77845] "circle" "front"
[77847] "goal" "deflected"
[77849] "back" "nets"
[77851] "Deep" "Grace"
[77853] "Ekka's" "stick"
[77855] "Minutes" "later"
[77857] "Sarah" "Robertson's"
[77859] "tomahawk" "shot"
[77861] "nets" "doubled"
[77863] "Britain's" "lead"
[77865] "putting" "pressure"
[77867] "India" "Gurjit"
[77869] "Kaur" "came"
[77871] "party" "bring"
[77873] "India" "back"
[77875] "level" "pegging"
[77877] "scoring" "two"
[77879] "back-to-back" "goals"
[77881] "penalty" "corners"
[77883] "powerful" "dragflicks"
[77885] "past" "Britain"
[77887] "goalkeeper" "Madeliene"
[77889] "Hinch" "third"
[77891] "goal" "added"
[77893] "end" "second"
[77895] "quarter" "Vandana"
[77897] "Katariya" "Sushila"
[77899] "Chanu" "pushed"
[77901] "ball" "inside"
[77903] "scoring" "circle"
[77905] "left" "Navneet"
[77907] "Kaur" "attempted"
[77909] "shot" "missed"
[77911] "Vandana" "standing"
[77913] "right" "behind"
[77915] "struck" "near"
[77917] "post" "give"
[77919] "India" "lead"
[77921] "India" "started"
[77923] "third" "quarter"
[77925] "backfoot" "trying"
[77927] "defend" "feeble"
[77929] "lead" "allowed"
[77931] "Great" "Britain"
[77933] "get" "back"
[77935] "level" "terms"
[77937] "well-stitced" "attacking"
[77939] "move" "Isabelle"
[77941] "Petter's" "first"
[77943] "attempt" "saved"
[77945] "Savita" "ball"
[77947] "deflected" "Hollie"
[77949] "Pearne-Webb" "struck"
[77951] "past" "Savita"
[77953] "equalise" "late"
[77955] "flourish" "India"
[77957] "third" "quarter"
[77959] "troubled" "Britain's"
[77961] "defence" "enough"
[77963] "Sjoerd" "Marijne's"
[77965] "side" "get"
[77967] "back" "lead"
[77969] "flurry" "penalty"
[77971] "corners" "start"
[77973] "fourth" "quarter"
[77975] "Great" "Britain"
[77977] "allowed" "regain"
[77979] "lead" "Grace"
[77981] "Balsdon" "finally"
[77983] "scored" "set-piece"
[77985] "India" "played"
[77987] "almost" "seven"
[77989] "minutes" "10"
[77991] "players" "Neha"
[77993] "getting" "yellow"
[77995] "card" "followed"
[77997] "green" "card"
[77999] "Nikki" "Pradhan"
[78001] "India" "received"
[78003] "penalty" "corner"
[78005] "Gurjit" "Kaur's"
[78007] "dragflick" "saved"
[78009] "Hinch" "coach"
[78011] "Sjoerd" "Marijne's"
[78013] "team" "got"
[78015] "poor" "start"
[78017] "tournament" "losing"
[78019] "first" "three"
[78021] "games" "found"
[78023] "rhythm" "form"
[78025] "just" "right"
[78027] "team" "wins"
[78029] "Ireland" "South"
[78031] "Africa" "group"
[78033] "stage" "India"
[78035] "women's" "team"
[78037] "booked" "ride"
[78039] "quarterfinals" "shocked"
[78041] "Australia" "earn"
[78043] "first-ever" "semifinals"
[78045] "berth" "reach"
[78047] "final" "went"
[78049] "Argentina" "1-2"
[78051] "Published" "HT"
[78053] "Digital" "Content"
[78055] "Services" "permission"
[78057] "Hindustan" "Times"
[78059] "query" "respect"
[78061] "article" "content"
[78063] "requirement" "please"
[78065] "contact" "Editor"
[78067] "Classification" "Language"
[78069] "ENGLISH" "Publication-Type"
[78071] "Newswire" "Body"
[78073] "India" "Aug"
[78075] "3" "India"
[78077] "men's" "hockey"
[78079] "team" "lost"
[78081] "semifinal" "match"
[78083] "Belgium" "Tuesday"
[78085] "thus" "failing"
[78087] "reach" "final"
[78089] "Tokyo" "Olympics"
[78091] "Manpreet" "Singh-led"
[78093] "Indian" "team"
[78095] "looked" "solid"
[78097] "start" "match"
[78099] "taking" "2-1"
[78101] "lead" "first"
[78103] "quarter" "inability"
[78105] "prevent" "penalty"
[78107] "corners" "2018"
[78109] "world" "champions"
[78111] "Belgium" "cost"
[78113] "match" "lost"
[78115] "encounter" "2-5"
[78117] "India" "still"
[78119] "compete" "men's"
[78121] "hockey" "bronze"
[78123] "medal" "match"
[78125] "face" "either"
[78127] "Germany" "Australia"
[78129] "Prime" "Minister"
[78131] "Narendra" "Modi"
[78133] "took" "Twitter"
[78135] "applaud" "efforts"
[78137] "Indian" "team"
[78139] "wished" "well"
[78141] "bronze" "medal"
[78143] "match" "India"
[78145] "vs" "Belgium"
[78147] "Men's" "Hockey"
[78149] "semifinal" "Highlights"
[78151] "Wins" "losses"
[78153] "part" "life"
[78155] "Men's" "Hockey"
[78157] "Team" "#Tokyo2020"
[78159] "gave" "best"
[78161] "counts" "PM"
[78163] "Modi" "wrote"
[78165] "Twitter" "Wishing"
[78167] "Team" "best"
[78169] "next" "match"
[78171] "future" "endeavours"
[78173] "India" "proud"
[78175] "players" "added"
[78177] "Alexander" "Hendrickx"
[78179] "starred" "Belgium"
[78181] "match" "scoring"
[78183] "hat-trick" "two"
[78185] "goals" "coming"
[78187] "final" "quarter"
[78189] "India's" "Amit"
[78191] "Rohitas" "excellent"
[78193] "defence" "put"
[78195] "body" "line"
[78197] "numerous" "occasions"
[78199] "prevent" "goal"
[78201] "penalty" "corner"
[78203] "end" "number"
[78205] "PC's" "India"
[78207] "conceded" "caught"
[78209] "unable" "prevent"
[78211] "goals" "going"
[78213] "Published" "HT"
[78215] "Digital" "Content"
[78217] "Services" "permission"
[78219] "Hindustan" "Times"
[78221] "query" "respect"
[78223] "article" "content"
[78225] "requirement" "please"
[78227] "contact" "Editor"
[78229] "Classification" "Language"
[78231] "ENGLISH" "Publication-Type"
[78233] "Newswire" "Body"
[78235] "Chandigarh" "Aug"
[78237] "8" "Thirteen"
[78239] "years" "ago"
[78241] "palatial" "house"
[78243] "Zirakpur" "Chandigarh's"
[78245] "periphery" "thronged"
[78247] "media" "persons"
[78249] "fans" "shooter"
[78251] "Abhinav" "Bindra"
[78253] "bagged" "gold"
[78255] "medal" "Beijing"
[78257] "Olympics" "Saturday"
[78259] "evening" "kilometers"
[78261] "away" "Bindra's"
[78263] "house" "fans"
[78265] "media" "persons"
[78267] "swarmed" "Tau"
[78269] "Devi" "Lal"
[78271] "Stadium" "Panchkula"
[78273] "watch" "Neeraj"
[78275] "Chopra" "claim"
[78277] "India's" "second"
[78279] "individual" "gold"
[78281] "medal" "time"
[78283] "javelin" "throw"
[78285] "Tokyo" "Olympics"
[78287] "Neeraj" "native"
[78289] "Khandra" "village"
[78291] "Haryana's" "Panipat"
[78293] "district" "come"
[78295] "Panchkula" "stadium"
[78297] "decade" "ago"
[78299] "learn" "nuances"
[78301] "javelin" "throw"
[78303] "first" "coach"
[78305] "Naseem" "Ahmad"
[78307] "Ecstatic" "scenes"
[78309] "witnessed" "stadium"
[78311] "men's" "javelin"
[78313] "throw" "event"
[78315] "live" "streamed"
[78317] "big" "screen"
[78319] "coach" "Naseem"
[78321] "hooked" "along"
[78323] "around" "1,000"
[78325] "fans" "soon"
[78327] "Neeraj's" "claim"
[78329] "gold" "medal"
[78331] "confirmed" "emotional"
[78333] "Naseem" "said"
[78335] "boy" "India"
[78337] "proud" "finally"
[78339] "winning" "first"
[78341] "medal" "track"
[78343] "field" "events"
[78345] "India" "Olympics"
[78347] "knew" "Neeraj"
[78349] "confident" "ahead"
[78351] "final" "Naseem"
[78353] "trained" "Neeraj"
[78355] "2011" "2015"
[78357] "got" "Indian"
[78359] "camp" "also"
[78361] "joined" "Indian"
[78363] "Army" "said"
[78365] "remember" "sharp"
[78367] "kid" "Coming"
[78369] "rural" "Haryana"
[78371] "hunger" "well"
[78373] "become" "top-notch"
[78375] "athlete" "Three-four"
[78377] "young" "javelin"
[78379] "throwers" "come"
[78381] "Panipat" "excel"
[78383] "sport" "javelin"
[78385] "equipment" "Panipat"
[78387] "academies" "previously"
[78389] "won" "two"
[78391] "three" "tournaments"
[78393] "district" "state"
[78395] "level" "58-year-old"
[78397] "coach" "posted"
[78399] "stadium" "run"
[78401] "Haryana" "sports"
[78403] "department" "also"
[78405] "praised" "Neeraj"
[78407] "dedicating" "gold"
[78409] "medal" "legendary"
[78411] "sprinter" "Milkha"
[78413] "Singh" "died"
[78415] "recently" "Indian"
[78417] "athletes" "like"
[78419] "PT" "Usha"
[78421] "Neeraj" "another"
[78423] "connect" "Chandigarh"
[78425] "2015" "enrolled"
[78427] "DAV" "College"
[78429] "Sector" "10"
[78431] "institution" "produced"
[78433] "Kapil" "Dev"
[78435] "Yuvraj" "Singh"
[78437] "cricket" "Anjum"
[78439] "Moudgil" "shooting"
[78441] "Sukhbir" "Singh"
[78443] "Gill" "hockey"
[78445] "Gurpreet" "Singh"
[78447] "Sandhu" "football"
[78449] "among" "Indian"
[78451] "sportspersons" "Neeraj"
[78453] "taken" "admission"
[78455] "BA" "just"
[78457] "one" "year"
[78459] "broke" "meet"
[78461] "record" "all-India"
[78463] "inter-varsity" "competition"
[78465] "inspiring" "Neeraj"
[78467] "college" "athletes"
[78469] "learned" "much"
[78471] "spoke" "day"
[78473] "final" "told"
[78475] "nervous" "just"
[78477] "fearless" "focused"
[78479] "nervous" "said"
[78481] "Ravinder" "Choudhary"
[78483] "associate" "professor"
[78485] "physical" "education"
[78487] "department" "DAV"
[78489] "College" "also"
[78491] "secretary" "Athletics"
[78493] "Federation" "India"
[78495] "College" "students"
[78497] "staff" "celebrated"
[78499] "Neeraj's" "feat"
[78501] "Anjum" "Moudgil"
[78503] "joining" "Neeraj"
[78505] "made" "international"
[78507] "debut" "2016"
[78509] "won" "World"
[78511] "U20" "Championship"
[78513] "Poland" "world"
[78515] "junior" "record"
[78517] "throw" "86.48"
[78519] "metres" "won"
[78521] "gold" "2016"
[78523] "South" "Asian"
[78525] "Games" "throw"
[78527] "82.23" "metres"
[78529] "Tokyo" "87.58-metre"
[78531] "throw" "got"
[78533] "India" "gold"
[78535] "gold" "change"
[78537] "Indian" "athletics"
[78539] "good" "said"
[78541] "Naseem" "Published"
[78543] "HT" "Digital"
[78545] "Content" "Services"
[78547] "permission" "Hindustan"
[78549] "Times" "query"
[78551] "respect" "article"
[78553] "content" "requirement"
[78555] "please" "contact"
[78557] "Editor" "Classification"
[78559] "Language" "ENGLISH"
[78561] "Publication-Type" "Newswire"
[78563] "Body" "New"
[78565] "Delhi" "July"
[78567] "25" "Social"
[78569] "media" "flooded"
[78571] "congratulatory" "messages"
[78573] "celebrate" "athlete"
[78575] "Mirabai" "Chanu"
[78577] "opened" "India's"
[78579] "medal" "tally"
[78581] "Tokyo" "Olympics"
[78583] "Chanu" "won"
[78585] "silver" "medal"
[78587] "weightlifting" "49-kg"
[78589] "category" "women"
[78591] "24" "July"
[78593] "first" "day"
[78595] "ongoing" "global"
[78597] "sporting" "event"
[78599] "Brands" "across"
[78601] "categories" "also"
[78603] "joined" "bandwagon"
[78605] "wish" "young"
[78607] "athlete" "digital"
[78609] "campaigns" "across"
[78611] "social" "media"
[78613] "platforms" "Facebook"
[78615] "Instagram" "Twitter"
[78617] "Dair" "brand"
[78619] "Amul" "instance"
[78621] "released" "topical"
[78623] "campaign" "featuring"
[78625] "Chanu" "lifting"
[78627] "weight" "caption"
[78629] "said" "Worth"
[78631] "wait" "silver"
[78633] "Amul" "Mira"
[78635] "tera" "humara"
[78637] "favourite" "snack"
[78639] "Amul" "known"
[78641] "quirky" "advertising"
[78643] "also" "official"
[78645] "partner" "Indian"
[78647] "Olympic" "Association"
[78649] "IOA" "Britannia"
[78651] "Industries" "hand"
[78653] "used" "product"
[78655] "tool" "send"
[78657] "congratulatory" "message"
[78659] "social" "media"
[78661] "campaign" "featured"
[78663] "weightlifting" "equipment"
[78665] "made" "digestive"
[78667] "biscuits" "accompanying"
[78669] "caption" "Mirabai"
[78671] "Chanu" "worth"
[78673] "weight" "Gold"
[78675] "Studds" "Helmet"
[78677] "post" "showed"
[78679] "fist" "holding"
[78681] "silver" "medal"
[78683] "caption" "said"
[78685] "Congratulations" "Mirabai"
[78687] "Chanu" "proud"
[78689] "Meanwhile" "beauty"
[78691] "wellness" "chain"
[78693] "VLCC" "post"
[78695] "featuring" "picture"
[78697] "Chanu" "congratulated"
[78699] "young" "athlete"
[78701] "saying" "Silver"
[78703] "beautiful" "Congratulations"
[78705] "historic" "win"
[78707] "Giving" "historic"
[78709] "win" "quirky"
[78711] "twist" "delivery"
[78713] "platform" "Dunzo"
[78715] "social" "media"
[78717] "post" "took"
[78719] "inspiration" "popular"
[78721] "Punjabi" "song"
[78723] "came" "caption"
[78725] "read" "Chanu"
[78727] "ve" "ghar"
[78729] "aaja" "ve"
[78731] "home" "proud"
[78733] "worth" "weight"
[78735] "#JoyComesHome" "brands"
[78737] "wished" "athlete"
[78739] "include" "Costa"
[78741] "Coffee" "India"
[78743] "Federal" "Bank"
[78745] "Limited" "Bikano"
[78747] "Kochi" "Metro"
[78749] "Rail" "among"
[78751] "others" "Ritesh"
[78753] "Nath" "independent"
[78755] "sports" "consultant"
[78757] "said" "Olympics"
[78759] "extremely" "well-regarded"
[78761] "sporting" "event"
[78763] "brands" "can"
[78765] "gain" "associating"
[78767] "form" "brands"
[78769] "might" "also"
[78771] "consider" "forging"
[78773] "formal" "partnership"
[78775] "athletes" "win"
[78777] "Olympics" "leverage"
[78779] "popularity" "form"
[78781] "possible" "brand"
[78783] "ambassador" "partnership"
[78785] "added" "Published"
[78787] "HT" "Digital"
[78789] "Content" "Services"
[78791] "permission" "MINT"
[78793] "query" "respect"
[78795] "article" "content"
[78797] "requirement" "please"
[78799] "contact" "Editor"
[78801] "Classification" "Language"
[78803] "ENGLISH" "Publication-Type"
[78805] "Newspaper" "Body"
[78807] "New" "Delhi"
[78809] "Aug" "9"
[78811] "Indian" "athletes"
[78813] "Tokyo" "closing"
[78815] "ceremony" "showpiece"
[78817] "event" "Olympics"
[78819] "returned" "home"
[78821] "Monday" "Athletics"
[78823] "team" "back"
[78825] "#Tokyo2020" "welcome"
[78827] "sharing" "#Cheer4India"
[78829] "messages" "encourage"
[78831] "future" "competitions"
[78833] "tweeted" "SAI"
[78835] "Media" "greeted"
[78837] "frenzy" "chaos"
[78839] "airport" "supporters"
[78841] "jostled" "catch"
[78843] "glimpse" "sporting"
[78845] "heroes" "athletes"
[78847] "welcomed" "Sports"
[78849] "Authority" "India"
[78851] "SAI" "delegation"
[78853] "headed" "director-ceneral"
[78855] "Sandeep" "Pradhan"
[78857] "accompanied" "Athletics"
[78859] "Federation" "India"
[78861] "head" "Adille"
[78863] "Sumariwala" "Bharatiya"
[78865] "Janata" "Party"
[78867] "leader" "Tejasvi"
[78869] "Surya" "met"
[78871] "gold" "medalist"
[78873] "javelin" "thrower"
[78875] "Neeraj" "Chopra"
[78877] "Delhi" "international"
[78879] "airport" "#WATCH"
[78881] "|" "#Olympics"
[78883] "Gold" "medalist"
[78885] "javelin" "thrower"
[78887] "#NeerajChopra" "received"
[78889] "huge" "crowd"
[78891] "people" "Delhi"
[78893] "Airport" "pic.twitter.com"
[78895] "PEhVCoNt60" "ANI"
[78897] "@ANI" "August"
[78899] "9" "2021"
[78901] "Chopra" "Saturday"
[78903] "become" "first"
[78905] "Indian" "athlete"
[78907] "win" "gold"
[78909] "medal" "Games"
[78911] "dramatic" "exit"
[78913] "made" "bronze-medallist"
[78915] "wrestler" "Bajrang"
[78917] "Punia" "seen"
[78919] "greeting" "waving"
[78921] "towards" "supporters"
[78923] "sunroof" "SUV"
[78925] "several" "fans"
[78927] "clinging" "defying"
[78929] "traffic" "rules"
[78931] "made" "way"
[78933] "airport" "#Tokyo2020"
[78935] "bronze" "medalist"
[78937] "wrestler" "Bajrang"
[78939] "Punia" "receives"
[78941] "grand" "welcome"
[78943] "Delhi" "airport"
[78945] "arrival" "Japan"
[78947] "feels" "great"
[78949] "receive" "kind"
[78951] "love" "respect"
[78953] "Punia" "says"
[78955] "pic.twitter.com" "2rtgYyNzgW"
[78957] "ANI" "@ANI"
[78959] "August" "9"
[78961] "2021" "try"
[78963] "better" "next"
[78965] "time" "knee"
[78967] "problem" "Punia"
[78969] "entered" "Games"
[78971] "gold" "favourite"
[78973] "said" "athletes"
[78975] "garlanded" "presented"
[78977] "bouquets" "arrival"
[78979] "applauded" "airport"
[78981] "staff" "made"
[78983] "way" "utter"
[78985] "chaos" "whisked"
[78987] "away" "felicitation"
[78989] "function" "sports"
[78991] "minister" "Anurag"
[78993] "Thakur" "later"
[78995] "evening" "first"
[78997] "time" "seeing"
[78999] "reception" "like"
[79001] "heartening" "said"
[79003] "race" "walker"
[79005] "K" "T"
[79007] "Irfan" "competed"
[79009] "20km" "race"
[79011] "walk" "event"
[79013] "year" "Games"
[79015] "held" "Covid-19"
[79017] "induced" "restrictions"
[79019] "events" "held"
[79021] "behind" "closed"
[79023] "doors" "11,000"
[79025] "athletes" "200"
[79027] "countries" "competed"
[79029] "Tokyo" "Olympics"
[79031] "India" "sent"
[79033] "228-strong" "contingent"
[79035] "Games" "including"
[79037] "120" "athletes"
[79039] "country" "recorded"
[79041] "best-ever" "haul"
[79043] "Olympics" "seven"
[79045] "medals" "one"
[79047] "gold" "two"
[79049] "silver" "four"
[79051] "bronze" "Neeraj"
[79053] "gold" "Bajrang"
[79055] "bronze" "Mirabai"
[79057] "Chanu" "silver"
[79059] "PV" "Sindhu"
[79061] "bronze" "Lovlina"
[79063] "Borgohain" "bronze"
[79065] "men's" "hockey"
[79067] "team" "bronze"
[79069] "Ravi" "Kumar"
[79071] "Dahiya" "silver"
[79073] "won" "medals"
[79075] "Tokyo" "Games"
[79077] "Published" "HT"
[79079] "Digital" "Content"
[79081] "Services" "permission"
[79083] "MINT" "query"
[79085] "respect" "article"
[79087] "content" "requirement"
[79089] "please" "contact"
[79091] "Editor" "Classification"
[79093] "Language" "ENGLISH"
[79095] "Publication-Type" "Newspaper"
[79097] "Body" "New"
[79099] "Delhi" "Aug"
[79101] "9" "Indian"
[79103] "golfer" "Aditi"
[79105] "Ashok" "disheartened"
[79107] "missing" "medal"
[79109] "finishing" "fourth"
[79111] "women's" "individual"
[79113] "stroke" "play"
[79115] "Tokyo" "Olympics"
[79117] "golfer" "gave"
[79119] "hundred" "per"
[79121] "cent" "memorable"
[79123] "fourth-place" "finish"
[79125] "Tokyo" "2020"
[79127] "said" "leaving"
[79129] "Tokyo" "bittersweet"
[79131] "memories" "tried"
[79133] "best" "till"
[79135] "end" "event"
[79137] "still" "ended"
[79139] "missing" "medal"
[79141] "Leaving" "Tokyo"
[79143] "bittersweet" "memories"
[79145] "probably" "disheartened"
[79147] "ever" "finishing"
[79149] "4th" "golf"
[79151] "tournament" "tried"
[79153] "best" "till"
[79155] "end" "golf"
[79157] "like" "sometimes"
[79159] "always" "get"
[79161] "deserve" "get"
[79163] "work" "Aditi"
[79165] "Ashok" "tweeted"
[79167] "Leaving" "Tokyo"
[79169] "bittersweet" "memories"
[79171] "probably" "disheartened"
[79173] "ever" "finishing"
[79175] "4th" "golf"
[79177] "tournament" "#55358"
[79179] "#56690" "tried"
[79181] "best" "till"
[79183] "end" "golf"
[79185] "like" "sometimes"
[79187] "always" "get"
[79189] "deserve" "get"
[79191] "work" "pic.twitter.com"
[79193] "EFUrHmKO60" "Aditi"
[79195] "Ashok" "@aditigolf"
[79197] "August" "8"
[79199] "2021" "23-year-old"
[79201] "rolled" "five"
[79203] "birdies" "placed"
[79205] "famous" "fourth"
[79207] "fifteen-under" "201"
[79209] "ahead" "Australia's"
[79211] "Hannah" "Green"
[79213] "Denmark's" "Pedersen"
[79215] "tied" "fifth"
[79217] "Indian" "finished"
[79219] "final" "day"
[79221] "68" "-3"
[79223] "Kasumigaseki" "Country"
[79225] "Club" "year"
[79227] "Games" "held"
[79229] "COVID-19" "induced"
[79231] "restrictions" "sports"
[79233] "played" "behind"
[79235] "closed" "doors"
[79237] "11,000" "athletes"
[79239] "200" "countries"
[79241] "competed" "Tokyo"
[79243] "Olympics" "India"
[79245] "recorded" "best-ever"
[79247] "haul" "Olympics"
[79249] "seven" "medals"
[79251] "one" "gold"
[79253] "two" "silver"
[79255] "four" "bronze"
[79257] "Olympic" "Games"
[79259] "came" "end"
[79261] "stunning" "closing"
[79263] "ceremony" "Tokyo"
[79265] "Olympic" "Stadium"
[79267] "Sunday" "Published"
[79269] "HT" "Digital"
[79271] "Content" "Services"
[79273] "permission" "MINT"
[79275] "query" "respect"
[79277] "article" "content"
[79279] "requirement" "please"
[79281] "contact" "Editor"
[79283] "Classification" "Language"
[79285] "ENGLISH" "Publication-Type"
[79287] "Newspaper" "Body"
[79289] "Reigning" "world"
[79291] "champion" "P"
[79293] "V" "Sindhu"
[79295] "kept" "alive"
[79297] "India's" "hopes"
[79299] "first-ever" "Olympic"
[79301] "gold" "badminton"
[79303] "reaching" "semifinals"
[79305] "women's" "singles"
[79307] "straight-game" "win"
[79309] "world" "5"
[79311] "Japanese" "Akane"
[79313] "Yamaguchi" "Friday"
[79315] "Today" "PV"
[79317] "Sindhu" "crossing"
[79319] "swords" "Chinese"
[79321] "Taipei's" "Tai"
[79323] "Tzu-ying" "all-important"
[79325] "crucial" "semi-final"
[79327] "women's" "badminton"
[79329] "singles" "Tokyo"
[79331] "Olympics" "2020"
[79333] "far" "tournament"
[79335] "PV" "Sindhu"
[79337] "brimming" "confidence"
[79339] "displayed" "dominant"
[79341] "brand" "badminton"
[79343] "breathed" "fire"
[79345] "matches" "dropped"
[79347] "single" "set"
[79349] "far" "Head-to-head"
[79351] "Sindhu" "lost"
[79353] "Tai" "Tzu"
[79355] "last" "three"
[79357] "occasions" "however"
[79359] "managed" "outwit"
[79361] "Taiwanese" "shuttler"
[79363] "important" "events"
[79365] "2016" "Rio"
[79367] "Games" "2019"
[79369] "World" "Championships"
[79371] "2018" "World"
[79373] "Tour" "Finals"
[79375] "Time" "location"
[79377] "match" "PV"
[79379] "Sindhu" "Tai"
[79381] "Tzu-ying" "begin"
[79383] "3" "20"
[79385] "PM" "IST"
[79387] "Saturday" "July"
[79389] "31st" "Musashino"
[79391] "Forest" "Sport"
[79393] "Plaza" "Court"
[79395] "1" "channel"
[79397] "match" "PV"
[79399] "Sindhu" "Tai"
[79401] "Tzu-ying" "telecasted"
[79403] "Doordarshan" "Sony"
[79405] "Ten" "2"
[79407] "Sony" "Ten"
[79409] "2" "HD"
[79411] "Sony" "Ten"
[79413] "3" "Sony"
[79415] "Ten" "3"
[79417] "HD" "Sony"
[79419] "Ten" "4"
[79421] "Sony" "Ten"
[79423] "4" "HD"
[79425] "Sony" "Six"
[79427] "Sony" "Six"
[79429] "HD" "India"
[79431] "OTT" "Platform"
[79433] "match" "PV"
[79435] "Sindhu" "Tai"
[79437] "Tzu-ying" "live-streamed"
[79439] "Sony" "Liv"
[79441] "App" "Jio"
[79443] "TV" "India"
[79445] "Classification" "Language"
[79447] "ENGLISH" "Publication-Type"
[79449] "Newspaper" "Body"
[79451] "India" "Aug"
[79453] "4" "India"
[79455] "assured" "least"
[79457] "silver" "medal"
[79459] "men's" "freestyle"
[79461] "wrestling" "57kg"
[79463] "category" "Ravi"
[79465] "Kumar" "Dahiya"
[79467] "staged" "great"
[79469] "comeback" "Kazakhstan's"
[79471] "Nurislam" "Sanayev"
[79473] "make" "way"
[79475] "final" "bout"
[79477] "started" "cagey"
[79479] "fashion" "wrestlers"
[79481] "registering" "points"
[79483] "initial" "minutes"
[79485] "first" "round"
[79487] "Sanayev" "almost"
[79489] "won" "match"
[79491] "registered" "8"
[79493] "points" "row"
[79495] "pulling" "dreaded"
[79497] "fitele" "move"
[79499] "Sanayez" "grabbed"
[79501] "Ravi" "ankles"
[79503] "rolled" "Indian"
[79505] "wrestler" "four"
[79507] "times" "gave"
[79509] "8" "points"
[79511] "take" "advantage"
[79513] "9-2" "Tokyo"
[79515] "Olympics" "Day"
[79517] "12" "Live"
[79519] "Updates" "Ravi"
[79521] "Kumar" "staged"
[79523] "grand" "comeback"
[79525] "first" "reduced"
[79527] "deficit" "5-9"
[79529] "pushed" "Kazakh"
[79531] "mat" "move"
[79533] "Ravi's" "left"
[79535] "Sanayez" "bamboozled"
[79537] "also" "hurt"
[79539] "leg" "Indian"
[79541] "wrestler" "made"
[79543] "psychological" "advantage"
[79545] "count" "pinned"
[79547] "Kazakh" "wrestler"
[79549] "great" "move"
[79551] "eventually" "win"
[79553] "bout" "fall"
[79555] "fourth" "wrestler"
[79557] "India" "win"
[79559] "Olympic" "medal"
[79561] "KD" "Jadhav"
[79563] "bronze" "1952"
[79565] "Sushil" "Kumar"
[79567] "bronze" "2008"
[79569] "silver" "2012"
[79571] "Yogeshwar" "Dutt"
[79573] "bronze" "2008"
[79575] "Ravi" "two-time"
[79577] "Asian" "Championships"
[79579] "gold" "medallist"
[79581] "bronze" "medal"
[79583] "winner" "World"
[79585] "Championships" "2019"
[79587] "follow" "Published"
[79589] "HT" "Digital"
[79591] "Content" "Services"
[79593] "permission" "Hindustan"
[79595] "Times" "query"
[79597] "respect" "article"
[79599] "content" "requirement"
[79601] "please" "contact"
[79603] "Editor" "Classification"
[79605] "Language" "ENGLISH"
[79607] "Publication-Type" "Newswire"
[79609] "Body" "Finally"
[79611] "broken" "jinx"
[79613] "long" "wait"
[79615] "49" "years"
[79617] "Indian" "men"
[79619] "hockey" "semi-finals"
[79621] "Olympic" "Games"
[79623] "1972" "Munich"
[79625] "lost" "Pakistan"
[79627] "0-2" "huge"
[79629] "achievement" "given"
[79631] "heartbreaks" "1980"
[79633] "gold" "medal-winning"
[79635] "feat" "Indian"
[79637] "hockey" "replete"
[79639] "so-near-" "yet-so-far"
[79641] "stories" "like"
[79643] "1984" "Los"
[79645] "Angeles" "Olympics"
[79647] "2000" "Games"
[79649] "Sydney" "Sunday"
[79651] "red-letter" "day"
[79653] "India" "defeated"
[79655] "Great" "Britain"
[79657] "3-1" "set"
[79659] "mouth-watering" "last-four"
[79661] "clash" "world"
[79663] "champions" "Belgium"
[79665] "Tuesday" "delights"
[79667] "three" "field"
[79669] "goals" "time"
[79671] "India" "also"
[79673] "introspection" "earn"
[79675] "single" "penalty"
[79677] "corner" "Dilpreet"
[79679] "Singh" "seventh"
[79681] "minute" "Gurjant"
[79683] "Singh" "16th"
[79685] "Hardik" "Singh"
[79687] "57th" "scorers"
[79689] "Four" "players"
[79691] "stole" "show"
[79693] "PR" "Sreejesh"
[79695] "Nilakanta" "Sharma"
[79697] "captain" "Manpreet"
[79699] "Singh" "Hardik"
[79701] "Sreejesh" "tournament"
[79703] "life" "mainstay"
[79705] "team" "Great"
[79707] "Britain" "India"
[79709] "last" "two"
[79711] "quarters" "earned"
[79713] "number" "penalty"
[79715] "corners" "Sreejesh"
[79717] "held" "firm"
[79719] "Forget" "Australia"
[79721] "match" "players"
[79723] "performed" "miserably"
[79725] "India" "goalkeeper"
[79727] "best" "every"
[79729] "game" "Belgium"
[79731] "India's" "fortune"
[79733] "depend" "lot"
[79735] "Sreejesh" "performs"
[79737] "put" "A-class"
[79739] "performance" "first"
[79741] "goal" "credit"
[79743] "go" "Simranjeet"
[79745] "Singh" "showed"
[79747] "great" "vision"
[79749] "playing" "million"
[79751] "dollar" "pass"
[79753] "beating" "five"
[79755] "Great" "Britain"
[79757] "players" "Dilpreet"
[79759] "push" "ball"
[79761] "third" "goal"
[79763] "icing" "cake"
[79765] "India" "playing"
[79767] "man" "backs"
[79769] "wall" "Hardik"
[79771] "broke" "free"
[79773] "ran" "ran"
[79775] "lose" "focus"
[79777] "first" "attempt"
[79779] "thwarted" "Great"
[79781] "Britain" "answer"
[79783] "rasping" "hit"
[79785] "rebound" "cry"
[79787] "let" "goal"
[79789] "testimony" "relief"
[79791] "Indian" "camp"
[79793] "India" "brilliant"
[79795] "first" "two"
[79797] "quarters" "last"
[79799] "two" "bit"
[79801] "defensive" "Great"
[79803] "Britain" "went"
[79805] "trying" "reduce"
[79807] "margin" "umpiring"
[79809] "disappointing" "lost"
[79811] "Manpreet" "crucial"
[79813] "time" "umpire"
[79815] "showed" "yellow"
[79817] "card" "challenge"
[79819] "rival" "looked"
[79821] "legitimate" "Despite"
[79823] "setback" "India"
[79825] "fought" "well"
[79827] "Hats" "Monday"
[79829] "women" "Australia"
[79831] "last-eight" "surprised"
[79833] "everyone" "entering"
[79835] "quarters" "knows"
[79837] "may" "aces"
[79839] "sleeves" "former"
[79841] "India" "captain"
[79843] "Gurbux" "Singh"
[79845] "amember" "1964"
[79847] "gold" "medal-winning"
[79849] "hockey" "team"
[79851] "India" "watch"
[79853] "Monday" "Athletics"
[79855] "Women's" "200m"
[79857] "Round" "1"
[79859] "heat" "4"
[79861] "7.24am" "Shooting"
[79863] "Men's" "50m"
[79865] "rifle" "3"
[79867] "position" "qualifications"
[79869] "8am" "Hockey"
[79871] "Women'squarter" "final"
[79873] "vs" "Australia"
[79875] "8.30am" "Shooting"
[79877] "Men's" "50m"
[79879] "rifle" "3"
[79881] "position" "final"
[79883] "1.20pm" "subject"
[79885] "qualification" "Equestrian"
[79887] "Eventing" "jumping"
[79889] "individualqualifier" "1.30pm"
[79891] "Athletics" "Women's"
[79893] "200m" "semi-finals"
[79895] "3.55pm" "subject"
[79897] "qualification" "Women's"
[79899] "discus" "throwfinal"
[79901] "Kamalpreet" "Kaur"
[79903] "4.30pm" "Equestrian"
[79905] "Eventing" "jumping"
[79907] "individual" "final"
[79909] "5.15pm" "subject"
[79911] "toqualification" "timings"
[79913] "IST" "Classification"
[79915] "Language" "ENGLISH"
[79917] "Publication-Type" "Newspaper"
[79919] "Body" "Weighed"
[79921] "expectations" "legion"
[79923] "fans" "26-year-old"
[79925] "Pusarla" "Venkata"
[79927] "Sindhu" "Friday"
[79929] "became" "4th"
[79931] "female" "shutter"
[79933] "win" "2"
[79935] "Olympic" "medals"
[79937] "singles" "badminton"
[79939] "hammered" "China's"
[79941] "Bingjiao" "bronze"
[79943] "medal" "just"
[79945] "53" "minutes"
[79947] "makes" "also"
[79949] "Indian" "woman"
[79951] "bag" "two"
[79953] "back-to-back" "medals"
[79955] "mega" "event"
[79957] "Besides" "Sindhu"
[79959] "wrestler" "Sushil"
[79961] "Kumar" "Indian"
[79963] "athlete" "win"
[79965] "two" "individual"
[79967] "medals" "Olympic"
[79969] "Games" "Sindhu"
[79971] "Chinese" "opponent"
[79973] "scrambling" "around"
[79975] "court" "couple"
[79977] "authoritative" "shots"
[79979] "put" "Indian"
[79981] "11-8" "ahead"
[79983] "mid-game" "interval"
[79985] "first" "game"
[79987] "end" "Sindhu's"
[79989] "power" "guile"
[79991] "proved" "just"
[79993] "much" "Bing"
[79995] "Jiao" "makes"
[79997] "feel" "really"
[79999] "happy" "worked"
[80001] "hard" "many"
[80003] "years" "lot"
[80005] "emotions" "going"
[80007] "happy" "won"
[80009] "bronze" "sad"
[80011] "lost" "opportunity"
[80013] "play" "final"
[80015] "said" "Sandhu"
[80017] "match" "overall"
[80019] "close" "emotions"
[80021] "match" "give"
[80023] "best" "really"
[80025] "happy" "think"
[80027] "done" "really"
[80029] "well" "fantastic"
[80031] "win" "proud"
[80033] "said" "Gopichand"
[80035] "national" "badminton"
[80037] "coach" "talking"
[80039] "FPJ" "Hyderabad"
[80041] "PV" "Sindhu"
[80043] "Gopi" "academy"
[80045] "lockdown" "training"
[80047] "board" "plane"
[80049] "Tokyo" "games"
[80051] "Parents" "Ramana"
[80053] "Vijaya" "former"
[80055] "volleyball" "players"
[80057] "elated" "Sindhu"
[80059] "came" "back"
[80061] "win" "bronze"
[80063] "heart-breaking" "loss"
[80065] "semi-final" "Tai"
[80067] "Tzu" "Chinese"
[80069] "Taipei" "Saturday"
[80071] "Ramana" "confident"
[80073] "Sindhu" "now"
[80075] "26" "play"
[80077] "next" "Olympics"
[80079] "plan" "work"
[80081] "win" "many"
[80083] "medals" "possible"
[80085] "confident" "focussed"
[80087] "hunger" "go"
[80089] "play" "said"
[80091] "Prime" "Minister"
[80093] "Narendra" "Modi"
[80095] "hailed" "Sindhu"
[80097] "one" "outstanding"
[80099] "Olympians" "promised"
[80101] "ice-cream" "wither"
[80103] "return" "Classification"
[80105] "Language" "ENGLISH"
[80107] "Publication-Type" "Newspaper"
[80109] "Body" "round-up"
[80111] "went" "Games"
[80113] "day" "five"
[80115] "Going" "happened"
[80117] "Tokyo" "Olympics"
[80119] "today" "hope"
[80121] "medals" "Indian"
[80123] "contingent" "forerunners"
[80125] "PV" "Sindhu"
[80127] "Deepika" "Kumari"
[80129] "pugilist" "Pooja"
[80131] "Rani" "dissapointing"
[80133] "twist" "tale"
[80135] "well" "Indian"
[80137] "hockey" "women's"
[80139] "team" "slumped"
[80141] "third" "straight"
[80143] "defeat" "going"
[80145] "1-4" "Great"
[80147] "Britain" "B"
[80149] "Sai" "Praneeth"
[80151] "collapsed" "14-21"
[80153] "14-21" "Mark"
[80155] "Caljouw" "Netherlands"
[80157] "40" "minutes"
[80159] "second" "defeat"
[80161] "Group" "D"
[80163] "round-up" "Indian"
[80165] "athletes" "participating"
[80167] "Olympics" "day"
[80169] "five" "competitions"
[80171] "Archery" "Deepika"
[80173] "Kumari" "beats"
[80175] "Jennifer" "Mucino-Fernandez"
[80177] "USA" "6-4"
[80179] "second" "round"
[80181] "world" "number"
[80183] "one" "archer"
[80185] "survived" "anxious"
[80187] "moments" "getting"
[80189] "past" "US"
[80191] "teenager" "keep"
[80193] "Indian" "medal"
[80195] "hopes" "alive"
[80197] "Deepika" "lost"
[80199] "first" "set"
[80201] "one" "point"
[80203] "bounced" "back"
[80205] "strongly" "three"
[80207] "10s" "row"
[80209] "take" "4-2"
[80211] "lead" "however"
[80213] "failed" "wrap"
[80215] "match" "fourth"
[80217] "set" "misfired"
[80219] "six" "second"
[80221] "arrow" "18-year-old"
[80223] "American" "made"
[80225] "4-4" "winning"
[80227] "set" "one-point"
[80229] "25-24" "winner-takes-all"
[80231] "fifth" "set"
[80233] "Deepika" "two"
[80235] "9s" "start"
[80237] "finishing" "poor"
[80239] "8" "Needing"
[80241] "10" "last"
[80243] "arrow" "force"
[80245] "shoot-off" "Jennifer"
[80247] "signed" "nine"
[80249] "promising" "campaign"
[80251] "American" "teenager"
[80253] "Tarundeep" "Rai"
[80255] "beat" "Oleksii"
[80257] "Hunbin" "Ukraine"
[80259] "6-4" "men's"
[80261] "individual" "first"
[80263] "round" "match"
[80265] "lost" "Itay"
[80267] "Shanny" "Israel"
[80269] "shoot-off" "second"
[80271] "round" "Pravin"
[80273] "Jadhav" "beat"
[80275] "Galsan" "Bazarzhapov"
[80277] "Russian" "Olympic"
[80279] "Committee" "6-0"
[80281] "men's" "individual"
[80283] "first" "round"
[80285] "lost" "Brady"
[80287] "Ellison" "USA"
[80289] "0-6" "second"
[80291] "round" "Badminton"
[80293] "PV" "Sindhu"
[80295] "qualifies" "pre-quarterfinals"
[80297] "Praneeth" "bows"
[80299] "Reigning" "world"
[80301] "champion" "PV"
[80303] "Sindhu" "stormed"
[80305] "pre-quarterfinals" "women's"
[80307] "singles" "badminton"
[80309] "event" "B"
[80311] "Sai" "Praneeth's"
[80313] "maiden" "Olympic"
[80315] "campaign" "ended"
[80317] "agony" "men's"
[80319] "competition" "Sindhu"
[80321] "claimed" "silver"
[80323] "medal" "last"
[80325] "edition" "Rio"
[80327] "beat" "world"
[80329] "34" "Hong"
[80331] "Kong's" "NY"
[80333] "Cheung" "21-9"
[80335] "21-16" "35-minute"
[80337] "match" "top"
[80339] "Group" "J"
[80341] "However" "13th"
[80343] "seed" "Praneeth"
[80345] "failed" "bring"
[80347] "game" "table"
[80349] "going" "14-21"
[80351] "14-21" "Mark"
[80353] "Caljouw" "Netherlands"
[80355] "40" "minutes"
[80357] "second" "defeat"
[80359] "Group" "D"
[80361] "world" "15"
[80363] "Indian" "earlier"
[80365] "lost" "opening"
[80367] "round" "Israel's"
[80369] "Misha" "Zilberman"
[80371] "World" "29"
[80373] "Caljow" "win"
[80375] "topped" "group"
[80377] "qualify" "knockout"
[80379] "stage" "group"
[80381] "toppers" "advance"
[80383] "knockout" "stage"
[80385] "Boxing" "Pooja"
[80387] "Rani" "storms"
[80389] "quarters" "Two-time"
[80391] "Asian" "champion"
[80393] "Indian" "boxer"
[80395] "Pooja" "Rani"
[80397] "75kg" "out-punched"
[80399] "Algeria's" "Ichrak"
[80401] "Chaib" "opening"
[80403] "bout" "enter"
[80405] "quarterfinals" "maiden"
[80407] "Olympic" "Games"
[80409] "30-year-old" "Indian"
[80411] "clinched" "5-0"
[80413] "thoroughly" "dominating"
[80415] "rival" "10"
[80417] "years" "junior"
[80419] "Haryana-boxer" "command"
[80421] "right" "straights"
[80423] "also" "benefitted"
[80425] "immensely" "Chaib's"
[80427] "lack" "balance"
[80429] "ring" "three"
[80431] "rounds" "story"
[80433] "Rani's" "domination"
[80435] "Chaib" "also"
[80437] "appearing" "maiden"
[80439] "Olympics" "just"
[80441] "figure" "way"
[80443] "connect" "cleanly"
[80445] "Rani" "throughout"
[80447] "bout" "counter-attack"
[80449] "Chaib" "failed"
[80451] "spectacularly" "trying"
[80453] "hit" "powerfully"
[80455] "wild" "swings"
[80457] "mostly" "missing"
[80459] "target" "area"
[80461] "Hockey" "Third"
[80463] "straight" "loss"
[80465] "India" "eves"
[80467] "Indian" "women's"
[80469] "hockey" "team"
[80471] "wasted" "chances"
[80473] "galore" "lose"
[80475] "1-4" "defending"
[80477] "champions" "Great"
[80479] "Britain" "third"
[80481] "consecutive" "preliminary"
[80483] "stage" "defeat"
[80485] "reduces" "side's"
[80487] "chances" "qualifying"
[80489] "Olympic" "quarterfinals"
[80491] "Indians" "guilty"
[80493] "wasting" "opportunities"
[80495] "first" "two"
[80497] "games" "trend"
[80499] "continued" "Wednesday"
[80501] "Oi" "Hockey"
[80503] "Stadium" "Great"
[80505] "Britain" "punished"
[80507] "strikes" "Hannah"
[80509] "Martin" "2nd"
[80511] "19th" "minute"
[80513] "Lily" "Owsley"
[80515] "41st" "minute"
[80517] "Grace" "Balsdon"
[80519] "57th" "minute"
[80521] "Great" "Britain's"
[80523] "second" "consecutive"
[80525] "win" "Pool"
[80527] "India" "Sharmila"
[80529] "Devi" "scored"
[80531] "lone" "goal"
[80533] "23rd" "minute"
[80535] "Indians" "needed"
[80537] "least" "point"
[80539] "game" "safe"
[80541] "now" "win"
[80543] "remaining" "two"
[80545] "matches" "chance"
[80547] "qualifying" "knockout"
[80549] "stage" "Rowing"
[80551] "Arjun" "Arvind"
[80553] "fail" "qualify"
[80555] "medal" "round"
[80557] "Indian" "rowers"
[80559] "Arjun" "Lal"
[80561] "Jat" "Arvind"
[80563] "Singh" "failed"
[80565] "qualify" "men's"
[80567] "lightweight" "double"
[80569] "sculls" "final"
[80571] "finishing" "sixth"
[80573] "last" "second"
[80575] "semifinal" "Arjun"
[80577] "Arvind" "clocked"
[80579] "6" "24.41"
[80581] "finish" "last"
[80583] "six-team" "semifinal"
[80585] "2" "Sea"
[80587] "Forest" "Waterway"
[80589] "top" "three"
[80591] "pairs" "two"
[80593] "semifinals" "qualify"
[80595] "final" "Arjun"
[80597] "Arvind" "however"
[80599] "produced" "best-ever"
[80601] "Olympic" "performance"
[80603] "Indian" "rowers"
[80605] "reaching" "semifinals"
[80607] "finish" "least"
[80609] "12th" "spot"
[80611] "Arjun" "assumes"
[80613] "role" "bower"
[80615] "Arvind" "team's"
[80617] "stroker" "two"
[80619] "finished" "fifth"
[80621] "heats" "Saturday"
[80623] "event" "includes"
[80625] "two" "rowers"
[80627] "scull" "boat"
[80629] "using" "two"
[80631] "oars" "long"
[80633] "narrow" "broadly"
[80635] "semi-circular" "cross-section"
[80637] "boats" "help"
[80639] "reduce" "drag"
[80641] "Sailing" "KC"
[80643] "Ganapathy" "Varun"
[80645] "Thakkar" "languish"
[80647] "Indian" "pair"
[80649] "K" "Ganapathy"
[80651] "Varun" "Thakkar"
[80653] "languished" "18th"
[80655] "four" "races"
[80657] "men's" "skiff"
[80659] "49er" "sailing"
[80661] "event" "Indian"
[80663] "duo" "finished"
[80665] "18th" "17th"
[80667] "19th" "three"
[80669] "races" "Wednesday"
[80671] "finished" "18th"
[80673] "first" "race"
[80675] "Tuesday" "19-team"
[80677] "race" "Enoshima"
[80679] "Yacht" "Harbour"
[80681] "Eight" "races"
[80683] "medal" "round"
[80685] "remain" "competition"
[80687] "Tuesday" "Vishnu"
[80689] "Saravanan" "Nethra"
[80691] "Kumanan" "finished"
[80693] "way" "behind"
[80695] "leaders" "ending"
[80697] "22nd" "33rd"
[80699] "spot" "respective"
[80701] "events" "six"
[80703] "races" "Saravanan"
[80705] "finished" "23rd"
[80707] "22nd" "fifth"
[80709] "sixth" "race"
[80711] "men's" "laser"
[80713] "event" "Kumanan"
[80715] "32nd" "38th"
[80717] "two" "races"
[80719] "women's" "laser"
[80721] "radial" "event"
[80723] "Classification" "Language"
[80725] "ENGLISH" "Publication-Type"
[80727] "Newspaper" "Body"
[80729] "Soon" "men"
[80731] "entered" "semi-final"
[80733] "clash" "Belgium"
[80735] "time" "women"
[80737] "make" "history"
[80739] "Indian" "women's"
[80741] "hockey" "team"
[80743] "defeated" "mighty"
[80745] "Australia" "1-0"
[80747] "book" "semi-final"
[80749] "berth" "Soon"
[80751] "men" "entered"
[80753] "semi-final" "clash"
[80755] "Belgium" "time"
[80757] "women" "make"
[80759] "history" "Indian"
[80761] "women's" "hockey"
[80763] "team" "defeated"
[80765] "mighty" "Australia"
[80767] "1-0" "book"
[80769] "semi-final" "berth"
[80771] "Gurjit" "Kaur"
[80773] "scored" "lone"
[80775] "goal" "match"
[80777] "first" "half"
[80779] "penalty" "corner"
[80781] "Soon" "ladies"
[80783] "became" "household"
[80785] "name" "win"
[80787] "first" "time"
[80789] "eves" "entered"
[80791] "semi-finals" "big"
[80793] "tournament" "face"
[80795] "Argentina" "maiden"
[80797] "Olympic" "semi-final"
[80799] "last" "time"
[80801] "women" "made"
[80803] "first" "Olympic"
[80805] "appearance" "1980"
[80807] "Games" "Moscow"
[80809] "second" "Olympic"
[80811] "appearance" "2016"
[80813] "Olympics" "Rio"
[80815] "de" "Janeiro"
[80817] "Argentina" "vs"
[80819] "India" "women's"
[80821] "hockey" "semi-final"
[80823] "match" "start"
[80825] "Argentina" "vs"
[80827] "India" "women's"
[80829] "hockey" "semi-final"
[80831] "match" "begin"
[80833] "3" "30"
[80835] "PM" "IST"
[80837] "Wednesday" "August"
[80839] "4" "Argentina"
[80841] "vs" "India"
[80843] "women's" "hockey"
[80845] "semi-final" "match"
[80847] "played" "Argentina"
[80849] "vs" "India"
[80851] "women's" "hockey"
[80853] "semi-final" "match"
[80855] "played" "Oi"
[80857] "Hockey" "Stadium"
[80859] "North" "Pitch"
[80861] "Tokyo" "Japan"
[80863] "TV" "channels"
[80865] "broadcast" "Argentina"
[80867] "vs" "India"
[80869] "women's" "hockey"
[80871] "semi-final" "match"
[80873] "Argentina" "vs"
[80875] "India" "women's"
[80877] "hockey" "semi-final"
[80879] "matchwill" "broadcast"
[80881] "Sony" "Sports"
[80883] "Network" "India"
[80885] "watch" "live"
[80887] "streaming" "Argentina"
[80889] "vs" "India"
[80891] "women's" "hockey"
[80893] "semi-final" "match"
[80895] "Fans" "can"
[80897] "catch" "live"
[80899] "streaming" "theIndia"
[80901] "vs" "Belgiummen's"
[80903] "hockey" "semi-final"
[80905] "matchon" "SonyLIV"
[80907] "website" "SonyLIV"
[80909] "app" "India"
[80911] "Classification" "Language"
[80913] "ENGLISH" "Publication-Type"
[80915] "Newspaper" "Body"
[80917] "India" "July"
[80919] "23" "dared"
[80921] "dream" "big"
[80923] "inspite" "humble"
[80925] "beginnings" "MC"
[80927] "Mary" "Kom"
[80929] "says" "towards"
[80931] "end" "slim"
[80933] "autobiography" "Unbreakable"
[80935] "book" "published"
[80937] "2013" "Mary"
[80939] "mother" "three"
[80941] "Indian" "woman"
[80943] "boxer" "Olympic"
[80945] "medal" "also"
[80947] "five-time" "world"
[80949] "champion" "goals"
[80951] "farmland" "father"
[80953] "SUV" "parents"
[80955] "boxing" "academy"
[80957] "job" "sports"
[80959] "quota" "house"
[80961] "achieved" "Soon"
[80963] "biopic" "released"
[80965] "inspire" "Iranian"
[80967] "Sadaf" "Khadem"
[80969] "make" "boxing"
[80971] "calling" "even"
[80973] "meant" "living"
[80975] "exile" "thought"
[80977] "reason" "enough"
[80979] "Mary" "stop"
[80981] "taking" "punches"
[80983] "stop" "punishing"
[80985] "body" "check"
[80987] "video" "Olympic"
[80989] "channel" "got"
[80991] "ticket" "Tokyo"
[80993] "Sweat" "shining"
[80995] "Mary" "shrills"
[80997] "delight" "takes"
[80999] "step" "back"
[81001] "presses" "ticket"
[81003] "forehead" "kissing"
[81005] "eyes" "growing"
[81007] "wider" "points"
[81009] "still-taped" "hands"
[81011] "ticket" "exclaims"
[81013] "long" "long"
[81015] "long" "long"
[81017] "working" "hard"
[81019] "Thank" "much"
[81021] "deserve" "deserve"
[81023] "think" "difficult"
[81025] "disagree" "five"
[81027] "years" "split"
[81029] "decision" "Germany's"
[81031] "Azize" "Nimani"
[81033] "robbed" "chance"
[81035] "play" "Rio"
[81037] "2016" "Mary"
[81039] "stop" "dreaming"
[81041] "Nikhat" "Zareen"
[81043] "became" "national"
[81045] "champion" "51kg"
[81047] "category" "demanded"
[81049] "fair" "trial"
[81051] "ahead" "Olympic"
[81053] "qualifiers" "2020"
[81055] "Mary" "beat"
[81057] "9-1" "showing"
[81059] "Zareen" "may"
[81061] "well" "future"
[81063] "yet" "past"
[81065] "battled" "dengue"
[81067] "hard" "lockdowns"
[81069] "long" "stretches"
[81071] "training" "last"
[81073] "year" "trained"
[81075] "mastitis" "twins"
[81077] "born" "2007"
[81079] "stayed" "away"
[81081] "newborns" "months"
[81083] "got" "older"
[81085] "ask" "Mary"
[81087] "come" "home"
[81089] "one" "night"
[81091] "two" "nights"
[81093] "said" "yo-yoed"
[81095] "weight" "categories"
[81097] "48kg" "2001"
[81099] "45kg" "2002-08"
[81101] "48kg" "2010"
[81103] "51kg" "since"
[81105] "2012" "wanted"
[81107] "best" "without"
[81109] "undermining" "record"
[81111] "six" "world"
[81113] "titles" "addition"
[81115] "silver" "bronze"
[81117] "five" "Asian"
[81119] "Championship" "gold"
[81121] "two" "silver"
[81123] "Asian" "Games"
[81125] "gold" "bronze"
[81127] "Commonwealth" "Games"
[81129] "gold" "best"
[81131] "Mary" "means"
[81133] "Olympic" "gold"
[81135] "way" "since"
[81137] "August" "13"
[81139] "2009" "International"
[81141] "Olympic" "Committee"
[81143] "announced" "women's"
[81145] "boxing" "Olympic"
[81147] "sport" "2012"
[81149] "Games" "Citing"
[81151] "Mary's" "success"
[81153] "part" "pitch"
[81155] "AIBA" "boxing's"
[81157] "apex" "body"
[81159] "world" "champion"
[81161] "able" "fight"
[81163] "Olympics" "value"
[81165] "keeps" "hungry"
[81167] "Olympic" "gold"
[81169] "win" "think"
[81171] "satisfied" "Mary"
[81173] "now" "mother"
[81175] "four" "39"
[81177] "November" "said"
[81179] "among" "five"
[81181] "Indian" "women"
[81183] "Olympic" "medals"
[81185] "Saina" "Nehwal"
[81187] "Karnam" "Malleswari"
[81189] "PV" "Sindhu"
[81191] "Sakshi" "Malik"
[81193] "others" "one"
[81195] "struck" "gold"
[81197] "Hence" "whoop"
[81199] "Amman" "March"
[81201] "2020" "beating"
[81203] "Irish" "Magno"
[81205] "Philippines" "5-0"
[81207] "seal" "semi-final"
[81209] "berth" "Asian"
[81211] "qualifiers" "one"
[81213] "helped" "Mary"
[81215] "qualify" "second"
[81217] "Olympics" "Maybe"
[81219] "things" "different"
[81221] "India" "gave"
[81223] "equal" "value"
[81225] "world" "titles"
[81227] "Olympic" "bronze"
[81229] "first" "medal"
[81231] "fetched" "Mary"
[81233] "job" "constable"
[81235] "Manipur" "police"
[81237] "department" "refused"
[81239] "till" "second"
[81241] "world" "title"
[81243] "2005" "Mary"
[81245] "offered" "sub-inspector's"
[81247] "post" "made"
[81249] "podium" "London"
[81251] "Mary" "became"
[81253] "Superintendent" "Police"
[81255] "Rajya" "Sabha"
[81257] "member" "got"
[81259] "land" "academy"
[81261] "like" "Muhammad"
[81263] "Ali" "Mary"
[81265] "gone" "Tokyo"
[81267] "aiming" "whup'em"
[81269] "Friday's" "opening"
[81271] "ceremony" "men's"
[81273] "hockey" "captain"
[81275] "Manpreet" "Singh"
[81277] "India's" "flag-bearers"
[81279] "Mary's" "story"
[81281] "began" "Kangathei"
[81283] "village" "near"
[81285] "Imphal" "father"
[81287] "wrestler" "abandoned"
[81289] "idea" "taking"
[81291] "sport" "seriously"
[81293] "life" "hard"
[81295] "moved" "ancestral"
[81297] "place" "Sagang"
[81299] "Khapui" "one"
[81301] "less" "mouth"
[81303] "feed" "school"
[81305] "distance" "away"
[81307] "days" "childhood"
[81309] "long" "ploughing"
[81311] "fields" "buffalos"
[81313] "lifting" "sacks"
[81315] "rice" "heavy"
[81317] "farming" "tools"
[81319] "carrying" "water"
[81321] "across" "long"
[81323] "distances" "going"
[81325] "hill" "collect"
[81327] "firewood" "prepared"
[81329] "life" "ring"
[81331] "warrior" "said"
[81333] "tough" "background"
[81335] "strength" "stamina"
[81337] "continue" "strong"
[81339] "points" "fight"
[81341] "bigger" "opponents"
[81343] "ring" "says"
[81345] "book" "Nicola"
[81347] "Adams" "two-time"
[81349] "Olympic" "champion"
[81351] "Britain" "beat"
[81353] "Mary" "2012"
[81355] "took" "sport"
[81357] "got" "curious"
[81359] "mother" "went"
[81361] "gymnasium" "also"
[81363] "held" "boxing"
[81365] "classes" "Mary"
[81367] "got" "hooked"
[81369] "combination" "early"
[81371] "exposure" "martial"
[81373] "arts" "films"
[81375] "late" "Dingko"
[81377] "Singh" "winning"
[81379] "54kg" "gold"
[81381] "1998" "Asian"
[81383] "Games" "women's"
[81385] "boxing" "exhibition"
[81387] "Imphal" "chance"
[81389] "meeting" "boxer"
[81391] "Rebika" "Chiru"
[81393] "took" "famous"
[81395] "coach" "Ibomcha"
[81397] "Singh" "want"
[81399] "coach" "said"
[81401] "Mary" "adding"
[81403] "Ibomcha" "possibly"
[81405] "taken" "aback"
[81407] "bold" "approach"
[81409] "journey" "husband"
[81411] "Onler" "held"
[81413] "hand" "Mary"
[81415] "calls" "friend"
[81417] "partner" "soulmate"
[81419] "extraordinarily" "graceful"
[81421] "night-time" "parent"
[81423] "book" "reason"
[81425] "medal" "hauls"
[81427] "continued" "marriage"
[81429] "putting" "end"
[81431] "doomsday" "predictions"
[81433] "end" "career"
[81435] "says" "Mary"
[81437] "lesson" "juggling"
[81439] "motherhood" "promotional"
[81441] "commitments" "boxing"
[81443] "Onler" "put"
[81445] "life" "hold"
[81447] "manage" "everything"
[81449] "else" "opponents"
[81451] "World" "champion"
[81453] "Liliya" "Aetbaeva"
[81455] "Russia" "qualified"
[81457] "Tokyo" "silver"
[81459] "medallist" "Buse"
[81461] "Naz" "Cakiroglu"
[81463] "Turkey" "Cakiroglu"
[81465] "lost" "five"
[81467] "times" "since"
[81469] "2016" "Games"
[81471] "beat" "Mary"
[81473] "semi-final" "2019"
[81475] "world" "championship"
[81477] "Virginia" "Fuchs"
[81479] "USA" "defeated"
[81481] "Mary" "twice"
[81483] "also" "Ingrit"
[81485] "Valencia" "Colombia"
[81487] "lost" "Mary"
[81489] "2019" "world"
[81491] "championship" "quarter-final"
[81493] "among" "top"
[81495] "contenders" "Cakiroglu"
[81497] "25" "Fuchs"
[81499] "33" "Valencia"
[81501] "32" "referring"
[81503] "Floyd" "Mayweather"
[81505] "beating" "Canelo"
[81507] "Alvarez" "September"
[81509] "2013" "Adams"
[81511] "interview" "Guardian"
[81513] "spoke" "older"
[81515] "skillful" "won"
[81517] "just" "smarts"
[81519] "outmanoeuvre" "younger"
[81521] "guy" "Among"
[81523] "Mary's" "favourite"
[81525] "lines" "Bible"
[81527] "know" "race"
[81529] "runners" "run"
[81531] "one" "gets"
[81533] "prize" "Run"
[81535] "way" "get"
[81537] "prize" "Corinthinas"
[81539] "9" "24"
[81541] "discount" "Mary"
[81543] "world" "3"
[81545] "peril" "even"
[81547] "fulfill" "expectations"
[81549] "even" "returns"
[81551] "without" "medal"
[81553] "remain" "standard-bearer"
[81555] "women's" "boxing"
[81557] "India" "One"
[81559] "absence" "history"
[81561] "reference" "forged"
[81563] "path" "girls"
[81565] "boxing" "sport"
[81567] "now" "also"
[81569] "Mary" "continues"
[81571] "inspire" "almost"
[81573] "two" "decades"
[81575] "becoming" "world"
[81577] "champion" "first"
[81579] "time" "Published"
[81581] "HT" "Digital"
[81583] "Content" "Services"
[81585] "permission" "Hindustan"
[81587] "Times" "query"
[81589] "respect" "article"
[81591] "content" "requirement"
[81593] "please" "contact"
[81595] "Editor" "Classification"
[81597] "Language" "ENGLISH"
[81599] "Publication-Type" "Newswire"
[81601] "Body" "New"
[81603] "Delhi" "Aug"
[81605] "7" "Indian"
[81607] "airliner" "IndiGo"
[81609] "today" "announced"
[81611] "offer" "unlimited"
[81613] "free" "travel"
[81615] "Gold" "Medallist"
[81617] "Neeraj" "Chopra"
[81619] "period" "one"
[81621] "year" "comes"
[81623] "recognition" "Neeraj"
[81625] "Chopra" "winning"
[81627] "Gold" "Medal"
[81629] "Tokyo" "Olympics"
[81631] "2020" "finals"
[81633] "Men's" "javelin"
[81635] "throw" "offer"
[81637] "applicable" "August"
[81639] "8" "2021"
[81641] "till" "August"
[81643] "7" "2022"
[81645] "Ronojoy" "Dutta"
[81647] "Whole-time" "Director"
[81649] "Chief" "Executive"
[81651] "Officer" "IndiGo"
[81653] "said" "Neeraj"
[81655] "overjoyed" "hear"
[81657] "remarkable" "achievement"
[81659] "made" "country"
[81661] "proud" "andI"
[81663] "know" "IndiGo"
[81665] "employees" "truly"
[81667] "honored" "welcome"
[81669] "onboard" "one"
[81671] "flights" "humility"
[81673] "like" "offer"
[81675] "free" "flights"
[81677] "IndiGo" "year"
[81679] "shown" "us"
[81681] "hard" "work"
[81683] "resilience" "passion"
[81685] "can" "achieve"
[81687] "sure" "torch"
[81689] "bearer" "future"
[81691] "Indian" "athletes"
[81693] "Well" "done"
[81695] "Neeraj" "Chopra"
[81697] "Saturday" "became"
[81699] "second" "Indian"
[81701] "win" "individual"
[81703] "gold" "Olympics"
[81705] "outperforming" "field"
[81707] "distance" "immortalise"
[81709] "first" "track-and-field"
[81711] "Games" "medal-winner"
[81713] "country" "Chopra"
[81715] "23-year-old" "son"
[81717] "farmer" "Khandra"
[81719] "village" "near"
[81721] "Panipat" "Haryana"
[81723] "produced" "second"
[81725] "round" "throw"
[81727] "87.58m" "finals"
[81729] "stun" "athletics"
[81731] "world" "end"
[81733] "India's" "100-year"
[81735] "wait" "track"
[81737] "field" "medal"
[81739] "Olympics" "Published"
[81741] "HT" "Digital"
[81743] "Content" "Services"
[81745] "permission" "MINT"
[81747] "query" "respect"
[81749] "article" "content"
[81751] "requirement" "please"
[81753] "contact" "Editor"
[81755] "Classification" "Language"
[81757] "ENGLISH" "Publication-Type"
[81759] "Newspaper" "Body"
[81761] "early" "Diwali"
[81763] "yesterday" "India's"
[81765] "greatest" "festival"
[81767] "still" "months"
[81769] "away" "nation"
[81771] "forgot" "Covid"
[81773] "lockdown" "day"
[81775] "probably" "days"
[81777] "come" "Indian"
[81779] "men's" "hockey"
[81781] "team" "rewrote"
[81783] "history" "claiming"
[81785] "Olympic" "medal"
[81787] "41" "years"
[81789] "brave" "men"
[81791] "defeated" "plucky"
[81793] "German" "side"
[81795] "5-4" "win"
[81797] "bronze" "edge-of-the-seat"
[81799] "play-off" "match"
[81801] "Tokyo" "Games"
[81803] "eight-time" "former"
[81805] "gold-winners" "battled"
[81807] "heartbreaking" "slump"
[81809] "last" "four"
[81811] "decades" "made"
[81813] "resurgence" "last"
[81815] "couple" "years"
[81817] "count" "best"
[81819] "way" "possible"
[81821] "Olympic" "medal"
[81823] "bronze" "worth"
[81825] "weight" "gold"
[81827] "sheer" "emotion"
[81829] "nostalgia" "hockey"
[81831] "invokes" "country"
[81833] "became" "India's"
[81835] "fifth" "medal"
[81837] "ongoing" "Games"
[81839] "Simranjeet" "Singh"
[81841] "17th" "34th"
[81843] "minutes" "scored"
[81845] "brace" "Hardik"
[81847] "Singh" "27th"
[81849] "Harmanpreet" "Singh"
[81851] "29th" "Rupinder"
[81853] "Pal" "Singh"
[81855] "31st" "goal-getters"
[81857] "world" "3"
[81859] "India" "Germany's"
[81861] "goals" "scored"
[81863] "Timur" "Oruz"
[81865] "2nd" "Niklas"
[81867] "Wellen" "24th"
[81869] "Benedikt" "Furk"
[81871] "25th" "Lukas"
[81873] "Windfeder" "48th"
[81875] "Determined" "clinch"
[81877] "medal" "Indians"
[81879] "made" "one"
[81881] "memorable" "comebacks"
[81883] "history" "game"
[81885] "fighting" "back"
[81887] "two-goal" "deficit"
[81889] "turn" "match"
[81891] "favour" "1-3"
[81893] "thanks" "defensive"
[81895] "lapses" "tears"
[81897] "hugs" "field"
[81899] "Indians" "led"
[81901] "Manpreet" "Singh"
[81903] "coached" "Australian"
[81905] "Graham" "Reid"
[81907] "savoured" "historic"
[81909] "moment" "India's"
[81911] "third" "hockey"
[81913] "bronze" "medal"
[81915] "history" "Olympics"
[81917] "two" "came"
[81919] "1968" "Mexico"
[81921] "City" "1972"
[81923] "Munich" "Games"
[81925] "country" "now"
[81927] "12" "Olympic"
[81929] "medals" "eight"
[81931] "gold" "making"
[81933] "successful" "showpiece"
[81935] "final" "whistle"
[81937] "sounded" "celebrations"
[81939] "broke" "across"
[81941] "country" "Prime"
[81943] "Minister" "phone"
[81945] "congratulating" "players"
[81947] "sportspersons" "across"
[81949] "disciplines" "including"
[81951] "Indian" "cricket"
[81953] "stars" "England"
[81955] "tweeted" "congratulatory"
[81957] "messages" "proud"
[81959] "moment" "us"
[81961] "said" "defender"
[81963] "Harmanpreet" "Singh"
[81965] "big" "thing"
[81967] "win" "Olympic"
[81969] "medal" "made"
[81971] "lot" "sacrifices"
[81973] "Bengaluru" "one-and-a-half"
[81975] "years" "lockdown"
[81977] "focussed" "staying"
[81979] "strong" "mentally"
[81981] "said" "Classification"
[81983] "Language" "ENGLISH"
[81985] "Publication-Type" "Newspaper"
[81987] "Body" "1995"
[81989] "research" "paper"
[81991] "psychologists" "studying"
[81993] "counterfactual" "thinking"
[81995] "analysed" "video"
[81997] "footage" "1992"
[81999] "Barcelona" "Games"
[82001] "deduce" "knowledge"
[82003] "almost" "winning"
[82005] "Gold" "medal"
[82007] "ruined" "moment"
[82009] "silver" "medallist"
[82011] "bronze" "winner"
[82013] "contented" "thought"
[82015] "least" "won"
[82017] "medal" "newspaper"
[82019] "interview" "gave"
[82021] "almost" "70"
[82023] "years" "clinched"
[82025] "silver" "medal"
[82027] "Stockholm" "Olympics"
[82029] "1912" "mid-distance"
[82031] "American" "runner"
[82033] "Abel" "Kiviat"
[82035] "described" "race"
[82037] "nightmare" "silver"
[82039] "medal" "come"
[82041] "photo-finish" "first"
[82043] "Olympic" "history"
[82045] "just" "got"
[82047] "past" "fellow"
[82049] "American" "Norman"
[82051] "Taber" "1500m"
[82053] "race" "race"
[82055] "biggest" "disappointment"
[82057] "life" "never"
[82059] "saw" "Jackson"
[82061] "said" "referring"
[82063] "Great" "Britain's"
[82065] "Arnold" "Jackson"
[82067] "secured" "slimmest"
[82069] "margin" "0.1"
[82071] "seconds" "wake"
[82073] "sometimes" "say"
[82075] "heck" "happened"
[82077] "Kiviat" "said"
[82079] "Kiviat" "died"
[82081] "1991" "showed"
[82083] "disappointment" "losing"
[82085] "narrowly" "lingers"
[82087] "exception" "regard"
[82089] "silver" "medallists"
[82091] "end" "tormenting"
[82093] "imagining" "alternative"
[82095] "possibility" "pushed"
[82097] "little" "harder"
[82099] "Ravi" "Kumar"
[82101] "Dahiya" "Indian"
[82103] "wrestler" "secured"
[82105] "silver" "medal"
[82107] "India" "57"
[82109] "kg" "freestyle"
[82111] "Thursday" "ongoing"
[82113] "Tokyo" "Olympics"
[82115] "voiced" "similar"
[82117] "disappointment" "point"
[82119] "come" "one"
[82121] "target" "gold"
[82123] "medal" "silver"
[82125] "medal" "okay"
[82127] "gold" "told"
[82129] "reporters" "1995"
[82131] "research" "paper"
[82133] "published" "psychologists"
[82135] "Victoria" "Medvec"
[82137] "Thomas" "Gilovich"
[82139] "Cornell" "Scott"
[82141] "F" "Madey"
[82143] "University" "Toledo"
[82145] "answer" "silver"
[82147] "medallists" "may"
[82149] "feeling" "way"
[82151] "studied" "phenomenon"
[82153] "conclude" "happiness"
[82155] "scale" "silver"
[82157] "medallists" "fair"
[82159] "poorly" "owing"
[82161] "human" "tendency"
[82163] "indulge" "counterfactual"
[82165] "thinking" "propensity"
[82167] "think" "alternative"
[82169] "circumstances" "real-life"
[82171] "events" "especially"
[82173] "far-ranging" "consequences"
[82175] "study" "Less"
[82177] "Counterfactual" "Thinking"
[82179] "Satisfaction" "Among"
[82181] "Olympic" "Medallists"
[82183] "deduced" "bronze"
[82185] "medallists" "score"
[82187] "much" "better"
[82189] "happiness" "scale"
[82191] "compared" "silver"
[82193] "medallists" "outperformed"
[82195] "game" "Medvec"
[82197] "colleagues" "analysed"
[82199] "visible" "expressions"
[82201] "bronze" "silver"
[82203] "medal-winning" "athletes"
[82205] "1992" "Summer"
[82207] "Olympics" "immediately"
[82209] "finish" "event"
[82211] "winners" "stood"
[82213] "medal" "stand"
[82215] "study" "aimed"
[82217] "determine" "counterfactual"
[82219] "thinking" "psychology"
[82221] "coming" "close"
[82223] "affects" "feeling"
[82225] "satisfaction" "degree"
[82227] "well-being" "Medvec"
[82229] "et" "al"
[82231] "chose" "domain"
[82233] "athletic" "competition"
[82235] "outcomes" "study"
[82237] "subject" "throws"
[82239] "results" "unusual"
[82241] "precision" "competitors"
[82243] "finishing" "first"
[82245] "second" "third"
[82247] "fractional" "difference"
[82249] "earning" "distinctly"
[82251] "different" "rewards"
[82253] "gold" "silver"
[82255] "bronze" "medals"
[82257] "interested" "whether"
[82259] "effects" "different"
[82261] "counterfactual" "comparisons"
[82263] "sufficiently" "strong"
[82265] "cause" "people"
[82267] "objectively" "worse"
[82269] "sometimes" "feel"
[82271] "better" "superior"
[82273] "state" "Moreover"
[82275] "interested" "just"
[82277] "documenting" "isolated"
[82279] "episodes" "might"
[82281] "happen" "identifying"
[82283] "specific" "situation"
[82285] "occurs" "regularity"
[82287] "predictability" "domain"
[82289] "chose" "investigate"
[82291] "athletic" "competition"
[82293] "said" "Medvec"
[82295] "colleagues" "paper"
[82297] "published" "Journal"
[82299] "Personality" "Social"
[82301] "Psychology" "part"
[82303] "study" "researchers"
[82305] "collated" "video"
[82307] "footage" "Barcelona"
[82309] "Olympic" "Games"
[82311] "held" "three"
[82313] "years" "ago"
[82315] "edited" "three"
[82317] "different" "master"
[82319] "tapes" "One"
[82321] "showed" "medallists"
[82323] "reaction" "immediately"
[82325] "results" "announced"
[82327] "another" "showed"
[82329] "receiving" "medals"
[82331] "stand" "third"
[82333] "one" "comprised"
[82335] "interviews" "gave"
[82337] "media" "persons"
[82339] "performance" "first"
[82341] "study" "university"
[82343] "students" "blind"
[82345] "results" "asked"
[82347] "judge" "immediate"
[82349] "reaction" "41"
[82351] "athletes" "10-point"
[82353] "agony" "ecstasy"
[82355] "scale" "assessing"
[82357] "athletes" "reactions"
[82359] "silver" "medallists"
[82361] "received" "mean"
[82363] "rating" "4.8"
[82365] "bronze" "medallists"
[82367] "received" "mean"
[82369] "rating" "7.1"
[82371] "happiness" "scale"
[82373] "examining" "athletes"
[82375] "reaction" "medal"
[82377] "stand" "participants"
[82379] "assigned" "bronze"
[82381] "medallists" "mean"
[82383] "rating" "5.7"
[82385] "4.3" "silver"
[82387] "medallists" "second"
[82389] "part" "study"
[82391] "participants" "reviewed"
[82393] "television" "interviews"
[82395] "22" "silver"
[82397] "bronze" "medallists"
[82399] "see" "predominant"
[82401] "feeling" "expressed"
[82403] "athlete" "happy"
[82405] "achieved" "preoccupied"
[82407] "feeling" "regret"
[82409] "participants" "judged"
[82411] "expressed" "feelings"
[82413] "10-point" "scale"
[82415] "least" "one"
[82417] "end" "almost"
[82419] "found" "silver"
[82421] "medallists" "focused"
[82423] "almost" "bronze"
[82425] "medallists" "expressed"
[82427] "feeling" "achievement"
[82429] "satisfaction" "getting"
[82431] "medal" "Participants"
[82433] "assigned" "silver"
[82435] "medallists" "thoughts"
[82437] "average" "rating"
[82439] "5.7" "bronze"
[82441] "medallists" "average"
[82443] "rating" "4.4"
[82445] "10-point" "least"
[82447] "almost" "scale"
[82449] "Explaining" "findings"
[82451] "researchers" "wrote"
[82453] "silver" "medallist"
[82455] "vivid" "counterfactual"
[82457] "thoughts" "often"
[82459] "focused" "nearly"
[82461] "winning" "gold"
[82463] "Second" "place"
[82465] "one" "step"
[82467] "away" "cherished"
[82469] "gold" "medal"
[82471] "attendant" "social"
[82473] "financial" "rewards"
[82475] "Thus" "whatever"
[82477] "joy" "silver"
[82479] "medallist" "may"
[82481] "feel" "often"
[82483] "tempered" "tortuous"
[82485] "thoughts" "might"
[82487] "lengthened" "stride"
[82489] "adjusted" "breathing"
[82491] "pointed" "toes"
[82493] "bronze" "medallist"
[82495] "contrast" "compelling"
[82497] "counterfactual" "alternative"
[82499] "often" "coming"
[82501] "fourth" "place"
[82503] "showers" "instead"
[82505] "medal" "stand"
[82507] "Social" "psychologists"
[82509] "long" "held"
[82511] "individual's" "wellbeing"
[82513] "given" "circumstance"
[82515] "depends" "circumstances"
[82517] "compare" "tends"
[82519] "compare" "counterfactual"
[82521] "thinking" "also"
[82523] "functional" "value"
[82525] "ruin" "happiness"
[82527] "thinking" "missed"
[82529] "opportunity" "often"
[82531] "strive" "improve"
[82533] "future" "performances"
[82535] "Downward" "comparisons"
[82537] "i.e" "thinking"
[82539] "worse" "outcome"
[82541] "thought" "provide"
[82543] "comfort" "whereas"
[82545] "upward" "comparisons"
[82547] "i.e" "thinking"
[82549] "better" "outcome"
[82551] "thought" "improve"
[82553] "future" "performance"
[82555] "Indeed" "shown"
[82557] "people" "expect"
[82559] "perform" "future"
[82561] "likely" "generate"
[82563] "upward" "counterfactuals"
[82565] "expect" "move"
[82567] "said" "study"
[82569] "Three" "researchers"
[82571] "repeated" "experiment"
[82573] "2016" "Summer"
[82575] "Olympic" "Game"
[82577] "confirmed" "counterfactual"
[82579] "thoughts" "higher"
[82581] "among" "silver"
[82583] "medallists" "bronze"
[82585] "winners" "however"
[82587] "found" "differences"
[82589] "expressed" "emotion"
[82591] "trivial" "negligible"
[82593] "Classification" "Language"
[82595] "ENGLISH" "Publication-Type"
[82597] "Newspaper" "Body"
[82599] "Angad" "Vir"
[82601] "Singh" "Bajwa"
[82603] "missed" "two"
[82605] "targets" "75"
[82607] "placed" "11th"
[82609] "countback" "Men's"
[82611] "Skeet" "top-six"
[82613] "finals" "spot"
[82615] "well" "sight"
[82617] "Competing" "Asaka"
[82619] "Shooting" "range"
[82621] "Sunday" "Angad"
[82623] "scores" "25,24,24"
[82625] "first" "three"
[82627] "series" "come"
[82629] "back" "Monday"
[82631] "shoot" "final"
[82633] "two" "series"
[82635] "qualifying" "Compatriot"
[82637] "Mairaj" "Ahmad"
[82639] "Khan" "shot"
[82641] "71" "placed"
[82643] "25th" "30"
[82645] "shooters" "fray"
[82647] "Men's" "Skeet"
[82649] "event" "Indian"
[82651] "interest" "shooting"
[82653] "Tokyo" "Olympics"
[82655] "Monday" "finals"
[82657] "scheduled" "12.20"
[82659] "pm" "IST"
[82661] "Earlier" "Sunday"
[82663] "India's" "ace"
[82665] "shooters" "Deepak"
[82667] "Kumar" "Divyansh"
[82669] "Singh" "Panwar"
[82671] "failed" "qualify"
[82673] "medal" "round"
[82675] "Men's" "10m"
[82677] "Air" "Rifle"
[82679] "Qualification" "finishing"
[82681] "26th" "32nd"
[82683] "respectively" "Asaka"
[82685] "Shooting" "Range"
[82687] "Deepak" "Kumar"
[82689] "accumulated" "624.7"
[82691] "points" "average"
[82693] "10.412" "shooting"
[82695] "60" "shots"
[82697] "target" "Divyansh"
[82699] "Singh" "Panwar"
[82701] "gathered" "622.8"
[82703] "points" "qualifications"
[82705] "end" "just"
[82707] "good" "enough"
[82709] "make" "8-player"
[82711] "final" "Earlier"
[82713] "Manu" "Bhaker"
[82715] "Yashaswini" "Singh"
[82717] "Deswal" "also"
[82719] "failed" "qualify"
[82721] "medal" "round"
[82723] "finishing" "12th"
[82725] "13th" "respectively"
[82727] "Women's" "10m"
[82729] "Air" "Pistol"
[82731] "Qualification" "world"
[82733] "number" "two"
[82735] "Manu" "Bhaker"
[82737] "amassed" "575"
[82739] "points" "average"
[82741] "9.583" "shooting"
[82743] "60" "shots"
[82745] "target" "world"
[82747] "number" "one"
[82749] "Yashaswini" "Singh"
[82751] "Deswal" "gathered"
[82753] "574" "qualifications"
[82755] "Classification" "Language"
[82757] "ENGLISH" "Publication-Type"
[82759] "Newspaper" "Body"
[82761] "Neeraj" "Chopra"
[82763] "23" "inducted"
[82765] "Indian" "Army"
[82767] "elite" "sports"
[82769] "quota" "2016"
[82771] "rank" "Naib"
[82773] "Subedar" "joined"
[82775] "4" "Rajputana"
[82777] "Rifles" "parent"
[82779] "unit" "Officials"
[82781] "trainers" "Pune-based"
[82783] "Army" "Sports"
[82785] "Institute" "ASI"
[82787] "India's" "Olympics"
[82789] "gold" "medalist"
[82791] "javelin" "thrower"
[82793] "Neeraj" "Chopra"
[82795] "received" "sizeable"
[82797] "amount" "coaching"
[82799] "training" "administrative"
[82801] "support" "believe"
[82803] "Chopra's" "victory"
[82805] "Saturday" "just"
[82807] "motivating" "factor"
[82809] "future" "athletes"
[82811] "India" "Indian"
[82813] "Armed" "Forces"
[82815] "also" "fitting"
[82817] "tribute" "Milkha"
[82819] "Singh" "also"
[82821] "donned" "Army"
[82823] "uniform" "Chopra"
[82825] "23" "inducted"
[82827] "Indian" "Army"
[82829] "elite" "sports"
[82831] "quota" "2016"
[82833] "rank" "Naib"
[82835] "Subedar" "joined"
[82837] "4" "Rajputana"
[82839] "Rifles" "parent"
[82841] "unit" "Prior"
[82843] "outstanding" "performance"
[82845] "junior" "national"
[82847] "tournaments" "caught"
[82849] "attention" "athletics"
[82851] "world" "hailed"
[82853] "rising" "star"
[82855] "beginning" "ASI's"
[82857] "Subedar" "Kashinath"
[82859] "Naik" "2010"
[82861] "Commonwealth" "Games"
[82863] "Gold" "Medalist"
[82865] "javelin" "throw"
[82867] "coach" "national"
[82869] "javelin" "throw"
[82871] "team" "2013"
[82873] "2019" "one"
[82875] "coaches" "Chopra"
[82877] "trained" "years"
[82879] "Neeraj" "came"
[82881] "us" "teenager"
[82883] "February" "2015"
[82885] "much" "potential"
[82887] "time" "quite"
[82889] "extraordinary" "age"
[82891] "talent" "boosted"
[82893] "dedication" "hard"
[82895] "work" "feeling"
[82897] "proud" "sentimental"
[82899] "time" "lucky"
[82901] "witnessed" "journey"
[82903] "teenager" "raw"
[82905] "talent" "seasoned"
[82907] "international" "athlete"
[82909] "now" "Olympic"
[82911] "gold" "medalist"
[82913] "golden" "day"
[82915] "India" "Indian"
[82917] "Army" "particular"
[82919] "said" "Naik"
[82921] "Chopra" "promoted"
[82923] "rank" "Subedar"
[82925] "later" "also"
[82927] "received" "prestigious"
[82929] "Vishisht" "Seva"
[82931] "Medal" "outstanding"
[82933] "contribution" "sports"
[82935] "ASI" "Commandant"
[82937] "Colonel" "Rakesh"
[82939] "Yadav" "said"
[82941] "achievement" "motivation"
[82943] "just" "present"
[82945] "generation" "athletes"
[82947] "general" "Indian"
[82949] "armed" "forces"
[82951] "particular" "also"
[82953] "fitting" "tribute"
[82955] "legendary" "Mikha"
[82957] "Singh" "legendary"
[82959] "sprinter" "joined"
[82961] "Army" "1951"
[82963] "later" "given"
[82965] "rank" "Honorary"
[82967] "Captain" "Colonel"
[82969] "Yadav" "added"
[82971] "Neeraj's" "talent"
[82973] "hard" "work"
[82975] "inspiration" "every"
[82977] "sportsman" "lot"
[82979] "learn" "composure"
[82981] "humility" "sincerity"
[82983] "Neeraj" "received"
[82985] "majority" "training"
[82987] "national" "camps"
[82989] "intermittently" "trained"
[82991] "coached" "ASI"
[82993] "got" "required"
[82995] "administrative" "support"
[82997] "tweet" "Indian"
[82999] "Army's" "Southern"
[83001] "Command" "stated"
[83003] "Lt" "Gen"
[83005] "JS" "Nain"
[83007] "GOC-IN-C" "Ranks"
[83009] "Southern" "Command"
[83011] "Indian" "Army"
[83013] "congratulate" "Subedar"
[83015] "Neeraj" "Chopra"
[83017] "Battle" "Axe"
[83019] "Division" "winning"
[83021] "Nation's" "first"
[83023] "ever" "Gold"
[83025] "Medal" "Javelin"
[83027] "Tokyo" "Olympics"
[83029] "proud" "achievement"
[83031] "message" "Chief"
[83033] "Defence" "Staff"
[83035] "General" "Bipin"
[83037] "Rawat" "said"
[83039] "Neeraj" "Chopra"
[83041] "proved" "way"
[83043] "done" "Armed"
[83045] "Forces" "nation"
[83047] "proud" "like"
[83049] "many" "Olympians"
[83051] "created" "history"
[83053] "Tokyo" "2020"
[83055] "confident" "continue"
[83057] "reach" "greater"
[83059] "heights" "years"
[83061] "follow" "achievement"
[83063] "inspire" "motivate"
[83065] "sportspersons" "aspire"
[83067] "succeed" "bring"
[83069] "bigger" "laurels"
[83071] "greater" "honour"
[83073] "nation" "Classification"
[83075] "Language" "ENGLISH"
[83077] "Publication-Type" "Newspaper"
[83079] "Body" "NEW"
[83081] "DELHI" "July"
[83083] "29" "WazirX"
[83085] "NFT" "India's"
[83087] "first" "marketplace"
[83089] "non-fungible" "tokens"
[83091] "NFT" "launched"
[83093] "art" "collections"
[83095] "dedicated" "silver"
[83097] "medal" "won"
[83099] "Indian" "weightlifter"
[83101] "Mirabai" "Chanu"
[83103] "2020" "Summer"
[83105] "Olympic" "held"
[83107] "Tokyo" "Japan"
[83109] "Chanu" "Saturday"
[83111] "became" "sixth"
[83113] "Indian" "female"
[83115] "athlete" "win"
[83117] "Olympic" "medal"
[83119] "century" "Creators"
[83121] "WazirX" "NFT"
[83123] "Marketplace" "minted"
[83125] "NFTs" "featuring"
[83127] "GIFs" "artworks"
[83129] "etc" "capturing"
[83131] "win" "Mirabai"
[83133] "Chanu" "Billion"
[83135] "Dreams" "cartoonist"
[83137] "Satish" "Acharya"
[83139] "sold" "300"
[83141] "WRX" "$"
[83143] "338.7" "Another"
[83145] "NFT" "based"
[83147] "Chanu's" "win"
[83149] "minted" "doodle"
[83151] "artist" "Monika"
[83153] "Paul" "sold"
[83155] "58" "WRX"
[83157] "$" "65.48"
[83159] "WRX" "utility"
[83161] "token" "cryptocurrency"
[83163] "exchange" "WazirX"
[83165] "trading" "9.3"
[83167] "higher" "$"
[83169] "1.13" "around"
[83171] "4.30" "pm"
[83173] "IST" "per"
[83175] "CoinGecko" "pandemic"
[83177] "brought" "sports"
[83179] "standstill" "part"
[83181] "2020" "However"
[83183] "Olympics" "year"
[83185] "brought" "joy"
[83187] "just" "sports"
[83189] "enthusiasts" "also"
[83191] "country" "whole"
[83193] "just" "week"
[83195] "event" "women"
[83197] "athletes" "already"
[83199] "making" "headlines"
[83201] "wins" "salute"
[83203] "honor" "athletes"
[83205] "artists" "creating"
[83207] "NFTs" "now"
[83209] "available" "platform"
[83211] "said" "Vishakha"
[83213] "Singh" "vice-president"
[83215] "WazirX" "NFT"
[83217] "Marketplace" "year"
[83219] "India" "witnessed"
[83221] "highest" "female"
[83223] "contingent" "Tokyo"
[83225] "Olympics" "featuring"
[83227] "56" "athletes"
[83229] "NFTs" "digital"
[83231] "collectibles" "can"
[83233] "obtained" "via"
[83235] "official" "marketplace"
[83237] "artists" "around"
[83239] "world" "gone"
[83241] "digital" "year"
[83243] "minting" "different"
[83245] "NFTs" "cheer"
[83247] "players" "keep"
[83249] "fans" "engaged"
[83251] "NFT" "one-of-its-kind"
[83253] "digital" "asset"
[83255] "interchangeable" "nature"
[83257] "Owning" "NFT"
[83259] "like" "owning"
[83261] "one-of-a-kind" "work"
[83263] "art" "collectable"
[83265] "antique" "NFTs"
[83267] "unique" "tokens"
[83269] "digital" "assets"
[83271] "generate" "value"
[83273] "uniqueness" "Published"
[83275] "HT" "Digital"
[83277] "Content" "Services"
[83279] "permission" "MINT"
[83281] "query" "respect"
[83283] "article" "content"
[83285] "requirement" "please"
[83287] "contact" "Editor"
[83289] "Classification" "Language"
[83291] "ENGLISH" "Publication-Type"
[83293] "Newspaper" "Body"
[83295] "PWD" "minister"
[83297] "Vijay" "Inder"
[83299] "Singla" "said"
[83301] "Captain" "Amarinder"
[83303] "Singh" "given"
[83305] "nod" "renaming"
[83307] "roads" "schools"
[83309] "Punjab" "School"
[83311] "Education" "Public"
[83313] "Works" "Department"
[83315] "PWD" "minister"
[83317] "Vijay" "Inder"
[83319] "Singla" "Friday"
[83321] "said" "government"
[83323] "decided" "name"
[83325] "roads" "schools"
[83327] "state" "Olympic"
[83329] "medal" "winners"
[83331] "congratulating" "team"
[83333] "clinching" "historic"
[83335] "Olympics" "bronze"
[83337] "medal" "hockey"
[83339] "41" "years"
[83341] "Cabinet" "minister"
[83343] "said" "players"
[83345] "made" "India"
[83347] "proud" "naming"
[83349] "roads" "schools"
[83351] "small" "token"
[83353] "gratitude" "honour"
[83355] "achievement" "Singla"
[83357] "said" "Chief"
[83359] "Minister" "Captain"
[83361] "Amarinder" "Singh"
[83363] "given" "nod"
[83365] "renaming" "roads"
[83367] "schools" "respective"
[83369] "department" "officials"
[83371] "directed" "initiate"
[83373] "process" "regard"
[83375] "earliest" "Giving"
[83377] "details" "Singla"
[83379] "added" "road"
[83381] "connecting" "residence"
[83383] "school" "area"
[83385] "respective" "medal-winning"
[83387] "players" "named"
[83389] "added" "move"
[83391] "inspire" "youngsters"
[83393] "achieve" "desired"
[83395] "goals" "life"
[83397] "Singla" "said"
[83399] "hockey" "squad"
[83401] "11" "players"
[83403] "Punjab" "Captain"
[83405] "Manpreet" "Singh"
[83407] "Vice" "Captain"
[83409] "Harmanpreet" "Singh"
[83411] "Rupinderpal" "Singh"
[83413] "Simranjeet" "Singh"
[83415] "Dilpreet" "Singh"
[83417] "Mandeep" "Singh"
[83419] "Gurjant" "Singh"
[83421] "Hardik" "Singh"
[83423] "Samsher" "Singh"
[83425] "Varun" "Kumar"
[83427] "Krishan" "Pathak"
[83429] "said" "women's"
[83431] "hockey" "team"
[83433] "played" "extremely"
[83435] "well" "missed"
[83437] "bronze" "inches"
[83439] "Tokyo" "Olympics"
[83441] "losing" "Britain"
[83443] "3-4" "two"
[83445] "members" "Gurjit"
[83447] "Kaur" "Reena"
[83449] "Khokhar" "Punjab"
[83451] "Classification" "Language"
[83453] "ENGLISH" "Publication-Type"
[83455] "Newspaper" "Body"
[83457] "India" "Aug"
[83459] "5" "10"
[83461] "players" "India"
[83463] "men's" "hockey"
[83465] "team" "defeated"
[83467] "Germany" "5-4"
[83469] "win" "bronze"
[83471] "medal" "41"
[83473] "years" "Tokyo"
[83475] "Olympics" "Punjab"
[83477] "erupted" "celebration"
[83479] "Thursday" "India's"
[83481] "first" "Olympic"
[83483] "medal" "hockey"
[83485] "since" "won"
[83487] "gold" "Moscow"
[83489] "1980" "Terming"
[83491] "proud" "historic"
[83493] "moment" "nation"
[83495] "Chief" "minister"
[83497] "Capt" "Amarinder"
[83499] "Singh" "congratulated"
[83501] "team" "tweeted"
[83503] "tremendous" "achievement"
[83505] "finishing" "podium"
[83507] "41" "years"
[83509] "hockey" "bronze"
[83511] "worth" "weight"
[83513] "gold" "18-member"
[83515] "squad" "10"
[83517] "players" "Punjab"
[83519] "namely" "captain"
[83521] "Manpreet" "Singh"
[83523] "vice-captain" "Harmanpreet"
[83525] "Singh" "Varun"
[83527] "Kumar" "Rupinder"
[83529] "Pal" "Singh"
[83531] "Hardik" "Singh"
[83533] "Dilpreet" "Singh"
[83535] "Gurjant" "Singh"
[83537] "Mandeep" "Singh"
[83539] "Shamsher" "Singh"
[83541] "Simranjeet" "Singh"
[83543] "Punjab" "sports"
[83545] "minister" "Rana"
[83547] "Gurmit" "Singh"
[83549] "Sodhi" "announced"
[83551] "award" "Rs"
[83553] "1" "crore"
[83555] "10" "players"
[83557] "state" "historic"
[83559] "day" "delighted"
[83561] "announce" "cash"
[83563] "award" "Rs"
[83565] "1" "crore"
[83567] "await" "return"
[83569] "celebrate" "much"
[83571] "deserving" "medal"
[83573] "Olympics" "Leaders"
[83575] "Punjab" "took"
[83577] "social" "media"
[83579] "shower" "appreciation"
[83581] "team" "Four"
[83583] "decades" "wait"
[83585] "finishes" "thriller"
[83587] "performance" "Congratulations"
[83589] "men" "blue"
[83591] "winning" "bronze"
[83593] "hockey" "said"
[83595] "state" "Congress"
[83597] "leader" "Partap"
[83599] "Singh" "Bajwa"
[83601] "victory" "huge"
[83603] "go" "long"
[83605] "way" "re-energising"
[83607] "sport" "country"
[83609] "tweeted" "Published"
[83611] "HT" "Digital"
[83613] "Content" "Services"
[83615] "permission" "Hindustan"
[83617] "Times" "query"
[83619] "respect" "article"
[83621] "content" "requirement"
[83623] "please" "contact"
[83625] "Editor" "Classification"
[83627] "Language" "ENGLISH"
[83629] "Publication-Type" "Newswire"
[83631] "Body" "India"
[83633] "Aug" "6"
[83635] "Long" "heat"
[83637] "battle" "ebbed"
[83639] "tears" "continued"
[83641] "flow" "Indian"
[83643] "women's" "hockey"
[83645] "team" "still"
[83647] "crying" "trooped"
[83649] "Oi" "Hockey"
[83651] "Stadium" "Tokyo"
[83653] "take" "bus"
[83655] "Games" "village"
[83657] "simply" "inconsolable"
[83659] "turf" "soaring"
[83661] "temperatures" "43"
[83663] "degrees" "pitch"
[83665] "side" "plucky"
[83667] "Indian" "women's"
[83669] "team" "pushed"
[83671] "2016" "Olympics"
[83673] "gold" "medallists"
[83675] "Great" "Britain"
[83677] "hard" "even"
[83679] "rival" "camp"
[83681] "left" "admire"
[83683] "determined" "effort.As"
[83685] "women" "sobbed"
[83687] "consoled" "coaching"
[83689] "staff" "well"
[83691] "opponents" "scoreboard"
[83693] "flashed" "final"
[83695] "result-4-3-which" "told"
[83697] "sides" "story"
[83699] "valiant" "fight"
[83701] "opportunity" "missed"
[83703] "narrowly" "ever"
[83705] "victory" "defeat"
[83707] "match" "teams"
[83709] "ran" "ragged"
[83711] "battling" "every"
[83713] "ball" "skillful"
[83715] "team" "won"
[83717] "India" "proved"
[83719] "belonged" "stage"
[83721] "result" "bigger"
[83723] "match" "holds"
[83725] "promise" "transforming"
[83727] "dynamics" "Indian"
[83729] "women's" "hockey"
[83731] "now" "pain"
[83733] "coming" "close"
[83735] "missing" "medal"
[83737] "hurt" "bones"
[83739] "Captain" "Rani"
[83741] "Rampal" "stood"
[83743] "transfixed" "turf"
[83745] "crying" "Coach"
[83747] "Sjoerd" "Marijne"
[83749] "gave" "Rani"
[83751] "little" "shake"
[83753] "running" "goalkeeper"
[83755] "Savita" "Punia"
[83757] "sobbing" "uncontrollably"
[83759] "arms" "team's"
[83761] "analytical" "coach"
[83763] "Janneke" "Schopman"
[83765] "British" "women"
[83767] "stopped" "celebrations"
[83769] "midway" "offer"
[83771] "shoulder" "crestfallen"
[83773] "opponents" "Finally"
[83775] "Marijne" "last"
[83777] "match" "team"
[83779] "got" "together"
[83781] "quietly" "said"
[83783] "take" "away"
[83785] "tears" "can"
[83787] "tell" "India"
[83789] "proud" "one"
[83791] "Indian" "women's"
[83793] "team" "played"
[83795] "match" "qualities"
[83797] "intensity" "resilience"
[83799] "allowed" "repeatedly"
[83801] "claw" "back"
[83803] "nearly" "hopeless"
[83805] "situations" "throughout"
[83807] "tournament-be" "three"
[83809] "losses" "first"
[83811] "three" "matches"
[83813] "group" "stage"
[83815] "today" "0-2"
[83817] "second" "quarter"
[83819] "Launching" "one"
[83821] "attack" "another"
[83823] "India" "slotted"
[83825] "three" "goals"
[83827] "four" "minutes"
[83829] "stun" "Britain"
[83831] "end" "quarter"
[83833] "top" "first"
[83835] "two" "goals"
[83837] "India" "came"
[83839] "Gurjit" "Kaur-"
[83841] "fast" "becoming"
[83843] "goalscoring" "talisman"
[83845] "team-both" "powerful"
[83847] "drag-flicks" "thundered"
[83849] "British" "defence"
[83851] "experienced" "Vandana"
[83853] "Kataria" "good"
[83855] "latching" "loose"
[83857] "balls" "D"
[83859] "exactly" "third"
[83861] "goal" "British"
[83863] "equalized" "five"
[83865] "minutes" "third"
[83867] "quarter" "scored"
[83869] "fourth" "winner"
[83871] "coming" "Grace"
[83873] "Balsdon" "close"
[83875] "winning" "medal"
[83877] "showed" "character"
[83879] "team" "said"
[83881] "captain" "Rampal"
[83883] "voice" "choking"
[83885] "fought" "till"
[83887] "end" "unfortunately"
[83889] "finish" "proud"
[83891] "team" "came"
[83893] "team" "never"
[83895] "thought" "come"
[83897] "level" "never"
[83899] "qualified" "Olympics"
[83901] "finished" "12th"
[83903] "Rio" "turning"
[83905] "point" "women's"
[83907] "hockey" "start"
[83909] "anything" "sign"
[83911] "things" "come"
[83913] "Great" "Britain"
[83915] "controlled" "pace"
[83917] "game" "action"
[83919] "mostly" "Indian"
[83921] "half" "Savita"
[83923] "Punia" "pulling"
[83925] "one" "one"
[83927] "save" "another"
[83929] "Britain" "got"
[83931] "three" "penalty"
[83933] "corners" "quick"
[83935] "succession" "Punia"
[83937] "wall" "PR"
[83939] "Sreejesh" "men's"
[83941] "team" "quick"
[83943] "reflexes" "good"
[83945] "anticipation" "stood"
[83947] "boldly" "Britain"
[83949] "opening" "goal"
[83951] "next" "15"
[83953] "minutes" "explosive-five"
[83955] "goals" "two"
[83957] "teams" "pacy"
[83959] "attacks" "flanks"
[83961] "desperate" "defending"
[83963] "quick" "passing"
[83965] "fine" "solo"
[83967] "runs" "including"
[83969] "one" "Salima"
[83971] "Tete" "set"
[83973] "penalty" "corner"
[83975] "Gurjit's" "first"
[83977] "goal" "India"
[83979] "enough" "Great"
[83981] "Britain" "controlled"
[83983] "just" "much"
[83985] "game" "needed"
[83987] "scored" "two"
[83989] "goals" "last"
[83991] "two" "quarters"
[83993] "matter" "much"
[83995] "India" "tried"
[83997] "score" "another"
[83999] "one" "confidence"
[84001] "can" "win"
[84003] "match" "said"
[84005] "Gurjit" "put"
[84007] "effort" "close"
[84009] "winning" "medal"
[84011] "come" "back"
[84013] "stronger" "Published"
[84015] "HT" "Digital"
[84017] "Content" "Services"
[84019] "permission" "Hindustan"
[84021] "Times" "query"
[84023] "respect" "article"
[84025] "content" "requirement"
[84027] "please" "contact"
[84029] "Editor" "Classification"
[84031] "Language" "ENGLISH"
[84033] "Publication-Type" "Newswire"
[84035] "Body" "New"
[84037] "Delhi" "Aug"
[84039] "2" "Shattered"
[84041] "going" "Olympics"
[84043] "women's" "singles"
[84045] "final" "world"
[84047] "number" "one"
[84049] "badminton" "player"
[84051] "Tai" "Tzu"
[84053] "Ying" "revealed"
[84055] "Indian" "ace"
[84057] "P" "V"
[84059] "Sindhu's" "words"
[84061] "encouragement" "medal"
[84063] "ceremony" "left"
[84065] "tears" "Competing"
[84067] "third" "Olympics"
[84069] "Tai" "Tzu"
[84071] "finally" "stood"
[84073] "atop" "podium"
[84075] "finishing" "silver"
[84077] "medal" "going"
[84079] "Chen" "Yu"
[84081] "Fei" "China"
[84083] "18-21" "21-19"
[84085] "18-21" "final"
[84087] "Sunday" "Five"
[84089] "years" "ago"
[84091] "Rio" "Olympics"
[84093] "Sindhu" "emerged"
[84095] "second" "best"
[84097] "went" "Carolina"
[84099] "Marin" "Spain"
[84101] "hard-fought" "three-game"
[84103] "loss" "Indian"
[84105] "knew" "exactly"
[84107] "world" "1"
[84109] "shuttler" "feeling"
[84111] "match" "satisfied"
[84113] "performance" "Later"
[84115] "Sindhu" "ran"
[84117] "hugged" "held"
[84119] "face" "told"
[84121] "know" "uncomfortable"
[84123] "good" "today"
[84125] "day" "held"
[84127] "arms" "said"
[84129] "knows" "Tai"
[84131] "Tzu" "wrote"
[84133] "Instagram" "account"
[84135] "sincere" "encouragement"
[84137] "made" "cry"
[84139] "really" "sad"
[84141] "tried" "really"
[84143] "hard" "Thank"
[84145] "support" "encouragement"
[84147] "Thank" "walking"
[84149] "till" "now"
[84151] "added" "Saturday"
[84153] "Tai" "Tzu"
[84155] "defeated" "Sindhu"
[84157] "Rio" "Olympic"
[84159] "silver-medallist" "reigning"
[84161] "world" "champion"
[84163] "21-18" "21-12"
[84165] "semifinals" "ending"
[84167] "Indian's" "hopes"
[84169] "securing" "country's"
[84171] "first-ever" "gold"
[84173] "medal" "badminton"
[84175] "Sindhu" "later"
[84177] "won" "bronze"
[84179] "medal" "play"
[84181] "world" "9"
[84183] "Bing" "Jiao"
[84185] "China" "become"
[84187] "first" "Indian"
[84189] "woman" "win"
[84191] "two" "medals"
[84193] "Games" "27-year-old"
[84195] "Tai" "Tzu"
[84197] "penned" "emotional"
[84199] "note" "thanking"
[84201] "everyone" "supported"
[84203] "third" "time"
[84205] "stepped" "stage"
[84207] "dream" "finally"
[84209] "made" "finals"
[84211] "stand" "highest"
[84213] "podium" "always"
[84215] "little" "regret"
[84217] "imperfection" "always"
[84219] "exist" "motivated"
[84221] "pursue" "better"
[84223] "results" "Maybe"
[84225] "another" "chance"
[84227] "participate" "Olympics"
[84229] "achieved" "goal"
[84231] "just" "perfect"
[84233] "just" "want"
[84235] "tell" "Dai"
[84237] "Ji-hing" "great"
[84239] "Thank" "supported"
[84241] "results" "always"
[84243] "brutal" "acceptable"
[84245] "try" "best"
[84247] "Published" "HT"
[84249] "Digital" "Content"
[84251] "Services" "permission"
[84253] "MINT" "query"
[84255] "respect" "article"
[84257] "content" "requirement"
[84259] "please" "contact"
[84261] "Editor" "Classification"
[84263] "Language" "ENGLISH"
[84265] "Publication-Type" "Newspaper"
[84267] "Body" "IndiGo"
[84269] "airlines" "Saturday"
[84271] "announced" "free"
[84273] "unlimited" "tickets"
[84275] "Neeraj" "Chopra"
[84277] "period" "one"
[84279] "year" "23-year-old"
[84281] "athelete" "made"
[84283] "history" "becoming"
[84285] "first" "Indian"
[84287] "win" "gold"
[84289] "medal" "athletics"
[84291] "Olympic" "Games"
[84293] "clinched" "first"
[84295] "position" "Tokyo"
[84297] "2020" "throw"
[84299] "87.58" "metres"
[84301] "javelin" "competition"
[84303] "Ronojoy" "Dutta"
[84305] "Director" "Chief"
[84307] "Executive" "Officer"
[84309] "IndiGo" "said"
[84311] "Neeraj" "overjoyed"
[84313] "hear" "remarkable"
[84315] "achievement" "made"
[84317] "country" "proud"
[84319] "|" "know"
[84321] "IndiGo" "employees"
[84323] "truly" "honored"
[84325] "welcome" "onboard"
[84327] "one" "flights"
[84329] "humility" "like"
[84331] "offer" "free"
[84333] "flights" "IndiGo"
[84335] "year" "shown"
[84337] "us" "hard"
[84339] "work" "resilience"
[84341] "passion" "can"
[84343] "achieve" "|"
[84345] "sure" "torch"
[84347] "bearer" "future"
[84349] "Indian" "athletes"
[84351] "Well" "done"
[84353] "Neeraj" "added"
[84355] "Chopra" "also"
[84357] "become" "second"
[84359] "Indian" "Abhinav"
[84361] "Bindra" "win"
[84363] "individual" "gold"
[84365] "medal" "Olympics"
[84367] "Chopra" "now"
[84369] "holds" "gold"
[84371] "medals" "javelin"
[84373] "throw" "Commonwealth"
[84375] "Games" "Asian"
[84377] "Games" "now"
[84379] "Olympics" "time"
[84381] "Chopra's" "elusive"
[84383] "Olympic" "gold"
[84385] "medal" "athletics"
[84387] "ends" "wait"
[84389] "100" "years"
[84391] "gold" "men's"
[84393] "javelin" "throw"
[84395] "final" "Saturday"
[84397] "Classification" "Language"
[84399] "ENGLISH" "Publication-Type"
[84401] "Newspaper" "Body"
[84403] "1-0" "victory"
[84405] "go" "history"
[84407] "women's" "hockey"
[84409] "India" "one"
[84411] "great" "gutsy"
[84413] "wins" "Monday"
[84415] "morning" "never"
[84417] "memorable" "Indian"
[84419] "women's" "hockey"
[84421] "team" "made"
[84423] "us" "proud"
[84425] "entering" "semi-finals"
[84427] "Olympic" "Games"
[84429] "first" "time"
[84431] "history" "Nobody"
[84433] "gave" "chance"
[84435] "Australia" "three-time"
[84437] "Olympic" "champions"
[84439] "2" "FIH"
[84441] "rankings" "Rani"
[84443] "Rampal" "fiery"
[84445] "friends" "showed"
[84447] "world" "capable"
[84449] "thought" "make"
[84451] "last-eight" "stage"
[84453] "enough" "plans"
[84455] "team" "finished"
[84457] "last" "Rio"
[84459] "Olympics" "five"
[84461] "years" "back"
[84463] "now" "semis"
[84465] "1-0" "victory"
[84467] "go" "history"
[84469] "women's" "hockey"
[84471] "India" "one"
[84473] "great" "gutsy"
[84475] "wins" "mind-blowing"
[84477] "performance" "Pardon"
[84479] "going" "overboard"
[84481] "days" "like"
[84483] "make" "feel"
[84485] "moon" "confident"
[84487] "win" "see"
[84489] "resurgence" "women's"
[84491] "hockey" "India"
[84493] "great" "opportunity"
[84495] "now" "men"
[84497] "women" "bag"
[84499] "medals" "just"
[84501] "need" "win"
[84503] "one" "two"
[84505] "matches" "India"
[84507] "podium" "hockey"
[84509] "women" "build-up"
[84511] "Tokyo" "satisfactory"
[84513] "lost" "matches"
[84515] "exposure" "tours"
[84517] "Germany" "Argentina"
[84519] "early" "year"
[84521] "also" "deal"
[84523] "dreaded" "virus"
[84525] "captain" "Rani"
[84527] "six" "players"
[84529] "two" "members"
[84531] "support" "staff"
[84533] "tested" "positive"
[84535] "Covid-19" "late"
[84537] "April" "women"
[84539] "though" "refused"
[84541] "get" "bogged"
[84543] "adversity" "best"
[84545] "part" "quarter"
[84547] "final" "match"
[84549] "India" "get"
[84551] "cowed" "Australia's"
[84553] "reputation" "Aussies"
[84555] "topped" "Pool"
[84557] "B" "India"
[84559] "fourth" "pool"
[84561] "always" "said"
[84563] "group" "matches"
[84565] "count" "little"
[84567] "can" "win"
[84569] "matches" "group"
[84571] "yet" "book"
[84573] "early" "flight"
[84575] "losing" "first"
[84577] "knockout" "game"
[84579] "Tokyo" "Indian"
[84581] "women" "started"
[84583] "badly" "recovered"
[84585] "well" "record"
[84587] "back-to-back" "victories"
[84589] "took" "quarters"
[84591] "knock-outs" "funniest"
[84593] "part" "whoever"
[84595] "plays" "well"
[84597] "particular" "day"
[84599] "top" "India"
[84601] "just" "Australia"
[84603] "defended" "doggedly"
[84605] "second" "lose"
[84607] "focus" "Goalkeeper"
[84609] "Savita" "Punia"
[84611] "different" "zone"
[84613] "answers" "everything"
[84615] "mighty" "Australians"
[84617] "threw" "saving"
[84619] "many" "nine"
[84621] "penalty" "corners"
[84623] "Deep" "Grace"
[84625] "Ekka" "also"
[84627] "like" "rock"
[84629] "defence" "Rani"
[84631] "Monika" "Malik"
[84633] "Gurjit" "Kaur"
[84635] "also" "brilliant"
[84637] "Gurjit" "good"
[84639] "tournament" "delivered"
[84641] "mattered" "converting"
[84643] "penalty" "corner"
[84645] "22nd" "minute"
[84647] "Rani" "unlucky"
[84649] "find" "name"
[84651] "scoresheet" "push"
[84653] "hit" "post"
[84655] "early" "match"
[84657] "Dutch" "coach"
[84659] "Sjoerd" "Marijne"
[84661] "members" "support"
[84663] "staff" "also"
[84665] "deserve" "credit"
[84667] "show" "keep"
[84669] "whole" "bunch"
[84671] "players" "motivated"
[84673] "pandemic" "joke"
[84675] "Marijne" "done"
[84677] "wonderful" "job"
[84679] "till" "now"
[84681] "now" "face"
[84683] "Argentina" "Wednesday"
[84685] "momentum" "India"
[84687] "men" "tough"
[84689] "match" "Belgium"
[84691] "Tuesday" "ensure"
[84693] "concede" "penalty"
[84695] "corners" "team"
[84697] "outstanding" "department"
[84699] "Alexander" "Hendrickx"
[84701] "Belgian" "drag-flicker"
[84703] "already" "scored"
[84705] "11" "goals"
[84707] "including" "two"
[84709] "Spain" "Sunday"
[84711] "can" "punish"
[84713] "us" "badly"
[84715] "lose" "focus"
[84717] "Classification" "Language"
[84719] "ENGLISH" "Publication-Type"
[84721] "Newspaper" "Body"
[84723] "India" "Aug"
[84725] "5" "India"
[84727] "men's" "hockey"
[84729] "team's" "bronze"
[84731] "medal" "Olympics"
[84733] "special" "small"
[84735] "village" "Hoshangabad"
[84737] "district" "Madhya"
[84739] "Pradesh" "people"
[84741] "just" "woken"
[84743] "sport" "career"
[84745] "Chandaun" "village"
[84747] "home" "Indian"
[84749] "hockey" "team"
[84751] "midfielder" "Vivek"
[84753] "Sagar" "21"
[84755] "putting" "extra"
[84757] "effort" "promote"
[84759] "hockey" "story"
[84761] "behind" "promotion"
[84763] "Vivek" "started"
[84765] "playing" "hockey"
[84767] "2012" "father"
[84769] "Rohit" "Prasad"
[84771] "quite" "taken"
[84773] "idea" "asked"
[84775] "Vivek" "concentrate"
[84777] "studies" "instead"
[84779] "asked" "waste"
[84781] "much" "time"
[84783] "playing" "hockey"
[84785] "since" "convinced"
[84787] "even" "ask"
[84789] "new" "hockey"
[84791] "stick" "play"
[84793] "damaged" "stick"
[84795] "borrowed" "friend"
[84797] "said" "Prasad"
[84799] "go" "practice"
[84801] "without" "telling"
[84803] "started" "playing"
[84805] "state-level" "trust"
[84807] "Today" "proud"
[84809] "son" "took"
[84811] "right" "decision"
[84813] "said" "Vivek"
[84815] "went" "lead"
[84817] "junior" "national"
[84819] "team" "now"
[84821] "distributes" "hockey"
[84823] "sticks" "amount"
[84825] "sponsorship" "Vivek's"
[84827] "brother" "Vidhyasagar"
[84829] "software" "engineer"
[84831] "said" "Vivek"
[84833] "wants" "see"
[84835] "hockey" "popular"
[84837] "cricket" "India"
[84839] "passionately" "working"
[84841] "Today" "just"
[84843] "Vivek's" "family"
[84845] "village" "former"
[84847] "Olympian" "Ashok"
[84849] "Dhyanchand" "also"
[84851] "lauding" "efforts"
[84853] "still" "remember"
[84855] "saw" "talent"
[84857] "Six" "years"
[84859] "ago" "gone"
[84861] "attend" "hockey"
[84863] "tournament" "guest"
[84865] "Vivek" "representing"
[84867] "district" "team"
[84869] "impressed" "skills"
[84871] "chose" "MP"
[84873] "Men's" "Hockey"
[84875] "Academy" "Bhopal"
[84877] "going" "academy"
[84879] "stayed" "home"
[84881] "months" "helped"
[84883] "hone" "skills"
[84885] "happy" "chose"
[84887] "right" "player"
[84889] "said" "Former"
[84891] "Olympian" "Jalalludin"
[84893] "Rizvi" "said"
[84895] "Vivek's" "presence"
[84897] "medal-winning" "India"
[84899] "team" "revive"
[84901] "hockey" "MP"
[84903] "known" "nursery"
[84905] "hockey" "Chief"
[84907] "minister" "Shivraj"
[84909] "Singh" "Chouhan"
[84911] "announced" "Rs"
[84913] "1" "crore"
[84915] "prize" "money"
[84917] "Vivek" "Sagar"
[84919] "another" "player"
[84921] "Neelkantha" "Sharma"
[84923] "also" "MP"
[84925] "Academy" "Published"
[84927] "HT" "Digital"
[84929] "Content" "Services"
[84931] "permission" "Hindustan"
[84933] "Times" "query"
[84935] "respect" "article"
[84937] "content" "requirement"
[84939] "please" "contact"
[84941] "Editor" "Classification"
[84943] "Language" "ENGLISH"
[84945] "Publication-Type" "Newswire"
[84947] "Body" "New"
[84949] "Delhi" "Aug"
[84951] "5" "victory"
[84953] "Indian" "men's"
[84955] "hockey" "team"
[84957] "Tokyo" "Olympics"
[84959] "Prime" "Minister"
[84961] "Narendra" "Modi"
[84963] "dialled" "phone"
[84965] "captain" "Manpreet"
[84967] "Singh" "extending"
[84969] "wishes" "2"
[84971] "15" "minutes"
[84973] "video" "Indian"
[84975] "Hockey" "team"
[84977] "captain" "Manpreet"
[84979] "talked" "PM"
[84981] "Modi" "call"
[84983] "prime" "minister"
[84985] "congratulated" "player"
[84987] "along" "coach"
[84989] "Graham" "Reid"
[84991] "assistant" "coach"
[84993] "Piyush" "Dubey"
[84995] "phone" "Watch"
[84997] "video" "#WATCH"
[84999] "|" "PM"
[85001] "Narendra" "Modi"
[85003] "speaks" "India"
[85005] "Hockey" "team"
[85007] "Captain" "Manpreet"
[85009] "Singh" "coach"
[85011] "Graham" "Reid"
[85013] "assistant" "coach"
[85015] "Piyush" "Dubey"
[85017] "team" "won"
[85019] "#Bronze" "medal"
[85021] "men's" "hockey"
[85023] "match" "Germany"
[85025] "#TokyoOlympics" "pic.twitter.com"
[85027] "NguuwSISsV" "ANI"
[85029] "@ANI" "August"
[85031] "5" "2021"
[85033] "Additionally" "PM"
[85035] "Modi" "also"
[85037] "took" "Twitter"
[85039] "Thursday" "wrote"
[85041] "day" "etched"
[85043] "memory" "every"
[85045] "Indian" "feat"
[85047] "captured" "imagination"
[85049] "entire" "nation"
[85051] "especially" "youth"
[85053] "Modi" "said"
[85055] "adding" "India"
[85057] "proud" "hockey"
[85059] "team" "PM"
[85061] "Modi" "tweeted"
[85063] "Historic" "day"
[85065] "etched" "memory"
[85067] "every" "Indian"
[85069] "Congratulations" "Men's"
[85071] "Hockey" "Team"
[85073] "bringing" "home"
[85075] "Bronze" "feat"
[85077] "captured" "imagination"
[85079] "entire" "nation"
[85081] "especially" "youth"
[85083] "India" "proud"
[85085] "Hockey" "team"
[85087] "Historic" "day"
[85089] "etched" "memory"
[85091] "every" "Indian"
[85093] "Congratulations" "Men's"
[85095] "Hockey" "Team"
[85097] "bringing" "home"
[85099] "Bronze" "feat"
[85101] "captured" "imagination"
[85103] "entire" "nation"
[85105] "especially" "youth"
[85107] "India" "proud"
[85109] "Hockey" "team"
[85111] "#55356" "#57297"
[85113] "Narendra" "Modi"
[85115] "@narendramodi" "August"
[85117] "5" "2021"
[85119] "Indian" "men's"
[85121] "hockey" "team"
[85123] "rewrote" "history"
[85125] "claimed" "Olympic"
[85127] "medal" "41"
[85129] "years" "beating"
[85131] "Germany" "5-4"
[85133] "claim" "bronze"
[85135] "edge-of-the-seat" "play-off"
[85137] "match" "ongoing"
[85139] "Tokyo" "Games"
[85141] "Published" "HT"
[85143] "Digital" "Content"
[85145] "Services" "permission"
[85147] "MINT" "query"
[85149] "respect" "article"
[85151] "content" "requirement"
[85153] "please" "contact"
[85155] "Editor" "Classification"
[85157] "Language" "ENGLISH"
[85159] "Publication-Type" "Newspaper"
[85161] "Body" "India"
[85163] "Aug" "2"
[85165] "Gurjit" "Kaur's"
[85167] "goal" "second"
[85169] "quarter" "earned"
[85171] "Indian" "women's"
[85173] "hockey" "team"
[85175] "place" "Tokyo"
[85177] "Olympics" "semi-final"
[85179] "first-ever" "Olympic"
[85181] "Games" "historic"
[85183] "1-0" "win"
[85185] "Australia" "quarter-final"
[85187] "Monday" "applying"
[85189] "consistent" "pressure"
[85191] "first" "quarter"
[85193] "India" "made"
[85195] "circle" "penetration"
[85197] "earned" "penalty"
[85199] "corner" "22nd"
[85201] "minute" "Gurjit"
[85203] "Kaur" "carried"
[85205] "drag-flick" "found"
[85207] "back" "net"
[85209] "help" "India"
[85211] "take" "1-0"
[85213] "lead" "really"
[85215] "happy" "result"
[85217] "hard" "work"
[85219] "Every" "player"
[85221] "worked" "day"
[85223] "night" "day"
[85225] "tell" "happy"
[85227] "Gurjit" "said"
[85229] "India" "beat"
[85231] "World" "2"
[85233] "side" "odds"
[85235] "VIDEO" "Gurjit"
[85237] "Kaur's" "goal"
[85239] "helped" "India"
[85241] "achieve" "historic"
[85243] "win" "Australia"
[85245] "conceding" "Australia"
[85247] "put" "pressure"
[85249] "Indian" "goal"
[85251] "however" "Indian"
[85253] "defence" "stood"
[85255] "tall" "fought"
[85257] "everything" "Australians"
[85259] "threw" "11th"
[85261] "minute" "second"
[85263] "quarter" "Salima"
[85265] "Tete" "made"
[85267] "circle" "penetration"
[85269] "took" "shot"
[85271] "looped" "ball"
[85273] "crossbar" "Indian"
[85275] "continued" "put"
[85277] "pressure" "Australians"
[85279] "two" "teams"
[85281] "went" "break"
[85283] "India" "leading"
[85285] "1-0" "Australia"
[85287] "started" "third"
[85289] "quarter" "aggressively"
[85291] "made" "circle"
[85293] "penetration" "straight"
[85295] "away" "however"
[85297] "Indian" "team"
[85299] "directed" "ball"
[85301] "away" "brilliantly"
[85303] "Australia" "continued"
[85305] "put" "pressure"
[85307] "opponents" "earned"
[85309] "penalty" "corner"
[85311] "third" "minute"
[85313] "third" "quarter"
[85315] "however" "convert"
[85317] "opportunity" "Australians"
[85319] "earned" "another"
[85321] "penalty" "corner"
[85323] "next" "minute"
[85325] "Indian" "defence"
[85327] "unit" "pushed"
[85329] "ball" "away"
[85331] "fantastically" "Australia"
[85333] "kept" "trying"
[85335] "put" "pressure"
[85337] "opponents" "however"
[85339] "Indians" "kept"
[85341] "intercepting" "ball"
[85343] "World" "Number"
[85345] "2" "team"
[85347] "kept" "trying"
[85349] "find" "breakthrough"
[85351] "Indian" "defence"
[85353] "stood" "tall"
[85355] "ensured" "stayed"
[85357] "lead" "13th"
[85359] "minute" "Neha"
[85361] "made" "brilliant"
[85363] "pass" "Navneet"
[85365] "circle" "latter"
[85367] "took" "shot"
[85369] "find" "back"
[85371] "net" "Sharmila"
[85373] "Devi" "drove"
[85375] "ball" "right"
[85377] "final" "minutes"
[85379] "third" "quarter"
[85381] "however" "Indians"
[85383] "deflect" "ball"
[85385] "goal" "Australia"
[85387] "continued" "put"
[85389] "pressure" "Indians"
[85391] "fourth" "quarter"
[85393] "however" "Indian"
[85395] "defence" "unit"
[85397] "kept" "directing"
[85399] "ball" "away"
[85401] "goal" "7th"
[85403] "minute" "fourth"
[85405] "quarter" "Australia"
[85407] "earned" "two"
[85409] "Penalty" "Corners"
[85411] "Indian" "defence"
[85413] "made" "two"
[85415] "brilliant" "saves"
[85417] "ensured" "stayed"
[85419] "lead" "Australians"
[85421] "kept" "pressing"
[85423] "forward" "kept"
[85425] "making" "circle"
[85427] "penetrations" "just"
[85429] "find" "way"
[85431] "breach" "Indian"
[85433] "defence" "just"
[85435] "three" "minutes"
[85437] "left" "clock"
[85439] "Australians" "earned"
[85441] "Penalty" "Corner"
[85443] "Australians" "took"
[85445] "shot" "Monika"
[85447] "calmly" "tapped"
[85449] "ball" "away"
[85451] "goal" "Australia"
[85453] "earned" "another"
[85455] "Penalty" "Corner"
[85457] "soon" "got"
[85459] "close" "goal"
[85461] "Indians" "held"
[85463] "nerve" "directed"
[85465] "ball" "away"
[85467] "Indians" "kept"
[85469] "ball" "possession"
[85471] "final" "minutes"
[85473] "match" "ensured"
[85475] "booked" "place"
[85477] "Semi-finals" "Indian"
[85479] "women's" "hockey"
[85481] "team" "take"
[85483] "Argentina" "semi-final"
[85485] "Tokyo" "Olympics"
[85487] "4" "August"
[85489] "2021" "Published"
[85491] "HT" "Digital"
[85493] "Content" "Services"
[85495] "permission" "Hindustan"
[85497] "Times" "query"
[85499] "respect" "article"
[85501] "content" "requirement"
[85503] "please" "contact"
[85505] "Editor" "Classification"
[85507] "Language" "ENGLISH"
[85509] "Publication-Type" "Newswire"
[85511] "Body" "India"
[85513] "Aug" "2"
[85515] "Gurjit" "Kaur's"
[85517] "goal" "second"
[85519] "quarter" "earned"
[85521] "Indian" "women's"
[85523] "hockey" "team"
[85525] "place" "Tokyo"
[85527] "Olympics" "semi-final"
[85529] "first-ever" "Olympic"
[85531] "Games" "historic"
[85533] "1-0" "win"
[85535] "Australia" "quarter-final"
[85537] "Monday" "applying"
[85539] "consistent" "pressure"
[85541] "first" "quarter"
[85543] "India" "made"
[85545] "circle" "penetration"
[85547] "earned" "penalty"
[85549] "corner" "22nd"
[85551] "minute" "Gurjit"
[85553] "Kaur" "carried"
[85555] "drag-flick" "found"
[85557] "back" "net"
[85559] "help" "India"
[85561] "take" "1-0"
[85563] "lead" "really"
[85565] "happy" "result"
[85567] "hard" "work"
[85569] "Every" "player"
[85571] "worked" "day"
[85573] "night" "day"
[85575] "tell" "happy"
[85577] "Gurjit" "said"
[85579] "India" "beat"
[85581] "World" "2"
[85583] "side" "odds"
[85585] "VIDEO" "Gurjit"
[85587] "Kaur's" "goal"
[85589] "helped" "India"
[85591] "achieve" "historic"
[85593] "win" "Australia"
[85595] "conceding" "Australia"
[85597] "put" "pressure"
[85599] "Indian" "goal"
[85601] "however" "Indian"
[85603] "defence" "stood"
[85605] "tall" "fought"
[85607] "everything" "Australians"
[85609] "threw" "11th"
[85611] "minute" "second"
[85613] "quarter" "Salima"
[85615] "Tete" "made"
[85617] "circle" "penetration"
[85619] "took" "shot"
[85621] "looped" "ball"
[85623] "crossbar" "Indian"
[85625] "continued" "put"
[85627] "pressure" "Australians"
[85629] "two" "teams"
[85631] "went" "break"
[85633] "India" "leading"
[85635] "1-0" "Australia"
[85637] "started" "third"
[85639] "quarter" "aggressively"
[85641] "made" "circle"
[85643] "penetration" "straight"
[85645] "away" "however"
[85647] "Indian" "team"
[85649] "directed" "ball"
[85651] "away" "brilliantly"
[85653] "Australia" "continued"
[85655] "put" "pressure"
[85657] "opponents" "earned"
[85659] "penalty" "corner"
[85661] "third" "minute"
[85663] "third" "quarter"
[85665] "however" "convert"
[85667] "opportunity" "Australians"
[85669] "earned" "another"
[85671] "penalty" "corner"
[85673] "next" "minute"
[85675] "Indian" "defence"
[85677] "unit" "pushed"
[85679] "ball" "away"
[85681] "fantastically" "Australia"
[85683] "kept" "trying"
[85685] "put" "pressure"
[85687] "opponents" "however"
[85689] "Indians" "kept"
[85691] "intercepting" "ball"
[85693] "World" "Number"
[85695] "2" "team"
[85697] "kept" "trying"
[85699] "find" "breakthrough"
[85701] "Indian" "defence"
[85703] "stood" "tall"
[85705] "ensured" "stayed"
[85707] "lead" "13th"
[85709] "minute" "Neha"
[85711] "made" "brilliant"
[85713] "pass" "Navneet"
[85715] "circle" "latter"
[85717] "took" "shot"
[85719] "find" "back"
[85721] "net" "Sharmila"
[85723] "Devi" "drove"
[85725] "ball" "right"
[85727] "final" "minutes"
[85729] "third" "quarter"
[85731] "however" "Indians"
[85733] "deflect" "ball"
[85735] "goal" "Australia"
[85737] "continued" "put"
[85739] "pressure" "Indians"
[85741] "fourth" "quarter"
[85743] "however" "Indian"
[85745] "defence" "unit"
[85747] "kept" "directing"
[85749] "ball" "away"
[85751] "goal" "7th"
[85753] "minute" "fourth"
[85755] "quarter" "Australia"
[85757] "earned" "two"
[85759] "Penalty" "Corners"
[85761] "Indian" "defence"
[85763] "made" "two"
[85765] "brilliant" "saves"
[85767] "ensured" "stayed"
[85769] "lead" "Australians"
[85771] "kept" "pressing"
[85773] "forward" "kept"
[85775] "making" "circle"
[85777] "penetrations" "just"
[85779] "find" "way"
[85781] "breach" "Indian"
[85783] "defence" "just"
[85785] "three" "minutes"
[85787] "left" "clock"
[85789] "Australians" "earned"
[85791] "Penalty" "Corner"
[85793] "Australians" "took"
[85795] "shot" "Monika"
[85797] "calmly" "tapped"
[85799] "ball" "away"
[85801] "goal" "Australia"
[85803] "earned" "another"
[85805] "Penalty" "Corner"
[85807] "soon" "got"
[85809] "close" "goal"
[85811] "Indians" "held"
[85813] "nerve" "directed"
[85815] "ball" "away"
[85817] "Indians" "kept"
[85819] "ball" "possession"
[85821] "final" "minutes"
[85823] "match" "ensured"
[85825] "booked" "place"
[85827] "Semi-finals" "Indian"
[85829] "women's" "hockey"
[85831] "team" "take"
[85833] "Argentina" "semi-final"
[85835] "Tokyo" "Olympics"
[85837] "4" "August"
[85839] "2021" "Published"
[85841] "HT" "Digital"
[85843] "Content" "Services"
[85845] "permission" "Hindustan"
[85847] "Times" "query"
[85849] "respect" "article"
[85851] "content" "requirement"
[85853] "please" "contact"
[85855] "Editor" "Classification"
[85857] "Language" "ENGLISH"
[85859] "Publication-Type" "Newswire"
[85861] "Body" "Tokyo"
[85863] "Olympics" "gold"
[85865] "medalist" "Neeraj"
[85867] "Chopra" "Monday"
[85869] "returned" "India"
[85871] "Japan" "received"
[85873] "warm" "welcome"
[85875] "Delhi" "Airport"
[85877] "javelin" "thower"
[85879] "welcomed" "huge"
[85881] "crowd" "outside"
[85883] "premises" "airport"
[85885] "landing" "Tokyo"
[85887] "gold" "medalist"
[85889] "first" "welcomed"
[85891] "Bharatiya" "Janata"
[85893] "Party" "MP"
[85895] "Tejasvi" "Surya"
[85897] "felicilated" "flowers"
[85899] "soon" "Neeraj"
[85901] "stepped" "outside"
[85903] "airport" "huge"
[85905] "crowd" "already"
[85907] "assembled" "cheer"
[85909] "23-year-old" "athlete"
[85911] "police" "officials"
[85913] "tried" "control"
[85915] "crowd" "trying"
[85917] "pounce" "athlete"
[85919] "congratulate" "loud"
[85921] "cheering" "euphoric"
[85923] "fans" "family"
[85925] "members" "local"
[85927] "political" "leaders"
[85929] "returning" "athletes"
[85931] "made" "way"
[85933] "massive" "crowd"
[85935] "inside" "outside"
[85937] "airport" "People"
[85939] "danced" "sang"
[85941] "screamed" "lungs"
[85943] "show" "appreciation"
[85945] "medal" "winners"
[85947] "huge" "gathering"
[85949] "meant" "social"
[85951] "distancing" "norms"
[85953] "went" "toss"
[85955] "several" "quite"
[85957] "lot" "without"
[85959] "masks" "rushed"
[85961] "catch" "glimpse"
[85963] "stars" "even"
[85965] "seen" "push-ups"
[85967] "planks" "just"
[85969] "outside" "airport"
[85971] "enthusiasm" "athletes"
[85973] "garlanded" "presented"
[85975] "bouquets" "arrival"
[85977] "applauded" "airport"
[85979] "staff" "made"
[85981] "way" "utter"
[85983] "chaos" "However"
[85985] "Chopra" "escorted"
[85987] "till" "vehicle"
[85989] "left" "airport"
[85991] "Apart" "Neeraj"
[85993] "Indian" "athletes"
[85995] "returned" "country"
[85997] "today" "greeted"
[85999] "frenzy" "chaos"
[86001] "airport" "supporters"
[86003] "jostled" "catch"
[86005] "glimpse" "new"
[86007] "sporting" "heroes"
[86009] "Chopra" "added"
[86011] "golden" "sheen"
[86013] "campaign" "silver"
[86015] "medals" "came"
[86017] "weightlifter" "Mirabai"
[86019] "Chanu" "wrestler"
[86021] "Ravi" "Kumar"
[86023] "Dahiya" "bronze"
[86025] "medals" "claimed"
[86027] "boxer" "Lovlina"
[86029] "Borgohain" "shuttler"
[86031] "P" "V"
[86033] "Sindhu" "men's"
[86035] "hockey" "team"
[86037] "wrestler" "Bajrang"
[86039] "Punia" "spotlight"
[86041] "however" "bound"
[86043] "target" "Chopra"
[86045] "whose" "gold"
[86047] "India's" "first"
[86049] "13" "years"
[86051] "overall" "first"
[86053] "ever" "track"
[86055] "field" "events"
[86057] "Classification" "Language"
[86059] "ENGLISH" "Publication-Type"
[86061] "Newspaper" "Body"
[86063] "India" "Aug"
[86065] "6" "disappointed"
[86067] "Shah" "Rukh"
[86069] "Khan" "tweeted"
[86071] "minutes" "India"
[86073] "women's" "hockey"
[86075] "team" "lost"
[86077] "bronze" "medal"
[86079] "match" "ongoing"
[86081] "Tokyo" "Olympics"
[86083] "Great" "Britain"
[86085] "nail-biter" "concluded"
[86087] "India" "losing"
[86089] "5-4" "Shah"
[86091] "Rukh" "Khan"
[86093] "who'd" "invested"
[86095] "team's" "progress"
[86097] "throughout" "tournament"
[86099] "wrote" "tweet"
[86101] "Heartbreak" "reasons"
[86103] "hold" "heads"
[86105] "high" "Well"
[86107] "played" "Indian"
[86109] "Women's" "Hockey"
[86111] "Team" "inspired"
[86113] "everyone" "India"
[86115] "victory" "Shah"
[86117] "Rukh" "course"
[86119] "famously" "played"
[86121] "coach" "Kabir"
[86123] "Khan" "hit"
[86125] "2007" "sports"
[86127] "drama" "Chak"
[86129] "De" "India"
[86131] "character" "led"
[86133] "underdog" "women's"
[86135] "hockey" "team"
[86137] "success" "Previously"
[86139] "squad" "entered"
[86141] "semi-finals" "Shah"
[86143] "Rukh" "tweeted"
[86145] "reposting" "coach"
[86147] "Sjoerd" "Marijne's"
[86149] "comment" "delayed"
[86151] "team's" "progress"
[86153] "Haan" "haan"
[86155] "problem" "Just"
[86157] "bring" "Gold"
[86159] "way" "back"
[86161] "billion" "family"
[86163] "members" "time"
[86165] "Dhanteras" "also"
[86167] "2nd" "Nov"
[86169] "Ex-coach" "Kabir"
[86171] "Khan" "referring"
[86173] "role" "Bollywood"
[86175] "film" "Chak"
[86177] "De" "India"
[86179] "Indian" "men's"
[86181] "hockey" "team's"
[86183] "bronze" "medal"
[86185] "win" "earlier"
[86187] "week" "actor"
[86189] "wrote" "Wow"
[86191] "Indian" "Men's"
[86193] "Hockey" "Team"
[86195] "Congratulations" "Resilience"
[86197] "skill" "peak"
[86199] "exciting" "match"
[86201] "Chak" "De"
[86203] "India" "directed"
[86205] "Shimit" "Amin"
[86207] "became" "critical"
[86209] "commercial" "success"
[86211] "rare" "diversion"
[86213] "usual" "romantic"
[86215] "roles" "Shah"
[86217] "Rukh" "known"
[86219] "playing" "screen"
[86221] "title" "track"
[86223] "composed" "Salim-Sulaiman"
[86225] "performed" "Sukhwinder"
[86227] "Singh" "became"
[86229] "unofficial" "anthem"
[86231] "Indian" "sports"
[86233] "Shah" "Rukh"
[86235] "last" "seen"
[86237] "screen" "2018"
[86239] "s" "Zero"
[86241] "directed" "Anand"
[86243] "L" "Rai"
[86245] "make" "acting"
[86247] "comeback" "as-yet-unannounced"
[86249] "Pathan" "bunch"
[86251] "rumoured" "films"
[86253] "pipeline" "Published"
[86255] "HT" "Digital"
[86257] "Content" "Services"
[86259] "permission" "Hindustan"
[86261] "Times" "query"
[86263] "respect" "article"
[86265] "content" "requirement"
[86267] "please" "contact"
[86269] "Editor" "Classification"
[86271] "Language" "ENGLISH"
[86273] "Publication-Type" "Newswire"
[86275] "Body" "Following"
[86277] "exciting" "Olympic"
[86279] "medal" "win"
[86281] "weightlifter" "Mirabai"
[86283] "Chanu" "Tokyo"
[86285] "2020" "Olympics"
[86287] "another" "win"
[86289] "followed" "closely"
[86291] "heels" "Boxer"
[86293] "Lovlina" "Borgohain"
[86295] "assured" "India"
[86297] "first" "boxing"
[86299] "medal" "Tokyo"
[86301] "Olympics" "July"
[86303] "30" "set"
[86305] "take" "world"
[86307] "champion" "Busenaz"
[86309] "Surmeneli" "Turkey"
[86311] "semi-finals" "August"
[86313] "4" "get"
[86315] "know" "23-year-old"
[86317] "boxing" "champ"
[86319] "Lovlina" "youngest"
[86321] "three" "siblings"
[86323] "two" "elder"
[86325] "sisters" "Hailing"
[86327] "village" "called"
[86329] "Bormukhia" "located"
[86331] "town" "Barpathar"
[86333] "Golaghat" "district"
[86335] "Assam" "belongs"
[86337] "family" "rely"
[86339] "paddy" "farming"
[86341] "phone" "speaking"
[86343] "MetroPlus" "father"
[86345] "Tiken" "Borgohain"
[86347] "bubbling" "excitement"
[86349] "says" "elated"
[86351] "win" "confident"
[86353] "bag" "Olympic"
[86355] "gold" "country"
[86357] "next" "time"
[86359] "Lovlina" "first"
[86361] "learnt" "mixed"
[86363] "martial" "arts"
[86365] "muay" "thai"
[86367] "later" "graduated"
[86369] "boxing" "enrolled"
[86371] "Sports" "Authority"
[86373] "India" "Read"
[86375] "|" "Baromukhia"
[86377] "village" "celebrates"
[86379] "favourite" "daughter"
[86381] "Lovlina" "Borgohain"
[86383] "Lovlina's" "success"
[86385] "celebrated" "lot"
[86387] "fervour" "small"
[86389] "village" "ardent"
[86391] "fan" "Manipur's"
[86393] "Mary" "Kom"
[86395] "Lovlina" "always"
[86397] "sports" "lover"
[86399] "since" "childhood"
[86401] "Even" "though"
[86403] "facility" "sports"
[86405] "training" "town"
[86407] "Barpathar" "seeing"
[86409] "enthusiasm" "sports"
[86411] "father" "decided"
[86413] "enroll" "then-12-year-old"
[86415] "Lovlina" "muay"
[86417] "thai" "classes"
[86419] "started" "local"
[86421] "group" "boys"
[86423] "Speaking" "recent"
[86425] "virtual" "press"
[86427] "conference" "stated"
[86429] "started" "thinking"
[86431] "matter" "situation"
[86433] "give" "best"
[86435] "want" "win"
[86437] "even" "fighting"
[86439] "broken" "hand"
[86441] "Classification" "Language"
[86443] "ENGLISH" "Publication-Type"
[86445] "Newspaper" "Body"
[86447] "Prime" "Minister"
[86449] "Narendra" "Modi"
[86451] "termed" "men's"
[86453] "hockey" "team's"
[86455] "Olympic" "bronze"
[86457] "medal" "win"
[86459] "Thursday" "historic"
[86461] "restoring" "country's"
[86463] "pride" "sport"
[86465] "synonymous" "national"
[86467] "identity" "PM"
[86469] "told" "wrestler"
[86471] "Ravi" "Dahiya"
[86473] "won" "silver"
[86475] "losing" "gold"
[86477] "medal" "bout"
[86479] "tough" "contest"
[86481] "India" "proud"
[86483] "success" "inspires"
[86485] "entire" "nation"
[86487] "Modi" "said"
[86489] "looks" "forward"
[86491] "personally" "congratulating"
[86493] "August" "15"
[86495] "Dahiya" "remarkable"
[86497] "wrestler" "fighting"
[86499] "spirit" "tenacity"
[86501] "outstanding" "Modi"
[86503] "said" "also"
[86505] "spoke" "Dahiya's"
[86507] "coach" "Anil"
[86509] "Maan" "Today"
[86511] "pride" "hockey"
[86513] "national" "identity"
[86515] "established" "four"
[86517] "decades" "said"
[86519] "speaking" "team"
[86521] "members" "coach"
[86523] "Graham" "Reid"
[86525] "Tokyo" "video"
[86527] "interaction" "players"
[86529] "end" "showed"
[86531] "players" "Reid"
[86533] "thanking" "PM"
[86535] "call" "Reid"
[86537] "said" "Modi's"
[86539] "conversation" "team"
[86541] "semi-final" "loss"
[86543] "Belgium" "helped"
[86545] "motivate" "players"
[86547] "India's" "win"
[86549] "Modi" "tweeted"
[86551] "day" "etched"
[86553] "memory" "every"
[86555] "Indian" "Congratulations"
[86557] "Men's" "Hockey"
[86559] "Team" "bringing"
[86561] "home" "Bronze"
[86563] "feat" "captured"
[86565] "imagination" "entire"
[86567] "nation" "especially"
[86569] "youth" "India"
[86571] "proud" "Hockey"
[86573] "team" "Modi"
[86575] "told" "captain"
[86577] "Manpreet" "Singh"
[86579] "scripted" "history"
[86581] "also" "spoke"
[86583] "Reid" "assistant"
[86585] "coach" "Piyush"
[86587] "Dubey" "Classification"
[86589] "Language" "ENGLISH"
[86591] "Publication-Type" "Newspaper"
[86593] "Body" "New"
[86595] "Delhi" "Aug"
[86597] "1" "Ace"
[86599] "badminton" "player"
[86601] "PV" "Sindhu"
[86603] "clinches" "bronze"
[86605] "medal" "India"
[86607] "defeating" "China's"
[86609] "Bing" "Jiao"
[86611] "21-13" "21-15"
[86613] "third" "place"
[86615] "play-off" "Musashino"
[86617] "Forest" "Plaza"
[86619] "Sunday" "26-year-old"
[86621] "silver-medallist" "Rio"
[86623] "Games" "hopes"
[86625] "securing" "India's"
[86627] "first-ever" "Olympic"
[86629] "gold" "badminton"
[86631] "came" "crashing"
[86633] "slumped" "straight-game"
[86635] "defeat" "world"
[86637] "1" "Tai"
[86639] "Tzu" "Ying"
[86641] "Chinese" "Taipei"
[86643] "women's" "singles"
[86645] "semifinals" "Saturday"
[86647] "One" "consistent"
[86649] "players" "claimed"
[86651] "medals" "big-ticket"
[86653] "events" "last"
[86655] "five" "years"
[86657] "Sindhu" "counter"
[86659] "Tai" "Tzu's"
[86661] "deception" "aggressive"
[86663] "game" "going"
[86665] "18-21" "12-21"
[86667] "Sindhu's" "14th"
[86669] "loss" "Taiwanese"
[86671] "second" "seed"
[86673] "19" "meetings"
[86675] "also" "lost"
[86677] "last" "three"
[86679] "face-offs" "Thursday"
[86681] "Sindhu" "notched"
[86683] "straight-game" "triumph"
[86685] "Denmark's" "Mia"
[86687] "Blichfeldt" "13th"
[86689] "seed" "pre-quarterfinals"
[86691] "lone" "Indian"
[86693] "fray" "badminton"
[86695] "men's" "singles"
[86697] "player" "B"
[86699] "Sai" "Praneeth"
[86701] "men's" "doubles"
[86703] "pair" "Chirag"
[86705] "Shetty" "Satwiksairaj"
[86707] "Rankireddy" "failed"
[86709] "qualify" "knockout"
[86711] "stage" "Published"
[86713] "HT" "Digital"
[86715] "Content" "Services"
[86717] "permission" "MINT"
[86719] "query" "respect"
[86721] "article" "content"
[86723] "requirement" "please"
[86725] "contact" "Editor"
[86727] "Classification" "Language"
[86729] "ENGLISH" "Publication-Type"
[86731] "Newspaper" "Body"
[86733] "India" "July"
[86735] "25" "Model-actor"
[86737] "Milind" "Soman"
[86739] "made" "gaffe"
[86741] "congratulated" "wrestler"
[86743] "Priya" "Malik"
[86745] "gold" "medal"
[86747] "World" "Cadet"
[86749] "Wrestling" "Championships"
[86751] "mistakenly" "wrote"
[86753] "won" "gold"
[86755] "medal" "ongoing"
[86757] "Tokyo" "Olympics"
[86759] "later" "corrected"
[86761] "said" "overcome"
[86763] "joy" "check"
[86765] "earlier" "Thank"
[86767] "Priya" "Malik"
[86769] "#gold" "#TokoyoOlympics"
[86771] "#wrestling" "welcome"
[86773] "Mt" "Olympus"
[86775] "Milind" "wrote"
[86777] "Twitter" "follow-up"
[86779] "post" "wrote"
[86781] "Sorry" "checked"
[86783] "earlier" "tweet"
[86785] "overcome" "joy"
[86787] "Priya" "Malik"
[86789] "won" "Gold"
[86791] "World" "wrestling"
[86793] "Championships" "Onwards"
[86795] "upwards" "Replying"
[86797] "Twitter" "user"
[86799] "asked" "delete"
[86801] "erroneous" "tweet"
[86803] "Milind" "said"
[86805] "know" "now"
[86807] "still" "happy"
[86809] "delete" "tweet"
[86811] "sometimes" "ok"
[86813] "make" "mistake"
[86815] "Indian" "wrestler"
[86817] "Priya" "Malik"
[86819] "defeated" "Kseniya"
[86821] "Patapovich" "Belarus"
[86823] "5-0" "win"
[86825] "gold" "medal"
[86827] "World" "Cadet"
[86829] "Wrestling" "Championships"
[86831] "Sunday" "Several"
[86833] "Bollywood" "celebrities"
[86835] "including" "Kareena"
[86837] "Kapoor" "Abhishek"
[86839] "Bachchan" "Kangana"
[86841] "Ranaut" "Anil"
[86843] "Kapoor" "Sunny"
[86845] "Deol" "took"
[86847] "social" "media"
[86849] "wish" "Priya's"
[86851] "win" "comes"
[86853] "day" "Indian"
[86855] "weightlifter" "Mirabai"
[86857] "Chanu" "won"
[86859] "silver" "medal"
[86861] "49" "kg"
[86863] "category" "Tokyo"
[86865] "Olympics" "Saturday"
[86867] "congratulating" "Mirabai"
[86869] "actor" "Tisca"
[86871] "Chopra" "goofed"
[86873] "erroneously" "used"
[86875] "picture" "Indonesian"
[86877] "weightlifter" "Windy"
[86879] "Cantika" "Aisah"
[86881] "took" "home"
[86883] "bronze" "medal"
[86885] "Also" "see"
[86887] "Kapil" "Sharma"
[86889] "Show" "gets"
[86891] "new" "promo"
[86893] "Sumona" "Chakravarti"
[86895] "still" "missing"
[86897] "Archana" "Puran"
[86899] "Singh" "whacks"
[86901] "Kapil" "Sharma"
[86903] "Replying" "Twitter"
[86905] "user" "pointed"
[86907] "mistake" "Tisca"
[86909] "wrote" "Glad"
[86911] "guys" "fun"
[86913] "genuine" "mistake"
[86915] "sorry" "still"
[86917] "mean" "proud"
[86919] "@mirabai_chanu" "#TokyoOlympics"
[86921] "rest" "contingent"
[86923] "Meanwhile" "Milind"
[86925] "posting" "workout"
[86927] "videos" "Instagram"
[86929] "post" "last"
[86931] "month" "wrote"
[86933] "Never" "forget"
[86935] "basics" "Even"
[86937] "say" "time"
[86939] "entire" "day"
[86941] "exercise" "can"
[86943] "still" "spare"
[86945] "minute" "times"
[86947] "need" "many"
[86949] "60secs" "excuses"
[86951] "time" "space"
[86953] "equipment" "able"
[86955] "move" "body"
[86957] "weight" "good"
[86959] "enough" "Just"
[86961] "keep" "trying"
[86963] "increase" "number"
[86965] "push-ups" "minute"
[86967] "good" "goal"
[86969] "start" "great"
[86971] "goal" "finish"
[86973] "Published" "HT"
[86975] "Digital" "Content"
[86977] "Services" "permission"
[86979] "Hindustan" "Times"
[86981] "query" "respect"
[86983] "article" "content"
[86985] "requirement" "please"
[86987] "contact" "Editor"
[86989] "Classification" "Language"
[86991] "ENGLISH" "Publication-Type"
[86993] "Newswire" "Body"
[86995] "Lovlina" "Borgohain"
[86997] "loves" "dark"
[86999] "horse" "tag"
[87001] "Olympics" "many"
[87003] "talking" "noted"
[87005] "names" "boxing"
[87007] "contingent" "medal"
[87009] "prospects" "Assam"
[87011] "girl" "stayed"
[87013] "radar" "end"
[87015] "ended" "India's"
[87017] "sole" "boxing"
[87019] "medallist" "Tokyo"
[87021] "Games" "shy"
[87023] "person" "like"
[87025] "social" "media"
[87027] "lot" "main"
[87029] "focus" "just"
[87031] "Olympic" "medal"
[87033] "used" "stay"
[87035] "away" "limelight"
[87037] "distracting" "says"
[87039] "Lovlina" "speaking"
[87041] "us" "Tokyo"
[87043] "day" "medal"
[87045] "win" "shyness"
[87047] "comes" "childhood"
[87049] "tall" "frame"
[87051] "made" "impossible"
[87053] "make" "friends"
[87055] "5" "feet"
[87057] "10" "inches"
[87059] "boxer" "recounts"
[87061] "tall" "even"
[87063] "kid" "used"
[87065] "cause" "problems"
[87067] "school" "many"
[87069] "friends" "classmates"
[87071] "tiny" "compared"
[87073] "people" "talk"
[87075] "much" "sports"
[87077] "helped" "emerge"
[87079] "changed" "started"
[87081] "playing" "sports"
[87083] "suddenly" "new"
[87085] "friends" "sports"
[87087] "helped" "indebted"
[87089] "says" "23-year-old"
[87091] "won" "bronze"
[87093] "welterweight" "category"
[87095] "Tokyo" "Olympics"
[87097] "admits" "little"
[87099] "upset" "able"
[87101] "get" "shot"
[87103] "gold" "little"
[87105] "sad" "Ever"
[87107] "since" "thought"
[87109] "competing" "Olympics"
[87111] "dreamt" "winning"
[87113] "gold" "says"
[87115] "adding" "get"
[87117] "medal" "relieved"
[87119] "Lovlina" "comes"
[87121] "Golaghat" "town"
[87123] "Upper" "Assam"
[87125] "pugilist" "tells"
[87127] "us" "celebrations"
[87129] "village" "begun"
[87131] "even" "bagged"
[87133] "medal" "many"
[87135] "people" "house"
[87137] "even" "get"
[87139] "talk" "parents"
[87141] "properly" "Bas"
[87143] "minute" "phone"
[87145] "par" "baat"
[87147] "ho" "paayi"
[87149] "says" "laugh"
[87151] "constant" "interactions"
[87153] "parents" "helped"
[87155] "recover" "disappointment"
[87157] "semi-final" "loss"
[87159] "semi-final" "pretty"
[87161] "upset" "lost"
[87163] "parents" "told"
[87165] "proud" "whole"
[87167] "Assam" "India"
[87169] "proud" "helped"
[87171] "says" "Lovlina"
[87173] "However" "boxer"
[87175] "clarifies" "fully"
[87177] "satisfied" "Just"
[87179] "upset" "mean"
[87181] "satisfied" "want"
[87183] "content" "bronze"
[87185] "medal" "dream"
[87187] "win" "gold"
[87189] "still" "exists"
[87191] "says" "third"
[87193] "Indian" "boxer"
[87195] "win" "Olympic"
[87197] "medal" "two"
[87199] "Vijender" "Singh"
[87201] "Mary" "Kom"
[87203] "feel" "intimidating"
[87205] "bracketed" "alongside"
[87207] "legends" "feels"
[87209] "great" "replies"
[87211] "Lovlina" "adding"
[87213] "grew" "watching"
[87215] "won" "Olympics"
[87217] "dreamt" "emulating"
[87219] "Now" "feel"
[87221] "honoured" "name"
[87223] "taken" "alongside"
[87225] "two" "legends"
[87227] "soon" "assured"
[87229] "medal" "winning"
[87231] "quarter-final" "bout"
[87233] "news" "reports"
[87235] "muddy" "dilapidated"
[87237] "road" "leading"
[87239] "village" "finally"
[87241] "repair" "Lovlina"
[87243] "laughs" "idea"
[87245] "Olympic" "medal"
[87247] "facilitating" "development"
[87249] "region" "just"
[87251] "village" "Upper"
[87253] "Assam" "many"
[87255] "roads" "pretty"
[87257] "bad" "always"
[87259] "travelled" "muddy"
[87261] "road" "get"
[87263] "village" "says"
[87265] "feels" "fortunate"
[87267] "chance" "something"
[87269] "good" "region"
[87271] "elaborates" "time"
[87273] "told" "see"
[87275] "paved" "road"
[87277] "feels" "good"
[87279] "whatever" "part"
[87281] "played" "put"
[87283] "village" "map"
[87285] "Classification" "Language"
[87287] "ENGLISH" "Publication-Type"
[87289] "Newspaper" "Body"
[87291] "New" "Delhi"
[87293] "July" "31"
[87295] "Reigning" "world"
[87297] "champion" "P"
[87299] "V" "Sindhu"
[87301] "Saturday" "lost"
[87303] "semifinals" "women's"
[87305] "singles" "facing"
[87307] "world" "number"
[87309] "1" "Tai"
[87311] "Tzu-Ying" "Chinese"
[87313] "Taipei" "PV"
[87315] "Sindhu" "lost"
[87317] "18-21" "11-21"
[87319] "Tai" "Tzu-Ying"
[87321] "women's" "singles"
[87323] "semifinal" "Sindhu"
[87325] "face" "China's"
[87327] "Bing" "Jiao"
[87329] "bronze-medal" "match"
[87331] "tomorrow" "Tzu"
[87333] "Ying" "currently"
[87335] "ranked" "first"
[87337] "BWF" "women's"
[87339] "singles" "world"
[87341] "ranking" "hand"
[87343] "Sindhu" "placed"
[87345] "seventh" "BWF"
[87347] "leaderboard" "champion"
[87349] "stormed" "semis"
[87351] "fighting" "straight-game"
[87353] "win" "world"
[87355] "5" "Japanese"
[87357] "Akane" "Yamaguchi"
[87359] "Friday" "26-year-old"
[87361] "Indian" "won"
[87363] "silver" "2016"
[87365] "Rio" "Olympics"
[87367] "defended" "brilliantly"
[87369] "rode" "attack"
[87371] "outclass" "fourth"
[87373] "seeded" "Yamaguchi"
[87375] "21-13" "22-20"
[87377] "56-minute" "quarterfinal"
[87379] "clash" "Musashino"
[87381] "Forest" "Plaza"
[87383] "next" "face"
[87385] "winner" "quarterfinal"
[87387] "Thailand's" "Ratchanok"
[87389] "Inthanon" "Chinese"
[87391] "Taipei's" "Tai"
[87393] "Tzu" "Ying"
[87395] "sixth" "seeded"
[87397] "Indian" "came"
[87399] "match" "11-7"
[87401] "head-to-head" "count"
[87403] "Japanese" "last"
[87405] "beaten" "England"
[87407] "Championship" "March"
[87409] "year" "Thursday"
[87411] "Sindhu" "notched"
[87413] "straight-game" "triumph"
[87415] "Denmark's" "Mia"
[87417] "Blichfeldt" "13th"
[87419] "seed" "pre-quarterfinals"
[87421] "lone" "Indian"
[87423] "fray" "badminton"
[87425] "men's" "singles"
[87427] "player" "B"
[87429] "Sai" "Praneeth"
[87431] "men's" "doubles"
[87433] "pair" "Chirag"
[87435] "Shetty" "Satwiksairaj"
[87437] "Rankireddy" "failed"
[87439] "qualify" "knockout"
[87441] "stage" "Published"
[87443] "HT" "Digital"
[87445] "Content" "Services"
[87447] "permission" "MINT"
[87449] "query" "respect"
[87451] "article" "content"
[87453] "requirement" "please"
[87455] "contact" "Editor"
[87457] "Classification" "Language"
[87459] "ENGLISH" "Publication-Type"
[87461] "Newspaper" "Body"
[87463] "New" "Delhi"
[87465] "Aug" "8"
[87467] "unprecedented" "victory"
[87469] "Neeraj" "Chopra"
[87471] "India's" "history"
[87473] "country's" "medal"
[87475] "tally" "gone"
[87477] "7" "highest"
[87479] "far" "Olympics"
[87481] "evident" "India"
[87483] "capped" "best-ever"
[87485] "performance" "first"
[87487] "time" "Olympics"
[87489] "history" "Tokyo"
[87491] "Olympics" "come"
[87493] "close" "take"
[87495] "look" "medallists"
[87497] "came" "within"
[87499] "touching" "distance"
[87501] "glory" "quite"
[87503] "make" "podium"
[87505] "NEERAJ" "CHOPRA"
[87507] "GOLD" "Javelin"
[87509] "thrower" "Neeraj"
[87511] "Chopra" "became"
[87513] "second" "Indian"
[87515] "win" "individual"
[87517] "gold" "Tokyo"
[87519] "Olympics" "2020"
[87521] "became" "India's"
[87523] "first" "track-and-field"
[87525] "medal" "winner"
[87527] "men's" "javelin"
[87529] "throw" "best"
[87531] "effort" "87.58m"
[87533] "23-year-old" "Subedar"
[87535] "4" "Rajputana"
[87537] "Rifles" "Indian"
[87539] "Army" "consistent"
[87541] "performer" "since"
[87543] "bursting" "scene"
[87545] "historic" "gold"
[87547] "junior" "world"
[87549] "championships" "2016"
[87551] "Under-20" "world"
[87553] "record" "86.48m"
[87555] "still" "stands"
[87557] "achievements" "include"
[87559] "gold" "medals"
[87561] "2018" "Commonwealth"
[87563] "Games" "Asian"
[87565] "Games" "besides"
[87567] "top" "finish"
[87569] "2017" "Asian"
[87571] "Championships" "MIRABAI"
[87573] "CHANU" "SILVER"
[87575] "27-year-old" "weightlifter"
[87577] "Manipuri" "lifted"
[87579] "spirits" "entire"
[87581] "nation" "ended"
[87583] "21-year" "wait"
[87585] "medal" "weightlifting"
[87587] "clinching" "silver"
[87589] "medal" "49kg"
[87591] "category" "Chanu"
[87593] "lifted" "total"
[87595] "202kg" "87kg"
[87597] "115kg" "finally"
[87599] "exorcising" "ghosts"
[87601] "disastrous" "outing"
[87603] "2016" "Rio"
[87605] "Games" "failed"
[87607] "log" "single"
[87609] "legitimate" "lift"
[87611] "Born" "poor"
[87613] "family" "Nongpok"
[87615] "Kakching" "village"
[87617] "20" "kilometres"
[87619] "Imphal" "Chanu's"
[87621] "childhood" "spent"
[87623] "cutting" "collecting"
[87625] "wood" "nearby"
[87627] "hills" "hauling"
[87629] "fetching" "water"
[87631] "nearby" "ponds"
[87633] "milk" "powder"
[87635] "cans" "2017"
[87637] "world" "champion"
[87639] "initially" "wanted"
[87641] "archer" "fate"
[87643] "different" "plans"
[87645] "reading" "fellow"
[87647] "Manipuri" "legendary"
[87649] "N.Kunjarani" "Devi's"
[87651] "exploits" "weightlifting"
[87653] "arena" "world"
[87655] "inspired" "Chanu"
[87657] "take" "sport"
[87659] "RAVI" "DAHIYA"
[87661] "SILVER" "23-year-grappler"
[87663] "born" "Nahri"
[87665] "village" "Sonepat"
[87667] "district" "Haryana"
[87669] "stormed" "final"
[87671] "men's" "57kg"
[87673] "freestyle" "event"
[87675] "without" "fuss"
[87677] "Although" "fetched"
[87679] "silver" "immense"
[87681] "strength" "stamina"
[87683] "along" "technical"
[87685] "prowess" "impressed"
[87687] "one" "Born"
[87689] "farming" "family"
[87691] "Dahiya" "trained"
[87693] "national" "capital's"
[87695] "Chhatrasal" "Stadium"
[87697] "already" "given"
[87699] "India" "two"
[87701] "Olympic" "medallists"
[87703] "Sushil" "Kumar"
[87705] "Yogeshwar" "Dutt"
[87707] "rose" "prominence"
[87709] "qualified" "Tokyo"
[87711] "Games" "bronze"
[87713] "medal-winning" "effort"
[87715] "2019" "world"
[87717] "championship" "steadily"
[87719] "gown" "stature"
[87721] "ever" "since"
[87723] "winning" "Asian"
[87725] "Championship" "2020"
[87727] "defending" "title"
[87729] "year" "father"
[87731] "Rakesh" "Kumar"
[87733] "carry" "milk"
[87735] "butter" "Chhatrasal"
[87737] "Stadium" "60km"
[87739] "away" "home"
[87741] "every" "single"
[87743] "day" "without"
[87745] "fail" "ensure"
[87747] "son" "got"
[87749] "best" "diet"
[87751] "PV" "SINDHU"
[87753] "BRONZE" "PV"
[87755] "Sindhu" "etched"
[87757] "name" "among"
[87759] "all-time" "greats"
[87761] "winning" "women's"
[87763] "singles" "bronze"
[87765] "medal" "add"
[87767] "silver" "won"
[87769] "Rio" "de"
[87771] "Janeiro" "five"
[87773] "years" "back"
[87775] "26-year-old" "became"
[87777] "first" "Indian"
[87779] "woman" "second"
[87781] "overall" "country"
[87783] "achieve" "feat"
[87785] "dominance" "Tokyo"
[87787] "Games" "dropped"
[87789] "two" "games"
[87791] "semifinal" "loss"
[87793] "Tai" "Tzu"
[87795] "Ying" "six"
[87797] "matches" "Hyderabad"
[87799] "shuttler" "rose"
[87801] "fame" "international"
[87803] "level" "2014"
[87805] "won" "bronze"
[87807] "medals" "world"
[87809] "championship" "Asian"
[87811] "Games" "Commonwealth"
[87813] "Games" "Asian"
[87815] "Championships" "MEN'S"
[87817] "HOCKEY" "TEAM"
[87819] "BRONZE" "Four"
[87821] "decades" "pain"
[87823] "disappointment" "washed"
[87825] "away" "Indian"
[87827] "men's" "hockey"
[87829] "team" "clinched"
[87831] "bronze" "country's"
[87833] "12th" "Olympic"
[87835] "medal" "sport"
[87837] "came" "gap"
[87839] "41" "years"
[87841] "initial" "hiccup"
[87843] "saw" "team"
[87845] "steam-rolled" "1-7"
[87847] "Australia" "second"
[87849] "game" "Manpreet"
[87851] "Singh" "men"
[87853] "made" "strong"
[87855] "comeback" "losing"
[87857] "eventual" "champions"
[87859] "Belgium" "Manpreet"
[87861] "inspired" "team"
[87863] "leadership" "goalkeeper"
[87865] "PR" "Sreejesh"
[87867] "phenomenal" "tournament"
[87869] "standing" "like"
[87871] "wall" "opposition"
[87873] "mounted" "attack"
[87875] "seemed" "team"
[87877] "destined" "win"
[87879] "else" "one"
[87881] "explain" "addition"
[87883] "Simranjeet" "Singh"
[87885] "scored" "brace"
[87887] "crucial" "bronze"
[87889] "playoff" "even"
[87891] "part" "original"
[87893] "squad" "added"
[87895] "following" "International"
[87897] "Olympic" "Committee's"
[87899] "decision" "allow"
[87901] "alternate" "athletes"
[87903] "team" "events"
[87905] "COVID-19" "pandemic"
[87907] "LOVLINA" "BORGOHAIN"
[87909] "BRONZE" "Competing"
[87911] "maiden" "Olympics"
[87913] "Borgohain" "carved"
[87915] "niche" "history"
[87917] "Indian" "women's"
[87919] "boxing" "clinching"
[87921] "bronze" "India's"
[87923] "lone" "boxing"
[87925] "medal" "Tokyo"
[87927] "Games" "23-year-old"
[87929] "brought" "Baro"
[87931] "Mukhia" "village"
[87933] "Assam's" "Golaghat"
[87935] "district" "used"
[87937] "kickboxer" "like"
[87939] "two" "elder"
[87941] "sisters" "turned"
[87943] "boxing" "day"
[87945] "leave" "Olympic-bound"
[87947] "boxers" "group"
[87949] "training" "camp"
[87951] "Europe" "Borgohain"
[87953] "contracted" "COVID-19"
[87955] "missed" "opportunity"
[87957] "stop" "remarkable"
[87959] "campaign" "upstaged"
[87961] "former" "world"
[87963] "champion" "Nien-Chin"
[87965] "Chen" "Chinese"
[87967] "Taipei" "69kg"
[87969] "category" "became"
[87971] "third" "Indian"
[87973] "boxer" "ever"
[87975] "Vijender" "Singh"
[87977] "MC" "Mary"
[87979] "Kom" "finish"
[87981] "podium" "quadrennial"
[87983] "showpiece" "BAJRANG"
[87985] "PUNIA" "BRONZE"
[87987] "Bajrang" "Punia"
[87989] "won" "bronze"
[87991] "medal" "Olympic"
[87993] "debut" "outwitting"
[87995] "Daulet" "Niyazbekov"
[87997] "men's" "freestyle"
[87999] "65kg" "play-off"
[88001] "Tokyo" "Olympics"
[88003] "2020" "27-year-old"
[88005] "passionate" "wrestling"
[88007] "since" "childhood"
[88009] "kid" "wanted"
[88011] "wrestle" "Dangal"
[88013] "34kg" "Bajrang"
[88015] "insisted" "allowed"
[88017] "wrestle" "competition"
[88019] "meant" "weighed"
[88021] "60kg" "amazement"
[88023] "everyone" "pinned"
[88025] "opponent" "giving"
[88027] "glimpse" "determination"
[88029] "close" "yet"
[88031] "far" "WOMEN'S"
[88033] "HOCKEY" "TEAM"
[88035] "bottom-place" "finish"
[88037] "Rio" "2016"
[88039] "Indian" "women's"
[88041] "team" "capped"
[88043] "remarkable" "journey"
[88045] "Tokyo" "Olympics"
[88047] "finishing" "creditable"
[88049] "fourth" "Although"
[88051] "team's" "dream"
[88053] "securing" "maiden"
[88055] "Olympic" "medal"
[88057] "remained" "unfulfilled"
[88059] "lost" "3-4"
[88061] "Great" "Britain"
[88063] "closely" "contested"
[88065] "bronze" "medal"
[88067] "play-off" "side"
[88069] "recorded" "best"
[88071] "ever" "finish"
[88073] "Games" "odds"
[88075] "stacked" "firmly"
[88077] "brave" "determined"
[88079] "women's" "team"
[88081] "etched" "name"
[88083] "history" "books"
[88085] "entering" "maiden"
[88087] "Olympic" "semifinals"
[88089] "DEEPAK" "PUNIA"
[88091] "impressive" "campaign"
[88093] "saw" "race"
[88095] "semifinals" "Deepak"
[88097] "Punia" "10"
[88099] "seconds" "away"
[88101] "medal" "22-year-old"
[88103] "debutant" "ended"
[88105] "conceding" "take-down"
[88107] "86kg" "freestyle"
[88109] "bronze" "medal"
[88111] "play-off" "Wrestling"
[88113] "just" "route"
[88115] "Deepak" "hoped"
[88117] "find" "good"
[88119] "job" "help"
[88121] "sustain" "family"
[88123] "offered" "post"
[88125] "sepoy" "Indian"
[88127] "Army" "back"
[88129] "2016" "told"
[88131] "dream" "big"
[88133] "settle" "little"
[88135] "things" "took"
[88137] "advice" "two-time"
[88139] "Olympic" "medallist"
[88141] "Sushil" "Kumar"
[88143] "seriously" "gradually"
[88145] "made" "mark"
[88147] "became" "World"
[88149] "Cadet" "champion"
[88151] "2016" "2019"
[88153] "won" "junior"
[88155] "World" "title"
[88157] "fourth" "Indian"
[88159] "ever" "ADITI"
[88161] "ASHOK" "Ranked"
[88163] "200" "world"
[88165] "Aditi" "Ashok"
[88167] "Bengaluru" "competed"
[88169] "toe-to-toe" "best"
[88171] "golfers" "world"
[88173] "alas" "meant"
[88175] "coming" "agonisingly"
[88177] "close" "Aditi"
[88179] "finished" "fourth"
[88181] "Aditi" "started"
[88183] "playing" "golf"
[88185] "age" "five"
[88187] "Rio" "Olympics"
[88189] "finished" "41st"
[88191] "Aditi" "youngest"
[88193] "player" "Published"
[88195] "HT" "Digital"
[88197] "Content" "Services"
[88199] "permission" "MINT"
[88201] "query" "respect"
[88203] "article" "content"
[88205] "requirement" "please"
[88207] "contact" "Editor"
[88209] "Classification" "Language"
[88211] "ENGLISH" "Publication-Type"
[88213] "Newspaper" "Body"
[88215] "New" "Delhi"
[88217] "Aug" "2"
[88219] "Nobody" "speaking"
[88221] "Anna" "Kiesenhofer"
[88223] "ahead" "Tokyo"
[88225] "2020" "women's"
[88227] "road" "race"
[88229] "25" "July"
[88231] "now" "certainly"
[88233] "everyone" "knows"
[88235] "Anna" "Kiesenhofer"
[88237] "Austria" "rode"
[88239] "gold" "medal"
[88241] "women's" "Olympic"
[88243] "road" "race"
[88245] "Sunday" "Annemiek"
[88247] "Van" "Vleuten"
[88249] "Netherlands" "claimed"
[88251] "silver" "medal"
[88253] "Elisa" "Longho"
[88255] "Borghini" "Italy"
[88257] "third" "Biocon"
[88259] "chief" "Kiran"
[88261] "Mazumdar" "Shaw"
[88263] "also" "joined"
[88265] "people" "around"
[88267] "world" "congratulated"
[88269] "Anna" "math"
[88271] "genius" "won"
[88273] "gold" "medal"
[88275] "women's" "Olympic"
[88277] "road" "race"
[88279] "woman" "Superwoman"
[88281] "Kiran" "Mazumdar"
[88283] "Shaw" "tweeted"
[88285] "woman" "Superwoman"
[88287] "#55357" "#56399"
[88289] "#55357" "#56399"
[88291] "#55357" "#56399"
[88293] "pic.twitter.com" "5N8ij5RlAk"
[88295] "Kiran" "Mazumdar-Shaw"
[88297] "@kiranshaw" "July"
[88299] "31" "2021"
[88301] "Anna" "Kiesenhofer"
[88303] "took" "Instagram"
[88305] "express" "gratitude"
[88307] "wrote" "Thanks"
[88309] "bottom" "heart"
[88311] "last" "months"
[88313] "years" "know"
[88315] "know" "essence"
[88317] "achievement" "different"
[88319] "major" "goal"
[88321] "set" "past"
[88323] "last" "days"
[88325] "crazy" "View"
[88327] "post" "Instagram"
[88329] "post" "shared"
[88331] "Anna" "Kiesenhofer"
[88333] "@annakiesenhofer" "Kiesenhofer's"
[88335] "curriculum" "vitae"
[88337] "features" "academic"
[88339] "accomplishments" "cycling"
[88341] "ones" "degree"
[88343] "Technical" "University"
[88345] "Vienna" "studied"
[88347] "Cambridge" "doctorate"
[88349] "Polytechnic" "University"
[88351] "Catalonia" "fact"
[88353] "even" "professional"
[88355] "contract" "season"
[88357] "entered" "Olympic"
[88359] "road" "race"
[88361] "without" "teammate"
[88363] "-With" "agency"
[88365] "inputs" "Published"
[88367] "HT" "Digital"
[88369] "Content" "Services"
[88371] "permission" "MINT"
[88373] "query" "respect"
[88375] "article" "content"
[88377] "requirement" "please"
[88379] "contact" "Editor"
[88381] "Classification" "Language"
[88383] "ENGLISH" "Publication-Type"
[88385] "Newspaper" "Body"
[88387] "Lovlina" "Borgohain"
[88389] "loves" "dark"
[88391] "horse" "tag"
[88393] "Olympics" "many"
[88395] "talking" "noted"
[88397] "names" "boxing"
[88399] "contingent" "medal"
[88401] "prospects" "Assam"
[88403] "girl" "stayed"
[88405] "radar" "end"
[88407] "ended" "India's"
[88409] "sole" "boxing"
[88411] "medallist" "Tokyo"
[88413] "Games" "shy"
[88415] "person" "like"
[88417] "social" "media"
[88419] "lot" "main"
[88421] "focus" "just"
[88423] "Olympic" "medal"
[88425] "used" "stay"
[88427] "away" "limelight"
[88429] "distracting" "says"
[88431] "Lovlina" "speaking"
[88433] "us" "Tokyo"
[88435] "day" "medal"
[88437] "win" "shyness"
[88439] "comes" "childhood"
[88441] "tall" "frame"
[88443] "made" "impossible"
[88445] "make" "friends"
[88447] "5" "feet"
[88449] "10" "inches"
[88451] "boxer" "recounts"
[88453] "tall" "even"
[88455] "kid" "used"
[88457] "cause" "problems"
[88459] "school" "many"
[88461] "friends" "classmates"
[88463] "tiny" "compared"
[88465] "people" "talk"
[88467] "much" "sports"
[88469] "helped" "emerge"
[88471] "changed" "started"
[88473] "playing" "sports"
[88475] "suddenly" "new"
[88477] "friends" "sports"
[88479] "helped" "indebted"
[88481] "says" "23-year-old"
[88483] "won" "bronze"
[88485] "welterweight" "category"
[88487] "Tokyo" "Olympics"
[88489] "admits" "little"
[88491] "upset" "able"
[88493] "get" "shot"
[88495] "gold" "little"
[88497] "sad" "Ever"
[88499] "since" "thought"
[88501] "competing" "Olympics"
[88503] "dreamt" "winning"
[88505] "gold" "says"
[88507] "adding" "get"
[88509] "medal" "relieved"
[88511] "Lovlina" "comes"
[88513] "Golaghat" "town"
[88515] "Upper" "Assam"
[88517] "pugilist" "tells"
[88519] "us" "celebrations"
[88521] "village" "begun"
[88523] "even" "bagged"
[88525] "medal" "many"
[88527] "people" "house"
[88529] "even" "get"
[88531] "talk" "parents"
[88533] "properly" "Bas"
[88535] "minute" "phone"
[88537] "par" "baat"
[88539] "ho" "paayi"
[88541] "says" "laugh"
[88543] "constant" "interactions"
[88545] "parents" "helped"
[88547] "recover" "disappointment"
[88549] "semi-final" "loss"
[88551] "semifinal" "pretty"
[88553] "upset" "lost"
[88555] "parents" "told"
[88557] "proud" "whole"
[88559] "Assam" "India"
[88561] "proud" "helped"
[88563] "says" "Lovlina"
[88565] "However" "boxer"
[88567] "clarifies" "fully"
[88569] "satisfied" "Just"
[88571] "upset" "mean"
[88573] "satisfied" "want"
[88575] "content" "bronze"
[88577] "medal" "Sapna"
[88579] "gold" "ka"
[88581] "hai" "aur"
[88583] "rahega" "says"
[88585] "third" "Indian"
[88587] "boxer" "win"
[88589] "Olympic" "medal"
[88591] "two" "Vijender"
[88593] "Singh" "Mary"
[88595] "Kom" "feel"
[88597] "intimidating" "bracketed"
[88599] "alongside" "legends"
[88601] "feels" "great"
[88603] "replies" "Lovlina"
[88605] "adding" "grew"
[88607] "watching" "won"
[88609] "Olympics" "dream"
[88611] "emulating" "Now"
[88613] "feel" "honoured"
[88615] "name" "taken"
[88617] "alongside" "two"
[88619] "legends" "soon"
[88621] "assured" "medal"
[88623] "winning" "quarter-final"
[88625] "bout" "news"
[88627] "reports" "muddy"
[88629] "dilapidated" "road"
[88631] "leading" "village"
[88633] "finally" "repair"
[88635] "Lovlina" "laughs"
[88637] "idea" "Olympic"
[88639] "medal" "facilitating"
[88641] "development" "region"
[88643] "just" "village"
[88645] "Upper" "Assam"
[88647] "many" "roads"
[88649] "pretty" "bad"
[88651] "always" "travelled"
[88653] "muddy" "road"
[88655] "get" "village"
[88657] "says" "feels"
[88659] "fortunate" "chance"
[88661] "something" "good"
[88663] "region" "even"
[88665] "accidentally" "elaborates"
[88667] "time" "told"
[88669] "see" "paved"
[88671] "road" "feels"
[88673] "good" "whatever"
[88675] "part" "played"
[88677] "put" "village"
[88679] "map" "Classification"
[88681] "Language" "ENGLISH"
[88683] "Publication-Type" "Newspaper"
[88685] "Body" "Abhinav"
[88687] "Bindra" "won"
[88689] "gold" "medal"
[88691] "2008" "Beijing"
[88693] "Olympics" "shooting"
[88695] "finally" "company"
[88697] "Neeraj" "Chopra"
[88699] "won" "gold"
[88701] "javelin" "throw"
[88703] "Abhinav" "Bindra"
[88705] "India's" "first-ever"
[88707] "Olympic" "gold"
[88709] "medallist" "one"
[88711] "Saturday" "August"
[88713] "7" "brought"
[88715] "glory" "nation"
[88717] "2008" "Beijing"
[88719] "Olympics" "winning"
[88721] "gold" "10-metre"
[88723] "air" "rifle"
[88725] "event" "shooting"
[88727] "lonely" "Bindra"
[88729] "now" "joined"
[88731] "23-year" "old"
[88733] "Neeraj" "Chopra"
[88735] "Panipat" "second"
[88737] "gold" "medallist"
[88739] "individual" "events"
[88741] "Olympic" "Games"
[88743] "won" "men's"
[88745] "javelin" "throw"
[88747] "final" "87.58-metre"
[88749] "throw" "Apart"
[88751] "achieving" "glory"
[88753] "month" "August"
[88755] "Bindra" "going"
[88757] "August" "11"
[88759] "2008" "Neeraj"
[88761] "Chopra" "getting"
[88763] "August" "7"
[88765] "2021" "things"
[88767] "common" "athletes"
[88769] "may" "different"
[88771] "backgrounds" "different"
[88773] "people" "one"
[88775] "common" "thing"
[88777] "binds" "together"
[88779] "dedication" "achieve"
[88781] "excellence" "whatever"
[88783] "Speaking" "India"
[88785] "Today" "Manisha"
[88787] "Malhotra" "Head"
[88789] "Sports" "Excellence"
[88791] "Scouting" "JSW"
[88793] "Sports" "worked"
[88795] "Abhinav" "Bindra"
[88797] "Neeraj" "Chopra"
[88799] "said" "knew"
[88801] "took" "two"
[88803] "become" "champions"
[88805] "ready" "put"
[88807] "hard" "yards"
[88809] "One" "common"
[88811] "thing" "Abhinav"
[88813] "Neeraj" "everything"
[88815] "work" "towards"
[88817] "goal" "whether"
[88819] "diet" "hard"
[88821] "work" "exercise"
[88823] "fitness" "whatever"
[88825] "took" "Bindra"
[88827] "Neeraj" "left"
[88829] "stone" "unturned"
[88831] "athlete" "trains"
[88833] "like" "level"
[88835] "confidence" "know"
[88837] "done" "anything"
[88839] "satisfaction" "just"
[88841] "relaxed" "perform"
[88843] "best" "know"
[88845] "nothing" "leave"
[88847] "universe" "things"
[88849] "affect" "performance"
[88851] "day" "Manisha"
[88853] "told" "India"
[88855] "Today" "Bindra"
[88857] "penned" "heartfelt"
[88859] "letter" "shared"
[88861] "Twitter" "Neeraj"
[88863] "saying" "Welcome"
[88865] "club" "added"
[88867] "waited" "long"
[88869] "time" "someone"
[88871] "else" "join"
[88873] "gold" "medallist"
[88875] "individual" "competitions"
[88877] "Olympics" "Classification"
[88879] "Language" "ENGLISH"
[88881] "Publication-Type" "Newspaper"
[88883] "Body" "New"
[88885] "Delhi" "July"
[88887] "24" "winning"
[88889] "silver" "medal"
[88891] "Tokyo" "Olympics"
[88893] "weightlifter" "Mirabai"
[88895] "Chanu" "Saturday"
[88897] "said" "dream"
[88899] "come" "true"
[88901] "also" "thanked"
[88903] "entire" "country"
[88905] "praying" "victory"
[88907] "Mirabai" "Chanu"
[88909] "opened" "India's"
[88911] "medals" "tally"
[88913] "Saturday" "bagged"
[88915] "silver" "Women's"
[88917] "49kg" "category"
[88919] "Tokyo" "International"
[88921] "Forum" "really"
[88923] "dream" "come"
[88925] "true" "like"
[88927] "dedicate" "medal"
[88929] "country" "like"
[88931] "thank" "billion"
[88933] "prayers" "Indians"
[88935] "journey" "like"
[88937] "thank" "family"
[88939] "especially" "mother"
[88941] "lot" "sacrifices"
[88943] "believing" "said"
[88945] "Chanu" "statement"
[88947] "posted" "Twitter"
[88949] "account" "Also"
[88951] "special" "thanks"
[88953] "government" "supporting"
[88955] "Ministry" "Sports"
[88957] "SAI" "I0A"
[88959] "Weightlifting" "Federation"
[88961] "India" "Railways"
[88963] "OGQ" "sponsors"
[88965] "marketing" "agency"
[88967] "IOS" "continuous"
[88969] "support" "journey"
[88971] "added" "statement"
[88973] "Chanu" "said"
[88975] "like" "give"
[88977] "special" "thanks"
[88979] "coach" "Vijay"
[88981] "Sharma" "sir"
[88983] "support" "staff"
[88985] "continuous" "hard"
[88987] "work" "motivation"
[88989] "training" "Thank"
[88991] "entire" "weightlifting"
[88993] "fraternity" "countrymen"
[88995] "Chanu" "lifted"
[88997] "total" "202"
[88999] "kg" "87kg"
[89001] "snatch" "115kg"
[89003] "clean" "jerk"
[89005] "four" "successful"
[89007] "attempts" "across"
[89009] "competition" "China's"
[89011] "Zhihui" "Hou"
[89013] "bagged" "gold"
[89015] "total" "210kg"
[89017] "created" "new"
[89019] "Olympic" "Record"
[89021] "Indonesia's" "Windy"
[89023] "Cantika" "Aisah"
[89025] "grabbed" "bronze"
[89027] "total" "194kg"
[89029] "monumental" "silver"
[89031] "medal" "Chanu"
[89033] "become" "second"
[89035] "Indian" "weightlifter"
[89037] "win" "Olympic"
[89039] "medal" "Karnam"
[89041] "Malleswari" "bagged"
[89043] "bronze" "69kg"
[89045] "category" "2000"
[89047] "Sydney" "Games"
[89049] "weightlifting" "arena"
[89051] "opened" "women"
[89053] "first" "time"
[89055] "Classification" "Language"
[89057] "ENGLISH" "Publication-Type"
[89059] "Newspaper" "Body"
[89061] "Indian" "men"
[89063] "hockey" "team"
[89065] "take" "Great"
[89067] "Britain" "quarterfinals"
[89069] "Tokyo" "Olympics"
[89071] "won" "four"
[89073] "five" "games"
[89075] "group" "stage"
[89077] "India" "men's"
[89079] "hockey" "team"
[89081] "recovered" "admirably"
[89083] "1-7" "humbling"
[89085] "Australia" "win"
[89087] "three" "games"
[89089] "row" "qualify"
[89091] "quarter-finals" "event"
[89093] "India" "virtue"
[89095] "winning" "four"
[89097] "five" "games"
[89099] "Pool" "advanced"
[89101] "next" "stage"
[89103] "India" "started"
[89105] "campaign" "win"
[89107] "New" "Zealand"
[89109] "mauling" "Australia"
[89111] "next" "game"
[89113] "threatened" "bring"
[89115] "campaign" "came"
[89117] "back" "hard"
[89119] "every" "side"
[89121] "way" "Pool"
[89123] "blown" "away"
[89125] "storm" "whether"
[89127] "Argentina" "Spain"
[89129] "hosts" "Japan"
[89131] "Can" "Indian"
[89133] "men" "make"
[89135] "historical" "journey"
[89137] "reaching" "quarter-finals"
[89139] "41" "years"
[89141] "special" "details"
[89143] "game" "India"
[89145] "vs" "Great"
[89147] "Britain" "men's"
[89149] "hockey" "quarter-final"
[89151] "match" "start"
[89153] "TheIndia" "vs"
[89155] "Great" "Britain"
[89157] "men's" "hockey"
[89159] "quarter-final" "match"
[89161] "begin" "5.30"
[89163] "PM" "IST"
[89165] "Sunday" "August"
[89167] "1" "India"
[89169] "vs" "Great"
[89171] "Britain" "men's"
[89173] "hockey" "quarter-final"
[89175] "match" "played"
[89177] "TheIndia" "vs"
[89179] "Great" "Britain"
[89181] "men's" "hockey"
[89183] "quarter-final" "match"
[89185] "played" "Oi"
[89187] "Hockey" "Stadium"
[89189] "North" "Pitch"
[89191] "Tokyo" "Japan"
[89193] "TV" "channels"
[89195] "broadcast" "India"
[89197] "vs" "Great"
[89199] "Britain" "men's"
[89201] "hockey" "quarter-final"
[89203] "match" "TheIndia"
[89205] "vs" "Great"
[89207] "Britain" "men's"
[89209] "hockey" "quarter-final"
[89211] "matchwill" "broadcast"
[89213] "Sony" "Sports"
[89215] "Network" "India"
[89217] "watch" "live"
[89219] "streaming" "India"
[89221] "vs" "Great"
[89223] "Britain" "men's"
[89225] "hockey" "quarter-final"
[89227] "match" "Fans"
[89229] "can" "catch"
[89231] "live" "streaming"
[89233] "theIndia" "vs"
[89235] "Great" "Britain"
[89237] "men's" "hockey"
[89239] "quarter-final" "matchon"
[89241] "SonyLIV" "website"
[89243] "SonyLIV" "app"
[89245] "India" "Classification"
[89247] "Language" "ENGLISH"
[89249] "Publication-Type" "Newspaper"
[89251] "Body" "Tokyo"
[89253] "Olympics" "2020"
[89255] "Mirabai" "Chanu"
[89257] "wins" "silver"
[89259] "medal" "weightlifting"
[89261] "Rice" "sports"
[89263] "club" "culture"
[89265] "killer" "instinct"
[89267] "help" "Manipur"
[89269] "produce" "world-class"
[89271] "lifter" "like"
[89273] "silver-medalist" "Chanu"
[89275] "Mirabai" "Chanu"
[89277] "wins" "India's"
[89279] "first" "medal"
[89281] "Tokyo" "Olympics"
[89283] "2020" "one"
[89285] "India's" "greatest"
[89287] "moments" "weightlifting"
[89289] "hoisted" "reality"
[89291] "legendary" "Karnam"
[89293] "Malleswari" "Sydney"
[89295] "Games" "2000"
[89297] "state" "Manipur"
[89299] "laying" "ground"
[89301] "moment" "sun"
[89303] "albeit" "21"
[89305] "years" "later"
[89307] "Barring" "Beijing"
[89309] "Games" "state"
[89311] "sent" "four"
[89313] "different" "women"
[89315] "weightlifters" "five"
[89317] "Olympics" "generational"
[89319] "effort" "culminated"
[89321] "Mirabai" "Saikom"
[89323] "Chanu's" "monstrous"
[89325] "202-kg" "combined"
[89327] "lift" "Tokyo"
[89329] "Olympics" "silver"
[89331] "medal" "49-kg"
[89333] "weightlifting" "category"
[89335] "Two" "decades"
[89337] "consistently" "churning"
[89339] "weightlifters" "among"
[89341] "best" "world"
[89343] "Manipur's" "reminder"
[89345] "Olympics" "once-in-four-years"
[89347] "event" "way"
[89349] "life" "Silver"
[89351] "Medal" "#TeamIndia"
[89353] "Saikhom" "Mirabai"
[89355] "Chanu" "Wins"
[89357] "India's" "First"
[89359] "Medal" "Settles"
[89361] "Silver" "#Weightlifting"
[89363] "#Tokyo2020" "#Olympics"
[89365] "#MirabaiChanu" "Doordarshan"
[89367] "Sports" "@ddsportschannel"
[89369] "July" "24"
[89371] "2021" "way"
[89373] "life" "begins"
[89375] "young" "age"
[89377] "state's" "unique"
[89379] "way" "organised"
[89381] "sport" "young"
[89383] "children" "clubs"
[89385] "Former" "Commissioner"
[89387] "Youth" "Affairs"
[89389] "Sports" "Manipur"
[89391] "R" "K"
[89393] "Nimai" "Singh"
[89395] "tries" "put"
[89397] "words" "lay"
[89399] "land" "says"
[89401] "sport" "club"
[89403] "culture" "part"
[89405] "Manipur" "centuries"
[89407] "now" "clubs"
[89409] "might" "necessarily"
[89411] "dedicated" "single"
[89413] "sport" "clubs"
[89415] "associated" "state"
[89417] "national" "associations"
[89419] "present" "love"
[89421] "sport" "outlet"
[89423] "activity" "young"
[89425] "kids" "Manipuri"
[89427] "child" "option"
[89429] "studying" "play"
[89431] "Early" "exposure"
[89433] "Manipur" "children"
[89435] "afforded" "opportunity"
[89437] "decide" "sport"
[89439] "play" "sport"
[89441] "pick" "time"
[89443] "reach" "teens"
[89445] "may" "specialists"
[89447] "particular" "sport"
[89449] "consistent" "level"
[89451] "physical" "activity"
[89453] "leads" "far"
[89455] "easier" "transition"
[89457] "young" "athletes"
[89459] "moving" "professionally"
[89461] "discipline" "case"
[89463] "start" "century"
[89465] "steady" "stream"
[89467] "women" "weightlifting"
[89469] "heading" "farthest"
[89471] "corners" "globe"
[89473] "compete" "best"
[89475] "tournaments" "offer"
[89477] "continues" "fuel"
[89479] "desire" "casual"
[89481] "aspect" "life"
[89483] "become" "centre-point"
[89485] "existence" "happens"
[89487] "kids" "start"
[89489] "grow" "beginning"
[89491] "90" "s"
[89493] "people" "started"
[89495] "realise" "sport"
[89497] "earning" "profession"
[89499] "says" "Singh"
[89501] "opening" "Sports"
[89503] "Authority" "India"
[89505] "centre" "Imphal"
[89507] "suddenly" "gave"
[89509] "weightlifters" "state"
[89511] "opportunity" "go"
[89513] "spare" "parts"
[89515] "automobiles" "weights"
[89517] "real" "imported"
[89519] "equipment" "Former"
[89521] "weightlifters" "also"
[89523] "part" "change"
[89525] "careers" "transitioned"
[89527] "athletes" "coaches"
[89529] "Mirabai" "Chanu's"
[89531] "story" "trudges"
[89533] "along" "lines"
[89535] "young" "12-year-old"
[89537] "child" "lifting"
[89539] "heavy" "logs"
[89541] "hometown" "Nongpok"
[89543] "Kakching" "44"
[89545] "kilometres" "away"
[89547] "Imphal" "one"
[89549] "day" "got"
[89551] "noticed" "Anita"
[89553] "Chanu" "former"
[89555] "international" "weightlifter"
[89557] "coach" "Killer"
[89559] "instinct" "one"
[89561] "Chanu" "saw"
[89563] "younger" "Chanu"
[89565] "something" "Manipuri"
[89567] "experts" "sport"
[89569] "say" "intrinsic"
[89571] "part" "cultural"
[89573] "identity" "saw"
[89575] "lift" "first"
[89577] "time" "killer"
[89579] "instinct" "says"
[89581] "Chanu" "phone"
[89583] "Indian" "Express"
[89585] "killer" "instinct"
[89587] "quantifiable" "Explosive"
[89589] "strength" "stresses"
[89591] "Chanu" "explains"
[89593] "saying" "people"
[89595] "northeastern" "states"
[89597] "India" "smaller"
[89599] "height" "make"
[89601] "Maradona" "Messi-esque"
[89603] "low" "centre"
[89605] "gravity" "crucial"
[89607] "aspect" "Manipur"
[89609] "well" "sport"
[89611] "weightlifting" "football"
[89613] "boxing" "low"
[89615] "centre" "gravity"
[89617] "saw" "Mirabai"
[89619] "pick" "almost"
[89621] "four" "times"
[89623] "body" "weight"
[89625] "across" "five"
[89627] "successful" "lifts"
[89629] "snatch" "clean"
[89631] "jerk" "categories"
[89633] "just" "height"
[89635] "body" "type"
[89637] "region" "defines"
[89639] "abilities" "secret"
[89641] "also" "lies"
[89643] "put" "bodies"
[89645] "rather" "put"
[89647] "bodies" "generations"
[89649] "Something" "land"
[89651] "days" "ago"
[89653] "eve" "Indian"
[89655] "sportspeople" "leaving"
[89657] "Tokyo" "Games"
[89659] "Prime" "Minister"
[89661] "Narendra" "Modi"
[89663] "asked" "athlete's"
[89665] "uncle" "Kaunsi"
[89667] "chakki" "ka"
[89669] "atta" "khilate"
[89671] "ho" "question"
[89673] "must" "now"
[89675] "asked" "Manipur's"
[89677] "athletes" "except"
[89679] "instead" "wheat"
[89681] "consumption" "rice"
[89683] "dictates" "success"
[89685] "sport" "like"
[89687] "weightlifting" "athletes"
[89689] "lower" "weight"
[89691] "categories" "come"
[89693] "Asian" "countries"
[89695] "like" "China"
[89697] "South" "Korea"
[89699] "countries" "famous"
[89701] "sticky" "rice"
[89703] "part" "diet"
[89705] "Manipur" "people"
[89707] "eat" "rice"
[89709] "primary" "source"
[89711] "energy" "says"
[89713] "Sunil" "Elangbam"
[89715] "secretary" "Manipur"
[89717] "weightlifting" "simplistic"
[89719] "way" "nutrition"
[89721] "one" "generational"
[89723] "staple" "considered"
[89725] "prime" "source"
[89727] "fuel" "experts"
[89729] "essential" "carbohydrates"
[89731] "end" "aiding"
[89733] "physical" "training"
[89735] "carbohydrates" "twin"
[89737] "job" "easy"
[89739] "digest" "pushing"
[89741] "body" "recover"
[89743] "faster" "intense"
[89745] "workouts" "combination"
[89747] "right" "kind"
[89749] "food" "lay"
[89751] "land" "generations"
[89753] "women" "look"
[89755] "weightlifting" "brewed"
[89757] "perfect" "storm"
[89759] "silver" "Tokyo"
[89761] "borne" "killer"
[89763] "instinct" "now"
[89765] "adorns" "state"
[89767] "just" "glory"
[89769] "Olympics" "Classification"
[89771] "Language" "ENGLISH"
[89773] "Publication-Type" "Newspaper"
[89775] "Body" "continue"
[89777] "bringing" "small"
[89779] "processions" "support"
[89781] "team" "two"
[89783] "members" "state"
[89785] "Nikki" "Pradhan"
[89787] "Salima" "Tete"
[89789] "defeat" "Indian"
[89791] "women's" "hockey"
[89793] "team" "opening"
[89795] "match" "Tokeyo"
[89797] "Olympics" "Saturday"
[89799] "failed" "daunt"
[89801] "spirited" "enthusiasts"
[89803] "Jharkhand's" "Simdega"
[89805] "continue" "bringing"
[89807] "small" "processions"
[89809] "villages" "support"
[89811] "team" "two"
[89813] "members" "Jharkhand"
[89815] "Nikki" "Pradhan"
[89817] "Khunti" "Simdega"
[89819] "girl" "Salima"
[89821] "Tete" "Taking"
[89823] "world" "number"
[89825] "one" "Netherlands"
[89827] "like" "playing"
[89829] "final" "match"
[89831] "team" "played"
[89833] "rather" "well"
[89835] "Hockey" "Jharkhand"
[89837] "president" "Manoj"
[89839] "Konbegi" "defended"
[89841] "national" "women's"
[89843] "team" "despite"
[89845] "1-5" "defeat"
[89847] "inaugural" "match"
[89849] "Small" "children"
[89851] "keep" "enthusiasm"
[89853] "alive" "Simdega"
[89855] "going" "around"
[89857] "respective" "villages"
[89859] "carrying" "banner"
[89861] "saying" "Cheer"
[89863] "India" "shouting"
[89865] "slogans" "supporting"
[89867] "team" "Nikki"
[89869] "didi" "ko"
[89871] "goal" "bachana"
[89873] "hai" "Salima"
[89875] "didi" "ko"
[89877] "goal" "marna"
[89879] "hai" "Bharat"
[89881] "ko" "gold"
[89883] "jitna" "hai"
[89885] "slogans" "besides"
[89887] "Cheers" "India"
[89889] "Chak" "de"
[89891] "India" "shout"
[89893] "roaming" "around"
[89895] "villages" "produced"
[89897] "many" "hockey"
[89899] "stars" "Besides"
[89901] "shouting" "slogans"
[89903] "children" "also"
[89905] "dance" "tune"
[89907] "two" "songs"
[89909] "composed" "local"
[89911] "artistes" "recently"
[89913] "also" "uploaded"
[89915] "YouTube" "One"
[89917] "released" "Wednesday"
[89919] "Konbegi" "informed"
[89921] "Hindi" "song"
[89923] "lyrics" "runs"
[89925] "like" "Khelenge"
[89927] "hockey" "dilojaan"
[89929] "se" "play"
[89931] "hockey" "wholeheartedly"
[89933] "adding" "sung"
[89935] "local" "artistes"
[89937] "Kashinath" "Nayak"
[89939] "Jagannath" "Ram"
[89941] "one" "Nagpuri"
[89943] "song" "urging"
[89945] "Khelo" "khelo"
[89947] "khelo" "hockey"
[89949] "pura" "dam"
[89951] "lagake" "khelo"
[89953] "play" "hockey"
[89955] "energy" "presented"
[89957] "Laldhan" "Nayak"
[89959] "launched" "sub-junior"
[89961] "national" "hockey"
[89963] "championship" "held"
[89965] "Simdega" "last"
[89967] "year" "popular"
[89969] "song" "became"
[89971] "hit" "local"
[89973] "Nagpuri" "dialect"
[89975] "also" "narrates"
[89977] "achievements" "hockey"
[89979] "legends" "Jaipal"
[89981] "Singh" "Sylvanus"
[89983] "Dungdung" "Michael"
[89985] "Kindo" "Sumrai"
[89987] "Tete" "Kanti"
[89989] "Baa" "song"
[89991] "played" "whenever"
[89993] "hockey" "match"
[89995] "even" "gatherings"
[89997] "Konbegi" "said"
[89999] "popularity" "adding"
[90001] "also" "found"
[90003] "playing" "social"
[90005] "functions" "Even"
[90007] "inspired" "Laldhanji's"
[90009] "song" "made"
[90011] "Hindi" "understood"
[90013] "people" "outside"
[90015] "state" "Kashillal"
[90017] "Nayak" "replied"
[90019] "asked" "chose"
[90021] "render" "song"
[90023] "Hindi" "instead"
[90025] "Nagpuri" "people"
[90027] "region" "including"
[90029] "Simdega" "produced"
[90031] "many" "hockey"
[90033] "greats" "hockey"
[90035] "blood" "Konbegi"
[90037] "reminded" "adding"
[90039] "trying" "keep"
[90041] "enthusiasm" "intact"
[90043] "launching" "songs"
[90045] "organising" "small"
[90047] "gatherings" "villages"
[90049] "speak" "Salima"
[90051] "also" "send"
[90053] "video" "clips"
[90055] "teammates" "know"
[90057] "seriously" "young"
[90059] "children" "support"
[90061] "informed" "things"
[90063] "may" "impact"
[90065] "game" "Tokeyo"
[90067] "surely" "motivate"
[90069] "children" "future"
[90071] "hockey" "part"
[90073] "country" "Konbegi"
[90075] "added" "justify"
[90077] "activities" "Classification"
[90079] "Language" "ENGLISH"
[90081] "Publication-Type" "Newspaper"
[90083] "Body" "Efforts"
[90085] "Naveen" "Patnaik"
[90087] "government" "Odisha"
[90089] "support" "hockey"
[90091] "bore" "fruit"
[90093] "Thursday" "Indian"
[90095] "men's" "team"
[90097] "bagged" "bronze"
[90099] "Tokyo" "Olympics"
[90101] "Odisha" "government"
[90103] "official" "sponsor"
[90105] "Indian" "hockey"
[90107] "teams" "men"
[90109] "women" "since"
[90111] "2018" "contracted"
[90113] "sponsor" "teams"
[90115] "till" "2023"
[90117] "deal" "worth"
[90119] "Rs" "100"
[90121] "crore" "Congratulating"
[90123] "players" "Naveen"
[90125] "played" "hockey"
[90127] "schooldays" "goalkeeper"
[90129] "said" "Many"
[90131] "congratulations" "hockey"
[90133] "team" "whole"
[90135] "India" "excited"
[90137] "Odisha" "course"
[90139] "behind" "wish"
[90141] "best" "looking"
[90143] "forward" "receiving"
[90145] "Indian" "Olympic"
[90147] "hockey" "team"
[90149] "Bhubaneswar" "16th"
[90151] "month" "best"
[90153] "future" "best"
[90155] "Naveen" "also"
[90157] "tweeted" "Brilliant"
[90159] "Blue" "Congratulations"
[90161] "Indian" "Men's"
[90163] "Hockey" "team"
[90165] "spectacular" "victory"
[90167] "give" "us"
[90169] "Olympic" "medal"
[90171] "41" "long"
[90173] "years" "historic"
[90175] "win" "Tokyo"
[90177] "2020" "inspire"
[90179] "generation" "sportspersons"
[90181] "best" "future"
[90183] "Brilliant" "Blue"
[90185] "Congratulations" "Indian"
[90187] "Men's" "#Hockey"
[90189] "Team" "spectacular"
[90191] "victory" "give"
[90193] "us" "Olympic"
[90195] "medal" "41"
[90197] "long" "years"
[90199] "historic" "win"
[90201] "#Tokyo2020" "inspire"
[90203] "generation" "sportspersons"
[90205] "best" "future"
[90207] "#Cheer4India" "@thehockeyindia"
[90209] "Showering" "praise"
[90211] "Naveen" "support"
[90213] "men's" "team"
[90215] "captain" "Manpreet"
[90217] "Singh" "said"
[90219] "special" "moment"
[90221] "us" "finally"
[90223] "achieved" "dream"
[90225] "winning" "Olympic"
[90227] "medal" "special"
[90229] "occasion" "like"
[90231] "express" "special"
[90233] "thanks" "Hon'ble"
[90235] "chief" "minister"
[90237] "Odisha" "Naveen"
[90239] "Patnaikji" "supported"
[90241] "us" "throughout"
[90243] "journey" "vision"
[90245] "hockey" "encouragement"
[90247] "helped" "us"
[90249] "achieve" "remarkable"
[90251] "feat" "country"
[90253] "everyone" "supporting"
[90255] "cricket" "Hon'ble"
[90257] "CM" "chose"
[90259] "hockey" "today"
[90261] "can" "see"
[90263] "result" "vision"
[90265] "like" "say"
[90267] "thank" "much"
[90269] "Sir" "chief"
[90271] "minister" "spoke"
[90273] "family" "members"
[90275] "two" "Odisha"
[90277] "players" "Birendra"
[90279] "Lakra" "Amit"
[90281] "Rohidas" "part"
[90283] "team" "Official"
[90285] "sources" "said"
[90287] "Odisha" "government"
[90289] "planning" "organise"
[90291] "grand" "welcome"
[90293] "Indian" "contingent"
[90295] "arrives" "Bhubaneswar"
[90297] "August" "16"
[90299] "one" "came"
[90301] "forward" "sponsor"
[90303] "hockey" "chief"
[90305] "minister" "Naveen"
[90307] "Patnaik" "took"
[90309] "responsibility" "upon"
[90311] "Today" "proud"
[90313] "moment" "India"
[90315] "talk" "Chak"
[90317] "De" "India"
[90319] "leadership" "vision"
[90321] "Naveen" "Patnaik"
[90323] "reflected" "hockey"
[90325] "said" "BJD"
[90327] "spokesperson" "Rajya"
[90329] "Sabha" "member"
[90331] "Sasmit" "Patra"
[90333] "2018" "official"
[90335] "sponsor" "Sahara"
[90337] "backed" "putting"
[90339] "future" "Indian"
[90341] "hockey" "jeopardy"
[90343] "Odisha" "sports"
[90345] "minister" "Tusharkanti"
[90347] "Behera" "said"
[90349] "Thursday" "promote"
[90351] "hockey" "worked"
[90353] "two-fold" "strategy"
[90355] "build" "infrastructure"
[90357] "groom" "encourage"
[90359] "talent" "states"
[90361] "declined" "host"
[90363] "men's" "hockey"
[90365] "World" "Cup"
[90367] "Odisha" "came"
[90369] "forward" "organise"
[90371] "Kalinga" "Stadium"
[90373] "refurbished" "record"
[90375] "time" "second"
[90377] "astroturf" "also"
[90379] "laid" "time"
[90381] "Sources" "said"
[90383] "nearly" "Rs"
[90385] "450" "crore"
[90387] "spent" "Money"
[90389] "never" "constraint"
[90391] "promoting" "sports"
[90393] "now" "building"
[90395] "world-class" "hockey"
[90397] "stadium" "Rourkela"
[90399] "upcoming" "Men's"
[90401] "Hockey" "World"
[90403] "Cup" "2020-21"
[90405] "earmarked" "Rs"
[90407] "300" "crore"
[90409] "building" "sports"
[90411] "infrastructure" "Besides"
[90413] "channelling" "money"
[90415] "district" "mineral"
[90417] "fund" "build"
[90419] "infrastructure" "minister"
[90421] "said" "new"
[90423] "stadium" "Rourkela"
[90425] "built" "cost"
[90427] "around" "Rs"
[90429] "100" "crore"
[90431] "capacity" "hold"
[90433] "20,000" "spectators"
[90435] "Now" "laying"
[90437] "astroturfs" "17"
[90439] "blocks" "Sundergarh"
[90441] "considered" "home"
[90443] "hockey" "Odisha"
[90445] "said" "Behera"
[90447] "give" "best"
[90449] "possible" "grooming"
[90451] "players" "Odisha"
[90453] "government" "along"
[90455] "Tata" "Steel"
[90457] "Tata" "Trusts"
[90459] "set" "Naval"
[90461] "Tata" "Hockey"
[90463] "Academy" "premises"
[90465] "Kalinga" "Stadium"
[90467] "2019" "Odisha"
[90469] "Naval" "Tata"
[90471] "Hockey" "High"
[90473] "Performance" "Centre"
[90475] "currently" "grooming"
[90477] "61" "players"
[90479] "number" "reach"
[90481] "80" "September"
[90483] "brought" "raw"
[90485] "talent" "rural"
[90487] "belt" "various"
[90489] "programmes" "worked"
[90491] "ensure" "reach"
[90493] "next" "level"
[90495] "training" "astroturf"
[90497] "now" "par"
[90499] "western" "players"
[90501] "terms" "speed"
[90503] "resilience" "Rajiv"
[90505] "Seth" "project"
[90507] "director" "centre"
[90509] "said" "Classification"
[90511] "Language" "ENGLISH"
[90513] "Publication-Type" "Newspaper"
[90515] "Body" "India"
[90517] "created" "history"
[90519] "entered" "semi-finals"
[90521] "big" "tournament"
[90523] "lost" "Argentina"
[90525] "women's" "team"
[90527] "gave" "enough"
[90529] "Great" "Britain"
[90531] "win" "bronze"
[90533] "medal" "match"
[90535] "clash" "Oi"
[90537] "Hockey" "Stadium"
[90539] "India" "lost"
[90541] "4-3" "GBR"
[90543] "fall" "short"
[90545] "goal" "India"
[90547] "created" "history"
[90549] "entered" "semi-finals"
[90551] "big" "tournament"
[90553] "lost" "Argentina"
[90555] "still" "chance"
[90557] "podium" "finish"
[90559] "time" "women"
[90561] "made" "first"
[90563] "Olympic" "appearance"
[90565] "1980" "Games"
[90567] "Moscow" "second"
[90569] "Olympic" "appearance"
[90571] "2016" "Olympics"
[90573] "Rio" "de"
[90575] "Janeiro" "details"
[90577] "game" "end"
[90579] "first" "quarter"
[90581] "saw" "Indian"
[90583] "goalkeeper" "Savita"
[90585] "Punia" "toes"
[90587] "made" "saves"
[90589] "Great" "Britain"
[90591] "trying" "convert"
[90593] "gaols.The" "Indian"
[90595] "defence" "need"
[90597] "tighten" "Soon"
[90599] "second" "quarter"
[90601] "saw" "getting"
[90603] "goal" "name.Elena"
[90605] "Rayer" "superbly"
[90607] "right" "juggled"
[90609] "ball" "marker"
[90611] "sadly" "ball"
[90613] "deflected" "Deep"
[90615] "Grace" "goal"
[90617] "Great" "Britain"
[90619] "got" "another"
[90621] "goal" "name"
[90623] "India" "man"
[90625] "down.Great" "Britain"
[90627] "stormed" "forward"
[90629] "working" "Sarah"
[90631] "Robertson" "D"
[90633] "took" "reverse"
[90635] "tomahawk" "past"
[90637] "stunned" "Savita"
[90639] "Almost" "end"
[90641] "second" "quarter"
[90643] "sawGurjit" "Kaur"
[90645] "converted" "penalties"
[90647] "gaols" "helping"
[90649] "India" "equalise"
[90651] "Indian" "women"
[90653] "changed" "momentum"
[90655] "India'sVandana" "Katariya"
[90657] "nothing" "wrong"
[90659] "D" "makes"
[90661] "sure" "get"
[90663] "goal" "India"
[90665] "needed" "goal"
[90667] "got" "India"
[90669] "leading" "position"
[90671] "Great" "Britain"
[90673] "made" "sure"
[90675] "continuously" "put"
[90677] "pressure" "India.Captain"
[90679] "Hollie" "Pearne-Webb"
[90681] "smashed" "superb"
[90683] "flick" "goal"
[90685] "excellent" "work"
[90687] "Rayer" "right"
[90689] "yellow" "card"
[90691] "flurry" "penalty"
[90693] "corners" "GBR"
[90695] "good" "scored"
[90697] "took" "lead"
[90699] "much" "power"
[90701] "Savita" "Grace"
[90703] "Balsdon" "powers"
[90705] "right" "net"
[90707] "end.Indian" "girls"
[90709] "seen" "tears"
[90711] "Savita" "Punia"
[90713] "looks" "inconsolable"
[90715] "even" "coach"
[90717] "arm" "around"
[90719] "close" "yet"
[90721] "far" "women"
[90723] "fans" "surely"
[90725] "proud" "effort"
[90727] "Classification" "Language"
[90729] "ENGLISH" "Publication-Type"
[90731] "Newspaper" "Body"
[90733] "Haryana" "Government"
[90735] "announced" "whopping"
[90737] "Rs" "6"
[90739] "crore" "cash"
[90741] "reward" "Grade"
[90743] "1" "government"
[90745] "job" "Javelin"
[90747] "Thrower" "Neeraj"
[90749] "Chopra" "became"
[90751] "first" "Indian"
[90753] "win" "gold"
[90755] "medal" "athletics"
[90757] "Olympic" "Games"
[90759] "clinched" "first"
[90761] "position" "Tokyo"
[90763] "2020" "throw"
[90765] "87.58" "metres"
[90767] "javelin" "competition"
[90769] "building" "Centre"
[90771] "Excellence" "athletes"
[90773] "Panchkula" "head"
[90775] "wants" "given"
[90777] "plot" "50"
[90779] "concession" "like"
[90781] "players" "said"
[90783] "Haryana" "CM"
[90785] "ML" "Khattar"
[90787] "star" "athlete"
[90789] "Panipat" "district"
[90791] "Haryana" "created"
[90793] "histiry" "clinched"
[90795] "gold" "javelin"
[90797] "throw" "attempt"
[90799] "87.58" "metres"
[90801] "becoming" "second"
[90803] "Indian" "Abhinav"
[90805] "Bindra" "win"
[90807] "individual" "gold"
[90809] "medal" "Olympics"
[90811] "Congratulating" "Chopra"
[90813] "triumph" "Khattar"
[90815] "said" "won"
[90817] "medal" "also"
[90819] "won" "heart"
[90821] "whole" "country"
[90823] "country" "waiting"
[90825] "moment" "long"
[90827] "time" "whole"
[90829] "country" "proud"
[90831] "said" "Punjab"
[90833] "Chief" "Minister"
[90835] "Amarinder" "Singh"
[90837] "also" "congratulated"
[90839] "Neeraj" "historuc"
[90841] "feat" "Tokyo"
[90843] "Gold" "Neeraj"
[90845] "Chopra" "created"
[90847] "history" "made"
[90849] "whole" "country"
[90851] "proud" "Chief"
[90853] "Minister" "tweeted"
[90855] "87.58" "m"
[90857] "winning" "throw"
[90859] "today" "part"
[90861] "legends" "Track"
[90863] "Field" "arena"
[90865] "India" "owes"
[90867] "Jai" "Hind"
[90869] "added" "Prime"
[90871] "Minister" "Narendra"
[90873] "Modi" "extended"
[90875] "wishes" "javelin"
[90877] "thrower" "said"
[90879] "History" "scripted"
[90881] "Tokyo" "@Neeraj_chopra1"
[90883] "achieved" "today"
[90885] "remembered" "forever"
[90887] "young" "Neeraj"
[90889] "done" "exceptionally"
[90891] "well" "played"
[90893] "remarkable" "passion"
[90895] "showed" "unparalleled"
[90897] "grit" "Congratulations"
[90899] "winning" "Gold"
[90901] "#Tokyo2020" "tweeted"
[90903] "PM" "Modi"
[90905] "Neeraj" "began"
[90907] "quest" "medal"
[90909] "massive" "throw"
[90911] "87.03" "meters"
[90913] "leading" "pack"
[90915] "end" "first"
[90917] "attempt" "bettered"
[90919] "second" "throw"
[90921] "87.58m" "able"
[90923] "improve" "enough"
[90925] "get" "coveted"
[90927] "medal" "now"
[90929] "second" "Indian"
[90931] "Abhinav" "Bindra"
[90933] "win" "gold"
[90935] "medal" "individual"
[90937] "events" "Classification"
[90939] "Language" "ENGLISH"
[90941] "Publication-Type" "Newspaper"
[90943] "Body" "India"
[90945] "Aug" "5"
[90947] "Indian" "cricketing"
[90949] "fraternity" "joined"
[90951] "millions" "fans"
[90953] "celebrating" "India's"
[90955] "first" "Olympic"
[90957] "medal" "hockey"
[90959] "41" "years"
[90961] "likes" "Sachin"
[90963] "Tendulkar" "Virender"
[90965] "Sehwag" "Harbhajan"
[90967] "Singh" "Gautam"
[90969] "Gambhir" "Wasim"
[90971] "Jaffer" "took"
[90973] "Twitter" "congratulate"
[90975] "Indian" "men's"
[90977] "hockey" "team"
[90979] "winning" "bronze"
[90981] "Tokyo" "Olympics"
[90983] "Thursday" "India"
[90985] "beat" "Germany"
[90987] "5-4" "high-scoring"
[90989] "thriller" "went"
[90991] "wire" "finish"
[90993] "podium" "first"
[90995] "time" "since"
[90997] "1980" "Moscow"
[90999] "Olympics" "won"
[91001] "gold" "India's"
[91003] "12th" "hockey"
[91005] "medal" "overall"
[91007] "third" "bronze"
[91009] "medal" "history"
[91011] "Olympics" "two"
[91013] "came" "1968"
[91015] "Mexico" "City"
[91017] "1972" "Munich"
[91019] "Games" "Congratulations"
[91021] "every" "member"
[91023] "hockey" "contingent"
[91025] "winning" "#Bronze"
[91027] "India" "fantastic"
[91029] "hard" "fought"
[91031] "win.The" "penalty"
[91033] "corner" "save"
[91035] "Sreejesh" "dying"
[91037] "moments" "game"
[91039] "amazing" "Entire"
[91041] "India" "immensely"
[91043] "proud" "tweeted"
[91045] "Sachin" "Tendulkar"
[91047] "landmark" "day"
[91049] "@TheHockeyIndia" "3-1"
[91051] "INDIA" "fights"
[91053] "back" "win"
[91055] "bronze" "medal"
[91057] "match" "5-3"
[91059] "first" "Olympic"
[91061] "medal" "#Hockey"
[91063] "40" "years"
[91065] "tweeted" "Virender"
[91067] "Sehwag" "Congratulations"
[91069] "India" "Bronze"
[91071] "Hockey" "41"
[91073] "yrs" "game"
[91075] "Proud" "Indian"
[91077] "Hockey" "tweeted"
[91079] "Harbhajan" "Singh"
[91081] "Forget" "1983"
[91083] "2007" "2011"
[91085] "medal" "Hockey"
[91087] "bigger" "World"
[91089] "Cup" "wrote"
[91091] "Gautam" "Gambhir"
[91093] "16" "scripted"
[91095] "history" "Manpreet"
[91097] "Sreejesh" "Harmanpreet"
[91099] "Rupinder" "Surender"
[91101] "Amit" "Birendra"
[91103] "Hardik" "Vivek"
[91105] "Nilakanta" "Sumit"
[91107] "Shamsher" "Dilpreet"
[91109] "Gurjant" "Lalit"
[91111] "Mandeep" "Remember"
[91113] "cherish" "tell"
[91115] "children" "Let"
[91117] "inspire" "generation"
[91119] "former" "Wasim"
[91121] "Jaffer" "final"
[91123] "Germany" "took"
[91125] "early" "lead"
[91127] "goal-rich" "match"
[91129] "second-minute" "goal"
[91131] "Timur" "Oruz"
[91133] "posed" "threat"
[91135] "eight-time" "Olympic"
[91137] "hockey" "champions"
[91139] "India" "first"
[91141] "quarter" "Simranjeet"
[91143] "Singh" "equalised"
[91145] "backhand" "shot"
[91147] "India" "Germany"
[91149] "kept" "cool"
[91151] "scoring" "two"
[91153] "goals" "take"
[91155] "3-1" "lead"
[91157] "second" "quarter"
[91159] "India" "pulled"
[91161] "level" "late"
[91163] "quarter" "thanks"
[91165] "goals" "Hardik"
[91167] "Singh" "Harmanpreet"
[91169] "Singh" "making"
[91171] "3-3" "halftime"
[91173] "break" "India"
[91175] "took" "5-3"
[91177] "lead" "Rupinder"
[91179] "Pal" "Singh"
[91181] "notched" "penalty"
[91183] "stroke" "Simranjeet"
[91185] "Singh" "scored"
[91187] "second" "match"
[91189] "long" "second"
[91191] "half" "Germany"
[91193] "came" "back"
[91195] "goal" "unable"
[91197] "force" "equaliser"
[91199] "even" "taking"
[91201] "goalie" "bring"
[91203] "extra" "field"
[91205] "player" "late"
[91207] "game" "agency"
[91209] "inputs" "Published"
[91211] "HT" "Digital"
[91213] "Content" "Services"
[91215] "permission" "Hindustan"
[91217] "Times" "query"
[91219] "respect" "article"
[91221] "content" "requirement"
[91223] "please" "contact"
[91225] "Editor" "Classification"
[91227] "Language" "ENGLISH"
[91229] "Publication-Type" "Newswire"
[91231] "Body" "Indian"
[91233] "shuttler" "PV"
[91235] "Sindhu" "face"
[91237] "China's" "Bingjiao"
[91239] "Bronze" "medal"
[91241] "match" "women's"
[91243] "singles" "losing"
[91245] "semi-final" "Tai"
[91247] "Tzu-Ying" "Indian"
[91249] "Badminton" "star"
[91251] "player" "PV"
[91253] "Sindhu" "still"
[91255] "alive" "Tokyo"
[91257] "Olympics" "medal"
[91259] "contention" "plays"
[91261] "Bronze" "medal"
[91263] "match" "China's"
[91265] "Bingjiao" "Sunday"
[91267] "Sindhu" "outplayed"
[91269] "second" "seed"
[91271] "World" "1"
[91273] "Chinese" "Tapei'sTai"
[91275] "Tzu-Ying" "semi-final"
[91277] "women's" "singles"
[91279] "event" "Sindhu's"
[91281] "flawless" "campaign"
[91283] "came" "stuttering"
[91285] "halt" "Tzu-Ying"
[91287] "just" "good"
[91289] "day" "Indian"
[91291] "shuttler" "won"
[91293] "silver" "medal"
[91295] "Rio" "Olympic"
[91297] "Games" "2016"
[91299] "Sindhu" "exceptional"
[91301] "first" "set"
[91303] "responded" "Tzu-Ying"
[91305] "shot" "shot"
[91307] "set" "heading"
[91309] "towards" "close"
[91311] "finish" "tied"
[91313] "16-16" "one"
[91315] "stage" "Tzu-Ying"
[91317] "just" "finished"
[91319] "game" "high"
[91321] "took" "set"
[91323] "21-18" "second"
[91325] "set" "one-way"
[91327] "traffic" "Tzu-Ying"
[91329] "give" "Sindhu"
[91331] "chance" "attacked"
[91333] "every" "strength"
[91335] "won" "game"
[91337] "21-18" "21-12"
[91339] "qualified" "final"
[91341] "Sindhu" "Gold"
[91343] "medal" "contention"
[91345] "medal" "hopes"
[91347] "still" "alive"
[91349] "plays" "bronze"
[91351] "medal" "match"
[91353] "match" "start"
[91355] "evening" "Sunday"
[91357] "details" "match"
[91359] "PV" "Sindhu"
[91361] "vs" "Bingjiao"
[91363] "bronze" "medal"
[91365] "match" "start"
[91367] "ThePV" "Sindhu"
[91369] "vs" "Bingjiao"
[91371] "bronze" "medal"
[91373] "match" "begin"
[91375] "5" "PM"
[91377] "IST" "Sunday"
[91379] "August" "1"
[91381] "PV" "Sindhu"
[91383] "vs" "Bingjiao"
[91385] "bronze" "medal"
[91387] "match" "played"
[91389] "ThePV" "Sindhu"
[91391] "vs" "Bingjiao"
[91393] "bronze" "medal"
[91395] "match" "played"
[91397] "Musashino" "Forest"
[91399] "Sport" "Plaza"
[91401] "BDM" "Court"
[91403] "1" "TV"
[91405] "channels" "broadcast"
[91407] "PV" "Sindhu"
[91409] "vs" "Bingjiao"
[91411] "bronze" "medal"
[91413] "match" "PV"
[91415] "Sindhu" "vs"
[91417] "Bingjiao" "bronze"
[91419] "medal" "matchwill"
[91421] "broadcast" "Sony"
[91423] "Sports" "Network"
[91425] "India" "watch"
[91427] "live" "streaming"
[91429] "PV" "Sindhu"
[91431] "vs" "Bingjiao"
[91433] "bronze" "medal"
[91435] "match" "Fans"
[91437] "can" "catch"
[91439] "live" "streaming"
[91441] "PV" "Sindhu"
[91443] "vs" "Bingjiao"
[91445] "bronze" "medal"
[91447] "matchon" "SonyLIV"
[91449] "website" "SonyLIV"
[91451] "app" "India"
[91453] "Classification" "Language"
[91455] "ENGLISH" "Publication-Type"
[91457] "Newspaper" "Body"
[91459] "clip" "captured"
[91461] "Argentinian" "TV"
[91463] "cameraman" "covering"
[91465] "women's" "hockey"
[91467] "match" "Spain"
[91469] "Argentina" "shared"
[91471] "Twitter" "user"
[91473] "@s6ntispam" "Olympics"
[91475] "glitz" "glamour"
[91477] "game" "course"
[91479] "field" "Though"
[91481] "time" "around"
[91483] "Olympic" "games"
[91485] "happening" "amid"
[91487] "ongoing" "COVID-19"
[91489] "pandemic" "viewers"
[91491] "stands" "Tokyo"
[91493] "2020" "Olympics"
[91495] "already" "produced"
[91497] "many" "viral"
[91499] "moments" "viewers"
[91501] "watch" "share"
[91503] "recent" "Olympic"
[91505] "game" "cameraman"
[91507] "decided" "go"
[91509] "rogue" "film"
[91511] "cockroach" "middle"
[91513] "ongoing" "women's"
[91515] "hockey" "match"
[91517] "clip" "captured"
[91519] "cameraman" "Argentinian"
[91521] "TV" "channel"
[91523] "covering" "women's"
[91525] "hockey" "match"
[91527] "Spain" "Argentina"
[91529] "played" "July26"
[91531] "shared" "social"
[91533] "media" "Twitter"
[91535] "user" "@s6ntispam"
[91537] "viral" "post"
[91539] "garnered" "4.9"
[91541] "million" "views"
[91543] "64,900" "retweets"
[91545] "clip" "cameraman"
[91547] "filmed" "cockroach"
[91549] "walking" "along"
[91551] "part" "field.The"
[91553] "segment" "shot"
[91555] "replay" "played"
[91557] "shot" "shown"
[91559] "live" "Argentinian"
[91561] "TV" "channel"
[91563] "broadcasting" "Tokyo"
[91565] "Games" "sports"
[91567] "commentator" "commenting"
[91569] "match" "stopped"
[91571] "said" "Look"
[91573] "cockroach" "Netizens"
[91575] "amused" "video"
[91577] "mind" "cockroach"
[91579] "took" "attention"
[91581] "away" "game"
[91583] "segment" "now"
[91585] "gone" "viral"
[91587] "garnered" "funny"
[91589] "reactions" "shot"
[91591] "lasted" "seconds"
[91593] "cameraman" "got"
[91595] "back" "action"
[91597] "Spain" "Argentina"
[91599] "South" "American"
[91601] "nation" "won"
[91603] "match" "3-0"
[91605] "Classification" "Language"
[91607] "ENGLISH" "Publication-Type"
[91609] "Newspaper" "Body"
[91611] "Striker" "Vandana"
[91613] "Katariya" "scored"
[91615] "historic" "hat-trick"
[91617] "keep" "alive"
[91619] "Indian" "women's"
[91621] "hockey" "team's"
[91623] "quarterfinals" "hopes"
[91625] "Olympics" "fighting"
[91627] "4-3" "victory"
[91629] "lower-ranked" "South"
[91631] "Africa" "must-win"
[91633] "final" "group"
[91635] "match" "Saturday"
[91637] "Vandana" "4th"
[91639] "17th" "49th"
[91641] "minutes" "achieved"
[91643] "rare" "feat"
[91645] "becoming" "first"
[91647] "Indian" "woman"
[91649] "hockey" "player"
[91651] "score" "hat-trick"
[91653] "history" "Olympics"
[91655] "Young" "Neha"
[91657] "Goyal" "32nd"
[91659] "goal" "getter"
[91661] "Rani" "Rampal-led"
[91663] "side" "registered"
[91665] "second" "consecutive"
[91667] "win" "Games"
[91669] "South" "Africa's"
[91671] "goals" "came"
[91673] "sticks" "Tarryn"
[91675] "Glasby" "15th"
[91677] "skipper" "Erin"
[91679] "Hunter" "30th"
[91681] "Marizen" "Marais"
[91683] "39th" "two"
[91685] "wins" "final"
[91687] "two" "pool"
[91689] "matches" "India"
[91691] "finished" "group"
[91693] "stages" "six"
[91695] "points" "five"
[91697] "games" "virtue"
[91699] "win" "India"
[91701] "jumped" "fourth"
[91703] "position" "Pool"
[91705] "Ireland" "still"
[91707] "chance" "leapfrog"
[91709] "Indians" "India's"
[91711] "fate" "now"
[91713] "depends" "outcome"
[91715] "last" "Pool"
[91717] "match" "Great"
[91719] "Britain" "Ireland"
[91721] "Indians" "wait"
[91723] "till" "evening"
[91725] "know" "fate"
[91727] "Ireland" "loss"
[91729] "draw" "enough"
[91731] "India" "seal"
[91733] "place" "quarterfinals"
[91735] "top" "four"
[91737] "teams" "pool"
[91739] "qualify" "knockout"
[91741] "round" "Needing"
[91743] "win" "stay"
[91745] "alive" "competition"
[91747] "Indians" "meant"
[91749] "business" "pressed"
[91751] "hard" "South"
[91753] "African" "defence"
[91755] "start" "India"
[91757] "secured" "two"
[91759] "penalty" "corners"
[91761] "first" "two"
[91763] "minutes" "match"
[91765] "dragflicker" "Gurjit"
[91767] "Kaur's" "poor"
[91769] "execution" "continued"
[91771] "tournament" "Still"
[91773] "take" "India"
[91775] "long" "open"
[91777] "account" "fourth"
[91779] "minute" "Vandana"
[91781] "gave" "side"
[91783] "lead" "tapping"
[91785] "close" "range"
[91787] "set" "Navneet"
[91789] "Kaur's" "great"
[91791] "run" "right"
[91793] "flank" "India"
[91795] "kept" "pressure"
[91797] "penetrated" "South"
[91799] "African" "circle"
[91801] "many" "times"
[91803] "without" "much"
[91805] "success" "seconds"
[91807] "end" "first"
[91809] "quarter" "lapse"
[91811] "concentration" "defence"
[91813] "cost" "India"
[91815] "dearly" "South"
[91817] "Africa" "drew"
[91819] "level" "Tarryn"
[91821] "Glasby" "deflected"
[91823] "long" "shot"
[91825] "Taryn" "Mallett"
[91827] "India" "enough"
[91829] "time" "regain"
[91831] "lead" "penalty"
[91833] "corner" "wasted"
[91835] "opportunity" "Two"
[91837] "minutes" "second"
[91839] "quarter" "Vandana"
[91841] "restored" "India's"
[91843] "lead" "deflected"
[91845] "Deep" "Grace"
[91847] "Ekka's" "flick"
[91849] "fourth" "penalty"
[91851] "corner" "Indians"
[91853] "three" "chances"
[91855] "extend" "lead"
[91857] "second" "quarter"
[91859] "Rani" "Rampal-led"
[91861] "side" "got"
[91863] "two" "penalty"
[91865] "corners" "wasted"
[91867] "Neha" "Goyal's"
[91869] "effort" "open"
[91871] "play" "saved"
[91873] "South" "Africa"
[91875] "goalkeeper" "Just"
[91877] "like" "first"
[91879] "quarter" "India"
[91881] "gave" "away"
[91883] "lead" "seconds"
[91885] "away" "half"
[91887] "time" "Hunter"
[91889] "found" "net"
[91891] "team's" "first"
[91893] "penalty" "corner"
[91895] "Two" "minutes"
[91897] "change" "ends"
[91899] "Neha" "restored"
[91901] "lead" "deflecting"
[91903] "Rani" "hit"
[91905] "penalty" "corner"
[91907] "Indians" "executed"
[91909] "fine" "variation"
[91911] "fragile" "Indian"
[91913] "defence" "wilted"
[91915] "pressure" "South"
[91917] "Africa" "drew"
[91919] "level" "third"
[91921] "time" "match"
[91923] "Marais" "strike"
[91925] "South" "Africa"
[91927] "enjoyed" "good"
[91929] "run" "play"
[91931] "initial" "minutes"
[91933] "final" "quarter"
[91935] "process" "secured"
[91937] "three" "penalty"
[91939] "corners" "quickly"
[91941] "time" "Indian"
[91943] "defence" "enough"
[91945] "thwart" "dangers"
[91947] "49th" "minute"
[91949] "brilliant" "Vandana"
[91951] "saved" "day"
[91953] "India" "deflected"
[91955] "Gurjit" "Kaur's"
[91957] "flick" "another"
[91959] "penalty" "corner"
[91961] "Thereafter" "Indians"
[91963] "fell" "back"
[91965] "looked" "contend"
[91967] "keep" "possession"
[91969] "South" "Africa"
[91971] "pressed" "hard"
[91973] "Two" "minutes"
[91975] "final" "hooter"
[91977] "Indians" "successfully"
[91979] "referred" "penalty"
[91981] "corner" "decision"
[91983] "given" "Classification"
[91985] "Language" "ENGLISH"
[91987] "Publication-Type" "Newspaper"
[91989] "Body" "moment"
[91991] "announcer" "Tokyo's"
[91993] "Ryogoku" "Kokugikan"
[91995] "arena" "called"
[91997] "name" "walked"
[91999] "slamming" "gloves"
[92001] "Pooja" "Rani"
[92003] "meant" "business"
[92005] "entered" "ring"
[92007] "sans" "histrionics"
[92009] "walked" "away"
[92011] "winner" "minimum"
[92013] "fuss" "word"
[92015] "dominating" "75kg"
[92017] "pre-quarterfinal" "bout"
[92019] "Pooja's" "20-year-old"
[92021] "opponent" "Ichrak"
[92023] "Chaib" "Algeria"
[92025] "jumpy" "declared"
[92027] "winner" "even"
[92029] "judges" "taken"
[92031] "call" "unanimous"
[92033] "decision" "judges"
[92035] "gave" "5-0"
[92037] "verdict" "Pooja's"
[92039] "favour" "debut"
[92041] "Olympic" "Games"
[92043] "bout" "Pooja"
[92045] "calm" "self-assured"
[92047] "Next" "somewhat"
[92049] "familiar" "foe"
[92051] "China's" "Li"
[92053] "Qian" "gold"
[92055] "medallist" "2018"
[92057] "World" "Championships"
[92059] "bronze" "winner"
[92061] "Rio" "Olympics"
[92063] "current" "world"
[92065] "3" "defeated"
[92067] "Pooja" "twice"
[92069] "many" "meetings"
[92071] "Pooja" "extremely"
[92073] "focused" "fought"
[92075] "intelligently" "women's"
[92077] "boxing" "high"
[92079] "performance" "director"
[92081] "Raffaele" "Bergamasco"
[92083] "said" "opponent"
[92085] "made" "mistakes"
[92087] "capitalised" "Team"
[92089] "Pooja" "knows"
[92091] "Chinese" "Li"
[92093] "Qian" "agile"
[92095] "difficult" "attack"
[92097] "working" "together"
[92099] "counter-attacking" "strategies"
[92101] "said" "Bergamasco"
[92103] "said" "Pooja"
[92105] "came" "Olympics"
[92107] "won" "second"
[92109] "Asian" "Championships"
[92111] "gold" "medal"
[92113] "May" "earlier"
[92115] "year" "confidence"
[92117] "shone" "opening"
[92119] "fight" "Right"
[92121] "outset" "bout"
[92123] "Pooja" "Ichrak"
[92125] "showed" "difference"
[92127] "two" "boxers"
[92129] "experience" "class"
[92131] "Ichrak" "wildly"
[92133] "throwing" "punches"
[92135] "either" "going"
[92137] "wide" "Algerian"
[92139] "found" "difficult"
[92141] "get" "measure"
[92143] "Pooja" "entangles"
[92145] "Pooja" "managed"
[92147] "scoring" "points"
[92149] "jabhook" "combination"
[92151] "Pooja" "steadily"
[92153] "got" "rhythm"
[92155] "never" "required"
[92157] "put" "100"
[92159] "percent" "opening"
[92161] "round" "second"
[92163] "round" "went"
[92165] "less" "similar"
[92167] "lines" "Ichrak"
[92169] "kept" "charging"
[92171] "towards" "Pooja"
[92173] "full" "body"
[92175] "weight" "Indian"
[92177] "smartly" "sidestep"
[92179] "start" "flurry"
[92181] "counter" "punches"
[92183] "Pooja's" "combination"
[92185] "punches" "well"
[92187] "dodging" "blocking"
[92189] "impressed" "judges"
[92191] "voting" "favour"
[92193] "Indian" "third"
[92195] "even" "Ichrak"
[92197] "getting" "exhausted"
[92199] "Indian" "chose"
[92201] "go" "defensive"
[92203] "inelegant" "jostling"
[92205] "impact" "scoreline"
[92207] "one" "bit"
[92209] "five" "judges"
[92211] "Pooja's" "side"
[92213] "Classification" "Language"
[92215] "ENGLISH" "Publication-Type"
[92217] "Newspaper" "Body"
[92219] "New" "Delhi"
[92221] "Aug" "3"
[92223] "Indian" "men's"
[92225] "hockey" "team"
[92227] "today" "defeated"
[92229] "Belgians" "closely"
[92231] "contested" "semi-final"
[92233] "match" "ongoing"
[92235] "Tokyo" "Olympics"
[92237] "Belgium" "defeated"
[92239] "India" "5-2"
[92241] "saw" "Belgium"
[92243] "team" "creating"
[92245] "chances" "penalty"
[92247] "corners" "converting"
[92249] "goals" "Alexander"
[92251] "Hendrickx" "scored"
[92253] "three" "goals"
[92255] "match" "Belgium"
[92257] "helping" "team"
[92259] "qualify" "final"
[92261] "John-John" "Domen"
[92263] "Belgium" "scored"
[92265] "fifth" "goal"
[92267] "last" "moments"
[92269] "game" "India"
[92271] "lock" "horns"
[92273] "bronze" "medal"
[92275] "match" "Thursday"
[92277] "loser" "game"
[92279] "Australia" "Germany"
[92281] "Indian" "boys"
[92283] "started" "well"
[92285] "looked" "keep"
[92287] "good" "work"
[92289] "lost" "tempo"
[92291] "slightly" "last"
[92293] "quarter" "boys"
[92295] "Belgium" "capitalised"
[92297] "Belgium" "started"
[92299] "strong" "note"
[92301] "scored" "first"
[92303] "goal" "Luypaert"
[92305] "second" "minute"
[92307] "play" "However"
[92309] "Harmanpreet" "Singh"
[92311] "scored" "first"
[92313] "goal" "India"
[92315] "also" "helped"
[92317] "equalising" "scoreline"
[92319] "India" "took"
[92321] "lead" "scoring"
[92323] "second" "goal"
[92325] "scored" "Mandeep"
[92327] "Belgium" "scored"
[92329] "equaliser" "penalty"
[92331] "corner" "scored"
[92333] "Hendrickx" "Belgium"
[92335] "broke" "deadlock"
[92337] "fourth" "quarter"
[92339] "top" "scorer"
[92341] "Hendrickx" "scored"
[92343] "two" "goals"
[92345] "taking" "tally"
[92347] "14" "goals"
[92349] "tournament" "deadlock"
[92351] "broken" "third"
[92353] "quarter" "well"
[92355] "result" "heading"
[92357] "last" "15"
[92359] "minutes" "game"
[92361] "India" "Belgium"
[92363] "highly" "tensed"
[92365] "fourth" "quarter"
[92367] "Belgium" "struck"
[92369] "first" "Hendrickx"
[92371] "scored" "second"
[92373] "goal" "match"
[92375] "giving" "Belgium"
[92377] "3-2" "lead"
[92379] "11" "minutes"
[92381] "still" "left"
[92383] "play" "minutes"
[92385] "later" "Hendrickx"
[92387] "got" "hat-trick"
[92389] "converted" "penalty"
[92391] "hence" "Belgium"
[92393] "gained" "4-2"
[92395] "lead" "end"
[92397] "Belgium" "managed"
[92399] "hang" "side"
[92401] "registered" "victory"
[92403] "progressing" "ahead"
[92405] "finals" "second"
[92407] "successive" "final"
[92409] "appearance" "Indians"
[92411] "blame" "Tuesday's"
[92413] "disappointment" "Belgium's"
[92415] "four" "goals"
[92417] "came" "penalty"
[92419] "corners" "Indian"
[92421] "defence" "put"
[92423] "relentless" "pressure"
[92425] "Belgians" "secured"
[92427] "many" "14"
[92429] "penalty" "corners"
[92431] "converted" "four"
[92433] "Belgium's" "game"
[92435] "plan" "clear"
[92437] "onset" "tried"
[92439] "enter" "Indian"
[92441] "circle" "earn"
[92443] "penalty" "corners"
[92445] "Hendrickx" "Luypaert"
[92447] "ranks" "ploy"
[92449] "worked" "perfection"
[92451] "Indian" "defence"
[92453] "wilted" "pressure"
[92455] "concede" "set"
[92457] "pieces" "India"
[92459] "earned" "five"
[92461] "penalty" "corners"
[92463] "match" "make"
[92465] "use" "just"
[92467] "one" "Wins"
[92469] "losses" "part"
[92471] "life" "Men's"
[92473] "Hockey" "Team"
[92475] "#Tokyo2020" "gave"
[92477] "best" "counts"
[92479] "Wishing" "Team"
[92481] "best" "next"
[92483] "match" "future"
[92485] "endeavours" "India"
[92487] "proud" "players"
[92489] "Prime" "Minister"
[92491] "Narendra" "Modi"
[92493] "tweeted" "game"
[92495] "Wins" "amp"
[92497] "losses" "part"
[92499] "life" "Men's"
[92501] "Hockey" "Team"
[92503] "#Tokyo2020" "gave"
[92505] "best" "amp"
[92507] "counts" "Wishing"
[92509] "Team" "best"
[92511] "next" "match"
[92513] "amp" "future"
[92515] "endeavours" "India"
[92517] "proud" "players"
[92519] "Prime" "Minister"
[92521] "Narendra" "Modi"
[92523] "tweets" "Published"
[92525] "HT" "Digital"
[92527] "Content" "Services"
[92529] "permission" "MINT"
[92531] "query" "respect"
[92533] "article" "content"
[92535] "requirement" "please"
[92537] "contact" "Editor"
[92539] "Classification" "Language"
[92541] "ENGLISH" "Publication-Type"
[92543] "Newspaper" "Body"
[92545] "Indian" "men's"
[92547] "hockey" "team"
[92549] "Sunday" "beat"
[92551] "Great" "Britain"
[92553] "enter" "semifinals"
[92555] "first" "time"
[92557] "49" "years"
[92559] "India" "scored"
[92561] "three" "field"
[92563] "goals" "Dilpreet"
[92565] "Singh" "7th"
[92567] "minute" "Gurjant"
[92569] "Singh" "16th"
[92571] "Hardik" "Singh"
[92573] "57th" "seal"
[92575] "win" "eight-time"
[92577] "Olympic" "champions"
[92579] "Dilpreet" "Singh"
[92581] "scored" "first"
[92583] "minutes" "first"
[92585] "quarter" "Gurjant"
[92587] "scored" "start"
[92589] "second" "quarter"
[92591] "Indians" "maintained"
[92593] "lead" "half-time"
[92595] "Samuel" "Ian"
[92597] "Ward" "got"
[92599] "one" "goal"
[92601] "Great" "Britain's"
[92603] "account" "dying"
[92605] "moments" "third"
[92607] "quarter" "courtesy"
[92609] "penalty" "corner"
[92611] "Hardik" "Singh"
[92613] "scored" "fourth"
[92615] "quarter" "put"
[92617] "India" "3-1"
[92619] "ahead" "Indians"
[92621] "maintained" "lead"
[92623] "till" "end"
[92625] "Even" "though"
[92627] "India's" "last"
[92629] "eight" "Olympic"
[92631] "gold" "medals"
[92633] "came" "way"
[92635] "back" "1980"
[92637] "Moscow" "Games"
[92639] "semifinals" "edition"
[92641] "six" "teams"
[92643] "participated" "event"
[92645] "last" "time"
[92647] "India" "featured"
[92649] "semifinals" "Olympics"
[92651] "1972" "Munich"
[92653] "Games" "lost"
[92655] "0-2" "arch-rivals"
[92657] "Pakistan" "India"
[92659] "take" "world"
[92661] "champions" "Belgium"
[92663] "semifinal" "Tuesday"
[92665] "Belgium" "defeated"
[92667] "Spain" "3-1"
[92669] "another" "quarterfinal"
[92671] "seal" "place"
[92673] "last" "four"
[92675] "round" "semifinal"
[92677] "men's" "hockey"
[92679] "competition" "played"
[92681] "Australia" "Germany.Indian"
[92683] "men's" "hockey"
[92685] "team" "Sunday"
[92687] "beat" "Great"
[92689] "Britain" "enter"
[92691] "semifinals" "first"
[92693] "time" "49"
[92695] "years" "India"
[92697] "scored" "three"
[92699] "field" "goals"
[92701] "Dilpreet" "Singh"
[92703] "7th" "minute"
[92705] "Gurjant" "Singh"
[92707] "16th" "Hardik"
[92709] "Singh" "57th"
[92711] "seal" "win"
[92713] "eight-time" "Olympic"
[92715] "champions" "Dilpreet"
[92717] "Singh" "scored"
[92719] "first" "minutes"
[92721] "first" "quarter"
[92723] "Gurjant" "scored"
[92725] "start" "second"
[92727] "quarter" "Indians"
[92729] "maintained" "lead"
[92731] "half-time" "Samuel"
[92733] "Ian" "Ward"
[92735] "got" "one"
[92737] "goal" "Great"
[92739] "Britain's" "account"
[92741] "dying" "moments"
[92743] "third" "quarter"
[92745] "courtesy" "penalty"
[92747] "corner" "Hardik"
[92749] "Singh" "scored"
[92751] "fourth" "quarter"
[92753] "put" "India"
[92755] "3-1" "ahead"
[92757] "Indians" "maintained"
[92759] "lead" "till"
[92761] "end" "Classification"
[92763] "Language" "ENGLISH"
[92765] "Publication-Type" "Newspaper"
[92767] "Body" "New"
[92769] "Delhi" "Aug"
[92771] "2" "Nobody"
[92773] "speaking" "Anna"
[92775] "Kiesenhofer" "ahead"
[92777] "Tokyo" "2020"
[92779] "women's" "road"
[92781] "race" "25"
[92783] "July" "now"
[92785] "certainly" "everyone"
[92787] "knows" "Anna"
[92789] "Kiesenhofer" "Austria"
[92791] "rode" "gold"
[92793] "medal" "women's"
[92795] "Olympic" "road"
[92797] "race" "Sunday"
[92799] "Annemiek" "Van"
[92801] "Vleuten" "Netherlands"
[92803] "claimed" "silver"
[92805] "medal" "Elisa"
[92807] "Longho" "Borghini"
[92809] "Italy" "third"
[92811] "Biocon" "chief"
[92813] "Kiran" "Mazumdar"
[92815] "Shaw" "also"
[92817] "joined" "people"
[92819] "around" "world"
[92821] "congratulated" "Anna"
[92823] "math" "genius"
[92825] "won" "gold"
[92827] "medal" "women's"
[92829] "Olympic" "road"
[92831] "race" "woman"
[92833] "Superwoman" "Kiran"
[92835] "Mazumdar" "Shaw"
[92837] "tweeted" "woman"
[92839] "Superwoman" "#55357"
[92841] "#56399" "#55357"
[92843] "#56399" "#55357"
[92845] "#56399" "pic.twitter.com"
[92847] "5N8ij5RlAk" "Kiran"
[92849] "Mazumdar-Shaw" "@kiranshaw"
[92851] "July" "31"
[92853] "2021" "Anna"
[92855] "Kiesenhofer" "took"
[92857] "Instagram" "express"
[92859] "gratitude" "wrote"
[92861] "Thanks" "bottom"
[92863] "heart" "last"
[92865] "months" "years"
[92867] "know" "know"
[92869] "essence" "achievement"
[92871] "different" "major"
[92873] "goal" "set"
[92875] "past" "last"
[92877] "days" "crazy"
[92879] "View" "post"
[92881] "Instagram" "post"
[92883] "shared" "Anna"
[92885] "Kiesenhofer" "@annakiesenhofer"
[92887] "Kiesenhofer's" "curriculum"
[92889] "vitae" "features"
[92891] "academic" "accomplishments"
[92893] "cycling" "ones"
[92895] "degree" "Technical"
[92897] "University" "Vienna"
[92899] "studied" "Cambridge"
[92901] "doctorate" "Polytechnic"
[92903] "University" "Catalonia"
[92905] "fact" "even"
[92907] "professional" "contract"
[92909] "season" "entered"
[92911] "Olympic" "road"
[92913] "race" "without"
[92915] "teammate" "-With"
[92917] "agency" "inputs"
[92919] "Published" "HT"
[92921] "Digital" "Content"
[92923] "Services" "permission"
[92925] "MINT" "query"
[92927] "respect" "article"
[92929] "content" "requirement"
[92931] "please" "contact"
[92933] "Editor" "Classification"
[92935] "Language" "ENGLISH"
[92937] "Publication-Type" "Newspaper"
[92939] "Body" "TOKYO"
[92941] "GAMES" "Indian"
[92943] "athletes" "competing"
[92945] "Olympics" "can"
[92947] "earn" "big"
[92949] "cash" "awards"
[92951] "winning" "Olympic"
[92953] "medals" "time"
[92955] "cash" "awards"
[92957] "announced" "various"
[92959] "state" "governments"
[92961] "along" "Union"
[92963] "government's" "cash"
[92965] "award" "policy"
[92967] "make" "Indian"
[92969] "medal" "winners"
[92971] "rewarded" "athletes"
[92973] "world" "financial"
[92975] "gains" "Indian"
[92977] "medal-winners" "garner"
[92979] "far" "major"
[92981] "nations" "like"
[92983] "United" "States"
[92985] "hosts" "Japan"
[92987] "Canada" "Germany"
[92989] "Australia" "France"
[92991] "Italy" "Russia"
[92993] "Netherlands" "Brazil"
[92995] "South" "Africa"
[92997] "announced" "medal-winning"
[92999] "athletes" "Besides"
[93001] "India" "top-5"
[93003] "nations" "giving"
[93005] "cash" "bonuses"
[93007] "medals" "Indonesia"
[93009] "$" "746,000"
[93011] "Rs" "5.55cr"
[93013] "Singapore" "$"
[93015] "735,000" "Rs"
[93017] "5.47cr" "Hong"
[93019] "Kong" "$"
[93021] "644,000" "Rs"
[93023] "4.80cr" "Thailand"
[93025] "$" "309,300"
[93027] "Rs" "2.30cr"
[93029] "Kazakhstan" "$"
[93031] "250,000" "Rs"
[93033] "1.86cr" "amounts"
[93035] "gold" "medals"
[93037] "figures" "silver"
[93039] "bronze" "medal"
[93041] "winners" "follow"
[93043] "similar" "trend"
[93045] "India" "Uttar"
[93047] "Pradesh" "Haryana"
[93049] "Odisha" "Chhattisgarh"
[93051] "Chandigarh" "administration"
[93053] "already" "announced"
[93055] "cash" "bonus"
[93057] "Rs" "6"
[93059] "crore" "athletes"
[93061] "state" "win"
[93063] "gold" "medal"
[93065] "Olympics" "Haryana"
[93067] "Odisha" "Chhattisgarh"
[93069] "announced" "Rs"
[93071] "4" "crore"
[93073] "Rs" "2.5"
[93075] "crore" "silver"
[93077] "bronze" "winners"
[93079] "Chandigarh" "Uttar"
[93081] "Pradesh" "give"
[93083] "Rs" "4"
[93085] "crore" "Rs"
[93087] "2" "crore"
[93089] "silver" "bronze"
[93091] "winners" "Besides"
[93093] "individual" "state"
[93095] "government's" "cash"
[93097] "awards" "according"
[93099] "Indian" "government"
[93101] "policy" "March11"
[93103] "2020" "Olympics"
[93105] "gold" "winner"
[93107] "get" "Rs"
[93109] "75" "lakh"
[93111] "silver" "medallist"
[93113] "gets" "Rs"
[93115] "50" "lakh"
[93117] "bronze" "winner"
[93119] "Rs" "30"
[93121] "lakh" "Union"
[93123] "government's" "cash"
[93125] "award" "scheme"
[93127] "also" "major"
[93129] "Olympic" "nations"
[93131] "giving" "medal-winning"
[93133] "athletes" "TOI"
[93135] "number" "crunching"
[93137] "found" "USA"
[93139] "giving" "$"
[93141] "37,500" "Rs"
[93143] "28" "lakh"
[93145] "gold" "winners"
[93147] "Hosts" "Japan"
[93149] "$" "45,200"
[93151] "Rs" "34"
[93153] "lakh" "Russia"
[93155] "$" "61,000"
[93157] "Rs" "45"
[93159] "lakh" "France"
[93161] "$" "65,000"
[93163] "Rs" "48"
[93165] "lakh" "Germany"
[93167] "$" "22,000"
[93169] "Rs" "16"
[93171] "lakh" "Canada"
[93173] "$" "16,000"
[93175] "Rs" "12"
[93177] "lakh" "Australia"
[93179] "$" "15,100"
[93181] "Rs" "11"
[93183] "lakh" "Netherlands"
[93185] "$" "35,400"
[93187] "Rs" "26"
[93189] "lakh" "Brazil"
[93191] "$" "47,500"
[93193] "Rs" "35"
[93195] "lakh" "South"
[93197] "Africa" "$"
[93199] "37,000" "Rs"
[93201] "27.5" "lakh"
[93203] "gold" "medallists"
[93205] "Italy" "$"
[93207] "212,400" "Rs"
[93209] "1.58cr" "sizeable"
[93211] "amount" "kept"
[93213] "gold" "medallists"
[93215] "Great" "Britain"
[93217] "Norway" "Sweden"
[93219] "pay" "Olympians"
[93221] "medals" "government"
[93223] "however" "assign"
[93225] "$" "160"
[93227] "million" "funds"
[93229] "per" "year"
[93231] "Olympic" "Paralympic"
[93233] "sports" "goes"
[93235] "annual" "athlete"
[93237] "training" "stipends"
[93239] "Athletes" "can"
[93241] "receive" "annual"
[93243] "stipend" "around"
[93245] "$" "36,000"
[93247] "Britain's" "view"
[93249] "financial" "rewards"
[93251] "significantly" "impact"
[93253] "motivation" "athlete"
[93255] "reach" "Olympic"
[93257] "podium" "Among"
[93259] "Indian" "states"
[93261] "Karnataka" "Gujarat"
[93263] "announced" "cash"
[93265] "amount" "Rs"
[93267] "5" "crore"
[93269] "players" "winning"
[93271] "gold" "Players"
[93273] "Delhi" "rewarded"
[93275] "Rs" "3"
[93277] "crore" "winning"
[93279] "gold" "Rs"
[93281] "2" "crore"
[93283] "winning" "silver"
[93285] "Rs" "1"
[93287] "crore" "bronze"
[93289] "Classification" "Language"
[93291] "ENGLISH" "Publication-Type"
[93293] "Newspaper" "Body"
[93295] "India" "July"
[93297] "24" "Saturday"
[93299] "weightlifter" "Mirabai"
[93301] "Chanu" "gave"
[93303] "India" "first"
[93305] "medal" "Tokyo"
[93307] "Olympics" "2020"
[93309] "won" "silver"
[93311] "medal" "women's"
[93313] "49" "kg"
[93315] "category" "nation"
[93317] "celebratory" "mode"
[93319] "social" "media"
[93321] "abuzz" "sorts"
[93323] "messages" "related"
[93325] "win" "athlete"
[93327] "hailing" "Manipur"
[93329] "Amid" "heartwarming"
[93331] "video" "surfaced"
[93333] "online" "captures"
[93335] "reactions" "Chanu's"
[93337] "family" "neighbours"
[93339] "bags" "win"
[93341] "Shared" "Twitter"
[93343] "ANI" "video"
[93345] "absolutely" "amazing"
[93347] "watch" "Manipur"
[93349] "Family" "neighbours"
[93351] "weightlifter" "Mirabai"
[93353] "Chanu" "burst"
[93355] "celebrations" "watch"
[93357] "win" "#Silver"
[93359] "medal" "India"
[93361] "Women's" "49kg"
[93363] "category" "reads"
[93365] "caption" "shared"
[93367] "along" "video"
[93369] "Since" "posted"
[93371] "hours" "ago"
[93373] "video" "gathered"
[93375] "78,000" "views"
[93377] "numbers" "increasing"
[93379] "post" "also"
[93381] "gathered" "12,000"
[93383] "likes" "replying"
[93385] "post" "ANI"
[93387] "also" "shared"
[93389] "quote" "relative"
[93391] "Mirabai" "Chanu"
[93393] "happy" "today"
[93395] "result" "hard"
[93397] "work" "India"
[93399] "Manipur" "proud"
[93401] "says" "relative"
[93403] "Imphal" "reads"
[93405] "Priceless" "moments"
[93407] "family" "relatives"
[93409] "wrote" "Twitter"
[93411] "user" "Congratulations"
[93413] "shared" "another"
[93415] "Watching" "person"
[93417] "lifting" "hands"
[93419] "synchronosing" "sportsperson"
[93421] "makes" "spirit"
[93423] "high" "way"
[93425] "adding" "strength"
[93427] "nature" "expressed"
[93429] "third" "ANI"
[93431] "also" "shared"
[93433] "quote" "athlete's"
[93435] "parents" "win"
[93437] "happy" "got"
[93439] "first" "medal"
[93441] "India" "expected"
[93443] "win" "gold"
[93445] "medal" "happy"
[93447] "won" "silver"
[93449] "medal" "made"
[93451] "us" "whole"
[93453] "country" "proud"
[93455] "say" "Saikhom"
[93457] "Tombi" "Saikhom"
[93459] "Kriti" "parents"
[93461] "#MirabaiChanu" "reads"
[93463] "tweet" "complete"
[93465] "images" "Mirabai"
[93467] "Chanu" "lifted"
[93469] "total" "weight"
[93471] "202" "kg"
[93473] "win" "silver"
[93475] "medal" "gold"
[93477] "medal" "won"
[93479] "China's" "Hou"
[93481] "Zhihui" "thoughts"
[93483] "video" "Published"
[93485] "HT" "Digital"
[93487] "Content" "Services"
[93489] "permission" "Hindustan"
[93491] "Times" "query"
[93493] "respect" "article"
[93495] "content" "requirement"
[93497] "please" "contact"
[93499] "Editor" "Classification"
[93501] "Language" "ENGLISH"
[93503] "Publication-Type" "Newswire"
[93505] "Body" "Fiercely"
[93507] "Female" "Sundeep"
[93509] "Mishra's" "new"
[93511] "book" "Dutee"
[93513] "Chand" "hunger"
[93515] "recurring" "theme"
[93517] "inescapable" "fourth"
[93519] "seven" "children"
[93521] "family" "monthly"
[93523] "income" "less"
[93525] "Rs3000" "Getting"
[93527] "daily" "meal"
[93529] "dal-rice" "challenge"
[93531] "leave" "alone"
[93533] "high-quality" "diet"
[93535] "athletes" "developed"
[93537] "countries" "enjoyed"
[93539] "lives" "Yet"
[93541] "Chand" "still"
[93543] "competed" "highest"
[93545] "international" "level"
[93547] "diagnosed" "hyperandrogenism"
[93549] "natural" "production"
[93551] "high" "levels"
[93553] "testosterone" "give"
[93555] "body" "extra"
[93557] "boost" "strength"
[93559] "little" "thought"
[93561] "devastate" "life"
[93563] "dropped" "Athletics"
[93565] "Federation" "India"
[93567] "AFI" "whose"
[93569] "leaders" "like"
[93571] "Adille" "Sumariwalla"
[93573] "seemed" "concerned"
[93575] "maintaining" "status"
[93577] "International" "Association"
[93579] "Athletics" "Federations"
[93581] "IAAF" "supporting"
[93583] "athletes" "Chand"
[93585] "fought" "back"
[93587] "managing" "heard"
[93589] "Court" "Arbitration"
[93591] "Sport" "argued"
[93593] "treated" "worse"
[93595] "athletes" "took"
[93597] "performance" "enhancing"
[93599] "drugs" "punished"
[93601] "allowed" "back"
[93603] "compete" "Mishra"
[93605] "writes" "athletes"
[93607] "producing" "testosterone"
[93609] "naturally" "without"
[93611] "taking" "supplements"
[93613] "like" "telling"
[93615] "different" "species"
[93617] "wonderful" "sorry"
[93619] "allowed" "compete"
[93621] "Chand" "won"
[93623] "hopes" "win"
[93625] "medal" "Tokyo"
[93627] "Olympics" "issue"
[93629] "going" "away"
[93631] "Allegations" "unfairness"
[93633] "made" "many"
[93635] "women" "athletes"
[93637] "accused" "unfair"
[93639] "advantages" "natural"
[93641] "condition" "particular"
[93643] "focus" "New"
[93645] "Zealand's" "weightlifter"
[93647] "Laurel" "Hubbard"
[93649] "competing" "completing"
[93651] "gender" "transition"
[93653] "athletes" "said"
[93655] "violate" "Olympics"
[93657] "vision" "fairness"
[93659] "sports" "arena"
[93661] "pure" "ability"
[93663] "notably" "one-sided"
[93665] "vision" "usually"
[93667] "invoked" "athlete"
[93669] "developed" "world"
[93671] "faced" "competitors"
[93673] "developing" "world"
[93675] "whose" "abilities"
[93677] "can" "somehow"
[93679] "labelled" "unfair"
[93681] "East" "African"
[93683] "runners" "whose"
[93685] "natural" "physique"
[93687] "combined" "high-altitude"
[93689] "homes" "develop"
[93691] "greater" "lung"
[93693] "power" "helps"
[93695] "endurance" "events"
[93697] "grumblings" "unfairness"
[93699] "competing" "immense"
[93701] "attention" "white"
[93703] "athlete" "appears"
[93705] "able" "challenge"
[93707] "immediately" "gets"
[93709] "indication" "feelings"
[93711] "never" "quite"
[93713] "gone" "away"
[93715] "early" "years"
[93717] "Modern" "Olympics"
[93719] "fairness" "fuelled"
[93721] "debate" "amateurs"
[93723] "professionals" "former"
[93725] "said" "embody"
[93727] "Olympic" "spirit"
[93729] "latter" "money"
[93731] "neatly" "reserved"
[93733] "Games" "rich"
[93735] "athletes" "afford"
[93737] "time" "train"
[93739] "excluding" "like"
[93741] "poor" "immensely"
[93743] "versatile" "Jim"
[93745] "Thorpe" "stripped"
[93747] "two" "gold"
[93749] "medals" "1912"
[93751] "Games" "emerged"
[93753] "played" "semi-professional"
[93755] "baseball" "Thorpe"
[93757] "coincidentally" "Native"
[93759] "American" "Allegations"
[93761] "unfairness" "athletes"
[93763] "like" "Chand"
[93765] "follow" "tactic"
[93767] "hearing" "supported"
[93769] "Madeleine" "Pape"
[93771] "Australian" "Olympic"
[93773] "athlete" "become"
[93775] "academic" "researching"
[93777] "gender" "sports"
[93779] "Pape" "pointed"
[93781] "athletes" "countries"
[93783] "gave" "access"
[93785] "every" "advantage"
[93787] "including" "good"
[93789] "childhood" "diets"
[93791] "access" "good"
[93793] "training" "facilities"
[93795] "already" "huge"
[93797] "advantage" "IAAF"
[93799] "focused" "single"
[93801] "biological" "trait"
[93803] "Hyperandrogenism" "Regulations"
[93805] "completely" "failed"
[93807] "tell" "world"
[93809] "many" "different"
[93811] "ways" "world"
[93813] "track" "field"
[93815] "inherently" "un-level"
[93817] "writes" "Mishra"
[93819] "Equipment" "another"
[93821] "issue" "Cycling"
[93823] "might" "seem"
[93825] "like" "sport"
[93827] "suited" "competitors"
[93829] "developing" "countries"
[93831] "bicycles" "imperative"
[93833] "transport" "Yet"
[93835] "sport" "dominated"
[93837] "countries" "can"
[93839] "support" "huge"
[93841] "cost" "creating"
[93843] "specialised" "cycles"
[93845] "used" "Olympic"
[93847] "events" "Australia's"
[93849] "Electron" "Pro"
[93851] "bikes" "Tokyo"
[93853] "2020" "example"
[93855] "took" "4,500"
[93857] "hours" "development"
[93859] "cost" "$"
[93861] "18,000" "Arguably"
[93863] "real" "competition"
[93865] "Cycling" "happens"
[93867] "design" "labs"
[93869] "rich" "countries"
[93871] "somehow" "questions"
[93873] "fairness" "rarely"
[93875] "raised" "Another"
[93877] "example" "can"
[93879] "seen" "competing"
[93881] "fortunes" "wrestling"
[93883] "Modern" "Pentathlon"
[93885] "former" "ancient"
[93887] "sport" "requires"
[93889] "special" "equipment"
[93891] "Athletes" "compete"
[93893] "basic" "asset"
[93895] "bodies" "dominated"
[93897] "competitors" "developed"
[93899] "world" "latter"
[93901] "created" "purely"
[93903] "Olympics" "involves"
[93905] "running" "swimming"
[93907] "fencing" "shooting"
[93909] "horse" "riding"
[93911] "latter" "three"
[93913] "disciplines" "involving"
[93915] "immense" "cost"
[93917] "Mexico's" "Ismael"
[93919] "Hernandez" "Uscanga"
[93921] "won" "bronze"
[93923] "Rio" "2016"
[93925] "first" "medallist"
[93927] "outside" "developed"
[93929] "world" "former"
[93931] "Soviet" "Union"
[93933] "allies" "competitors"
[93935] "nearly" "support"
[93937] "militaries" "Uscanga"
[93939] "Yet" "2013"
[93941] "wrestling" "International"
[93943] "Olympic" "Committee"
[93945] "IOC" "voted"
[93947] "drop" "Games"
[93949] "Modern" "Pentathlon"
[93951] "challenged" "despite"
[93953] "absurdly" "high"
[93955] "barriers" "competition"
[93957] "widely" "suggested"
[93959] "vicepresident" "international"
[93961] "federation" "son"
[93963] "Juan" "Samaranch"
[93965] "revered" "former"
[93967] "president" "IOC"
[93969] "clearly" "someone"
[93971] "well" "versed"
[93973] "politics" "backlash"
[93975] "decision" "drop"
[93977] "wrestling" "strong"
[93979] "enough" "get"
[93981] "IOC" "reverse"
[93983] "decision" "rare"
[93985] "real" "victory"
[93987] "fairness" "Games"
[93989] "example" "one-sided"
[93991] "use" "fairness"
[93993] "developed" "world"
[93995] "can" "combated"
[93997] "starting" "use"
[93999] "women" "athletes"
[94001] "like" "Chand"
[94003] "Hubbard" "Classification"
[94005] "Language" "ENGLISH"
[94007] "Publication-Type" "Newspaper"
[94009] "Body" "India"
[94011] "July" "28"
[94013] "just" "two"
[94015] "days" "People"
[94017] "elated" "Saturday"
[94019] "Mirabai" "Chanu's"
[94021] "fantastic" "performance"
[94023] "Saurabh" "Chaudhary"
[94025] "ranking" "first"
[94027] "qualification" "round"
[94029] "10m" "air"
[94031] "pistol" "Neither"
[94033] "things-a" "medal"
[94035] "first" "day"
[94037] "winning" "qualification"
[94039] "round-had" "ever"
[94041] "happened" "India's"
[94043] "Olympic" "history"
[94045] "started" "well"
[94047] "One" "day"
[94049] "later" "saw"
[94051] "lot" "anger"
[94053] "directed" "athletes"
[94055] "allegation" "always"
[94057] "buckle" "pressure"
[94059] "one" "side"
[94061] "privileged" "part"
[94063] "sport" "people"
[94065] "expect" "much"
[94067] "even" "small"
[94069] "lapse" "ignored"
[94071] "time" "also"
[94073] "know" "sport"
[94075] "technical" "everyone"
[94077] "aware" "happening"
[94079] "see" "shooters"
[94081] "standing" "think"
[94083] "inserting" "pellet"
[94085] "firing" "see"
[94087] "storm" "heads"
[94089] "manoeuvring" "real"
[94091] "action" "happening"
[94093] "know" "shooter's"
[94095] "past" "performance"
[94097] "thinking" "keeping"
[94099] "law" "averages"
[94101] "emulate" "given"
[94103] "day" "happens"
[94105] "many" "actually"
[94107] "know" "first"
[94109] "time" "Saurabh"
[94111] "just" "19"
[94113] "faced" "full"
[94115] "might" "best"
[94117] "senior" "shooters"
[94119] "world" "country"
[94121] "expecting" "Saurabh"
[94123] "well" "won"
[94125] "World" "Cup"
[94127] "medals" "put"
[94129] "there-he" "facing"
[94131] "every" "top"
[94133] "senior" "player"
[94135] "world" "first"
[94137] "time" "Asian"
[94139] "Games" "beat"
[94141] "South" "Korea's"
[94143] "Jin" "Jong-Oh"
[94145] "four-time" "Olympic"
[94147] "gold" "medallist"
[94149] "rest" "world"
[94151] "Like" "World"
[94153] "Cups" "years"
[94155] "Chinese" "never"
[94157] "came" "example"
[94159] "one" "saw"
[94161] "Pang" "Wei"
[94163] "won" "bronze"
[94165] "10m" "air"
[94167] "pistol" "Tokyo"
[94169] "Rio" "Jin"
[94171] "Jong-oh" "never"
[94173] "World" "Cups"
[94175] "knew" "584-589"
[94177] "range" "Saurabh"
[94179] "can" "expect"
[94181] "delivered" "think"
[94183] "Indian" "shooters"
[94185] "handle" "pressure"
[94187] "information" "South"
[94189] "Korea" "pistol"
[94191] "shooting" "Olympics"
[94193] "Jin" "Jong-oh"
[94195] "qualify" "finals"
[94197] "like" "Usain"
[94199] "Bolt" "shooting"
[94201] "Saurabh" "Indian"
[94203] "shooter" "dealt"
[94205] "worst" "cards"
[94207] "fate" "dealt"
[94209] "trauma" "broken"
[94211] "pistol" "lost"
[94213] "17-18" "minutes"
[94215] "ended" "shooting"
[94217] "44" "shots"
[94219] "mere" "36"
[94221] "minutes" "like"
[94223] "asking" "rate"
[94225] "10" "runs"
[94227] "per" "least"
[94229] "30" "overs"
[94231] "chase" "ODI"
[94233] "faced" "broken"
[94235] "pistol" "15th"
[94237] "shot" "60-shot"
[94239] "match" "Still"
[94241] "got" "close"
[94243] "close" "inner"
[94245] "10" "last"
[94247] "shot" "finals"
[94249] "think" "Manu"
[94251] "Bhaker" "amazing"
[94253] "number" "score"
[94255] "sheet" "effort"
[94257] "Saurabh" "grouping"
[94259] "area" "shots"
[94261] "hit" "low"
[94263] "final" "meaning"
[94265] "gun" "zeroed"
[94267] "properly" "sighters"
[94269] "nothing" "quality"
[94271] "shooting" "zeroing"
[94273] "gun" "works"
[94275] "good" "grouping"
[94277] "can" "choose"
[94279] "wrong" "spot"
[94281] "target" "make"
[94283] "initial" "loss"
[94285] "everybody" "else"
[94287] "shooting" "top"
[94289] "game" "cover"
[94291] "happens" "lost"
[94293] "good" "players"
[94295] "bad" "performance"
[94297] "athlete" "can"
[94299] "live" "Looking"
[94301] "forward" "hope"
[94303] "debutants" "emerge"
[94305] "stronger" "experience"
[94307] "also" "first"
[94309] "time" "facing"
[94311] "criticism" "talent"
[94313] "much" "better"
[94315] "start" "day"
[94317] "Till" "now"
[94319] "hard" "work"
[94321] "talent" "paid"
[94323] "need" "work"
[94325] "harder" "smarter"
[94327] "now" "Among"
[94329] "things" "can"
[94331] "look" "mental"
[94333] "toughness" "Trainings"
[94335] "feel" "like"
[94337] "matches" "matches"
[94339] "feel" "like"
[94341] "training" "Simulation"
[94343] "trainings" "what-if"
[94345] "scenarios" "need"
[94347] "find" "place"
[94349] "Shooters" "like"
[94351] "Manu" "able"
[94353] "trust" "spare"
[94355] "pistol" "practised"
[94357] "get" "comfortable"
[94359] "Published" "HT"
[94361] "Digital" "Content"
[94363] "Services" "permission"
[94365] "Hindustan" "Times"
[94367] "query" "respect"
[94369] "article" "content"
[94371] "requirement" "please"
[94373] "contact" "Editor"
[94375] "Classification" "Language"
[94377] "ENGLISH" "Publication-Type"
[94379] "Newswire" "Body"
[94381] "Fiercely" "Female"
[94383] "Sundeep" "Mishra's"
[94385] "new" "book"
[94387] "Dutee" "Chand"
[94389] "hunger" "recurring"
[94391] "theme" "inescapable"
[94393] "fourth" "seven"
[94395] "children" "family"
[94397] "monthly" "income"
[94399] "less" "Rs3000"
[94401] "Getting" "daily"
[94403] "meal" "dal-rice"
[94405] "challenge" "leave"
[94407] "alone" "high-quality"
[94409] "diet" "athletes"
[94411] "developed" "countries"
[94413] "enjoyed" "lives"
[94415] "Yet" "Chand"
[94417] "still" "competed"
[94419] "highest" "international"
[94421] "level" "diagnosed"
[94423] "hyperandrogenism" "natural"
[94425] "production" "high"
[94427] "levels" "testosterone"
[94429] "give" "body"
[94431] "extra" "boost"
[94433] "strength" "little"
[94435] "thought" "devastate"
[94437] "life" "dropped"
[94439] "Athletics" "Federation"
[94441] "India" "AFI"
[94443] "whose" "leaders"
[94445] "like" "Adille"
[94447] "Sumariwalla" "seemed"
[94449] "concerned" "maintaining"
[94451] "status" "International"
[94453] "Association" "Athletics"
[94455] "Federations" "IAAF"
[94457] "supporting" "athletes"
[94459] "Chand" "fought"
[94461] "back" "managing"
[94463] "heard" "Court"
[94465] "Arbitration" "Sport"
[94467] "argued" "treated"
[94469] "worse" "athletes"
[94471] "took" "performance"
[94473] "enhancing" "drugs"
[94475] "punished" "allowed"
[94477] "back" "compete"
[94479] "Mishra" "writes"
[94481] "athletes" "producing"
[94483] "testosterone" "naturally"
[94485] "without" "taking"
[94487] "supplements" "like"
[94489] "telling" "different"
[94491] "species" "wonderful"
[94493] "sorry" "allowed"
[94495] "compete" "Chand"
[94497] "won" "hopes"
[94499] "win" "medal"
[94501] "Tokyo" "Olympics"
[94503] "issue" "going"
[94505] "away" "Allegations"
[94507] "unfairness" "made"
[94509] "many" "women"
[94511] "athletes" "accused"
[94513] "unfair" "advantages"
[94515] "natural" "condition"
[94517] "particular" "focus"
[94519] "New" "Zealand's"
[94521] "weightlifter" "Laurel"
[94523] "Hubbard" "competing"
[94525] "completing" "gender"
[94527] "transition" "athletes"
[94529] "said" "violate"
[94531] "Olympics" "vision"
[94533] "fairness" "sports"
[94535] "arena" "pure"
[94537] "ability" "notably"
[94539] "one-sided" "vision"
[94541] "usually" "invoked"
[94543] "athlete" "developed"
[94545] "world" "faced"
[94547] "competitors" "developing"
[94549] "world" "whose"
[94551] "abilities" "can"
[94553] "somehow" "labelled"
[94555] "unfair" "East"
[94557] "African" "runners"
[94559] "whose" "natural"
[94561] "physique" "combined"
[94563] "high-altitude" "homes"
[94565] "develop" "greater"
[94567] "lung" "power"
[94569] "helps" "endurance"
[94571] "events" "grumblings"
[94573] "unfairness" "competing"
[94575] "immense" "attention"
[94577] "white" "athlete"
[94579] "appears" "able"
[94581] "challenge" "immediately"
[94583] "gets" "indication"
[94585] "feelings" "never"
[94587] "quite" "gone"
[94589] "away" "early"
[94591] "years" "Modern"
[94593] "Olympics" "fairness"
[94595] "fuelled" "debate"
[94597] "amateurs" "professionals"
[94599] "former" "said"
[94601] "embody" "Olympic"
[94603] "spirit" "latter"
[94605] "money" "neatly"
[94607] "reserved" "Games"
[94609] "rich" "athletes"
[94611] "afford" "time"
[94613] "train" "excluding"
[94615] "like" "poor"
[94617] "immensely" "versatile"
[94619] "Jim" "Thorpe"
[94621] "stripped" "two"
[94623] "gold" "medals"
[94625] "1912" "Games"
[94627] "emerged" "played"
[94629] "semi-professional" "baseball"
[94631] "Thorpe" "coincidentally"
[94633] "Native" "American"
[94635] "Allegations" "unfairness"
[94637] "athletes" "like"
[94639] "Chand" "follow"
[94641] "tactic" "hearing"
[94643] "supported" "Madeleine"
[94645] "Pape" "Australian"
[94647] "Olympic" "athlete"
[94649] "become" "academic"
[94651] "researching" "gender"
[94653] "sports" "Pape"
[94655] "pointed" "athletes"
[94657] "countries" "gave"
[94659] "access" "every"
[94661] "advantage" "including"
[94663] "good" "childhood"
[94665] "diets" "access"
[94667] "good" "training"
[94669] "facilities" "already"
[94671] "huge" "advantage"
[94673] "IAAF" "focused"
[94675] "single" "biological"
[94677] "trait" "Hyperandrogenism"
[94679] "Regulations" "completely"
[94681] "failed" "tell"
[94683] "world" "many"
[94685] "different" "ways"
[94687] "world" "track"
[94689] "field" "inherently"
[94691] "un-level" "writes"
[94693] "Mishra" "Equipment"
[94695] "another" "issue"
[94697] "Cycling" "might"
[94699] "seem" "like"
[94701] "sport" "suited"
[94703] "competitors" "developing"
[94705] "countries" "bicycles"
[94707] "imperative" "transport"
[94709] "Yet" "sport"
[94711] "dominated" "countries"
[94713] "can" "support"
[94715] "huge" "cost"
[94717] "creating" "specialised"
[94719] "cycles" "used"
[94721] "Olympic" "events"
[94723] "Australia's" "Electron"
[94725] "Pro" "bikes"
[94727] "Tokyo" "2020"
[94729] "example" "took"
[94731] "4,500" "hours"
[94733] "development" "cost"
[94735] "$" "18,000"
[94737] "Arguably" "real"
[94739] "competition" "Cycling"
[94741] "happens" "design"
[94743] "labs" "rich"
[94745] "countries" "somehow"
[94747] "questions" "fairness"
[94749] "rarely" "raised"
[94751] "Another" "example"
[94753] "can" "seen"
[94755] "competing" "fortunes"
[94757] "wrestling" "Modern"
[94759] "Pentathlon" "former"
[94761] "ancient" "sport"
[94763] "requires" "special"
[94765] "equipment" "Athletes"
[94767] "compete" "basic"
[94769] "asset" "bodies"
[94771] "dominated" "competitors"
[94773] "developed" "world"
[94775] "latter" "created"
[94777] "purely" "Olympics"
[94779] "involves" "running"
[94781] "swimming" "fencing"
[94783] "shooting" "horse"
[94785] "riding" "latter"
[94787] "three" "disciplines"
[94789] "involving" "immense"
[94791] "cost" "Mexico's"
[94793] "Ismael" "Hernandez"
[94795] "Uscanga" "won"
[94797] "bronze" "Rio"
[94799] "2016" "first"
[94801] "medallist" "outside"
[94803] "developed" "world"
[94805] "former" "Soviet"
[94807] "Union" "allies"
[94809] "competitors" "nearly"
[94811] "support" "militaries"
[94813] "Uscanga" "Yet"
[94815] "2013" "wrestling"
[94817] "International" "Olympic"
[94819] "Committee" "IOC"
[94821] "voted" "drop"
[94823] "Games" "Modern"
[94825] "Pentathlon" "challenged"
[94827] "despite" "absurdly"
[94829] "high" "barriers"
[94831] "competition" "widely"
[94833] "suggested" "vicepresident"
[94835] "international" "federation"
[94837] "son" "Juan"
[94839] "Samaranch" "revered"
[94841] "former" "president"
[94843] "IOC" "clearly"
[94845] "someone" "well"
[94847] "versed" "politics"
[94849] "backlash" "decision"
[94851] "drop" "wrestling"
[94853] "strong" "enough"
[94855] "get" "IOC"
[94857] "reverse" "decision"
[94859] "rare" "real"
[94861] "victory" "fairness"
[94863] "Games" "example"
[94865] "one-sided" "use"
[94867] "fairness" "developed"
[94869] "world" "can"
[94871] "combated" "starting"
[94873] "use" "women"
[94875] "athletes" "like"
[94877] "Chand" "Hubbard"
[94879] "Classification" "Language"
[94881] "ENGLISH" "Publication-Type"
[94883] "Newspaper" "Body"
[94885] "Fiercely" "Female"
[94887] "Sundeep" "Mishra's"
[94889] "new" "book"
[94891] "Dutee" "Chand"
[94893] "hunger" "recurring"
[94895] "theme" "inescapable"
[94897] "fourth" "seven"
[94899] "children" "family"
[94901] "monthly" "income"
[94903] "less" "Rs3000"
[94905] "Getting" "daily"
[94907] "meal" "dal-rice"
[94909] "challenge" "leave"
[94911] "alone" "high-quality"
[94913] "diet" "athletes"
[94915] "developed" "countries"
[94917] "enjoyed" "lives"
[94919] "Yet" "Chand"
[94921] "still" "competed"
[94923] "highest" "international"
[94925] "level" "diagnosed"
[94927] "hyperandrogenism" "natural"
[94929] "production" "high"
[94931] "levels" "testosterone"
[94933] "give" "body"
[94935] "extra" "boost"
[94937] "strength" "little"
[94939] "thought" "devastate"
[94941] "life" "dropped"
[94943] "Athletics" "Federation"
[94945] "India" "AFI"
[94947] "whose" "leaders"
[94949] "like" "Adille"
[94951] "Sumariwalla" "seemed"
[94953] "concerned" "maintaining"
[94955] "status" "International"
[94957] "Association" "Athletics"
[94959] "Federations" "IAAF"
[94961] "supporting" "athletes"
[94963] "Chand" "fought"
[94965] "back" "managing"
[94967] "heard" "Court"
[94969] "Arbitration" "Sport"
[94971] "argued" "treated"
[94973] "worse" "athletes"
[94975] "took" "performance"
[94977] "enhancing" "drugs"
[94979] "punished" "allowed"
[94981] "back" "compete"
[94983] "Mishra" "writes"
[94985] "athletes" "producing"
[94987] "testosterone" "naturally"
[94989] "without" "taking"
[94991] "supplements" "like"
[94993] "telling" "different"
[94995] "species" "wonderful"
[94997] "sorry" "allowed"
[94999] "compete" "Chand"
[95001] "won" "hopes"
[95003] "win" "medal"
[95005] "Tokyo" "Olympics"
[95007] "issue" "going"
[95009] "away" "Allegations"
[95011] "unfairness" "made"
[95013] "many" "women"
[95015] "athletes" "accused"
[95017] "unfair" "advantages"
[95019] "natural" "condition"
[95021] "particular" "focus"
[95023] "New" "Zealand's"
[95025] "weightlifter" "Laurel"
[95027] "Hubbard" "competing"
[95029] "completing" "gender"
[95031] "transition" "athletes"
[95033] "said" "violate"
[95035] "Olympics" "vision"
[95037] "fairness" "sports"
[95039] "arena" "pure"
[95041] "ability" "isa"
[95043] "notablyone-sided" "vision"
[95045] "usually" "invoked"
[95047] "athlete" "developed"
[95049] "world" "faced"
[95051] "competitors" "developing"
[95053] "world" "whose"
[95055] "abilities" "can"
[95057] "somehow" "labelled"
[95059] "unfair" "East"
[95061] "African" "runners"
[95063] "whose" "natural"
[95065] "physique" "combined"
[95067] "high-altitude" "homes"
[95069] "develop" "greater"
[95071] "lung" "power"
[95073] "helps" "endurance"
[95075] "events" "grumblings"
[95077] "unfairness" "competing"
[95079] "immense" "attention"
[95081] "white" "athlete"
[95083] "appears" "able"
[95085] "challenge" "immediately"
[95087] "gets" "indication"
[95089] "feelings" "never"
[95091] "quite" "gone"
[95093] "away" "early"
[95095] "years" "Modern"
[95097] "Olympics" "fairness"
[95099] "fuelled" "debate"
[95101] "amateurs" "professionals"
[95103] "former" "said"
[95105] "embody" "Olympic"
[95107] "spirit" "latter"
[95109] "money" "neatly"
[95111] "reserved" "Games"
[95113] "rich" "athletes"
[95115] "afford" "time"
[95117] "train" "excluding"
[95119] "like" "poor"
[95121] "immensely" "versatile"
[95123] "Jim" "Thorpe"
[95125] "stripped" "two"
[95127] "gold" "medals"
[95129] "1912Games" "emerged"
[95131] "played" "semi-professional"
[95133] "baseball" "Thorpe"
[95135] "coincidentally" "Native"
[95137] "American" "Allegations"
[95139] "unfairness" "athletes"
[95141] "like" "Chand"
[95143] "follow" "tactic"
[95145] "hearing" "supported"
[95147] "Madeleine" "Pape"
[95149] "Australian" "Olympic"
[95151] "athlete" "become"
[95153] "academic" "researching"
[95155] "gender" "sports"
[95157] "Pape" "pointed"
[95159] "athletes" "countries"
[95161] "gave" "access"
[95163] "every" "advantage"
[95165] "including" "good"
[95167] "childhood" "diets"
[95169] "access" "good"
[95171] "training" "facilities"
[95173] "already" "huge"
[95175] "advantage" "IAAF"
[95177] "focused" "single"
[95179] "biological" "trait"
[95181] "Hyperandrogenism" "Regulations"
[95183] "completely" "failed"
[95185] "tell" "world"
[95187] "many" "different"
[95189] "ways" "world"
[95191] "track" "field"
[95193] "inherently" "un-level"
[95195] "writes" "Mishra"
[95197] "Equipment" "another"
[95199] "issue" "Cycling"
[95201] "might" "seem"
[95203] "like" "sport"
[95205] "suited" "competitors"
[95207] "developing" "countries"
[95209] "bicycles" "imperative"
[95211] "transport" "Yet"
[95213] "sport" "dominated"
[95215] "countries" "can"
[95217] "support" "huge"
[95219] "cost" "creating"
[95221] "specialised" "cycles"
[95223] "used" "Olympic"
[95225] "events" "Australia's"
[95227] "Electron" "Pro"
[95229] "bikes" "Tokyo"
[95231] "2020" "example"
[95233] "took" "4,500"
[95235] "hours" "development"
[95237] "cost" "$"
[95239] "18,000" "Arguably"
[95241] "real" "competition"
[95243] "Cycling" "happens"
[95245] "design" "labs"
[95247] "rich" "countries"
[95249] "somehow" "questions"
[95251] "fairness" "rarely"
[95253] "raised" "Another"
[95255] "example" "can"
[95257] "seen" "competing"
[95259] "fortunes" "wrestling"
[95261] "Modern" "Pentathlon"
[95263] "former" "ancient"
[95265] "sport" "requires"
[95267] "special" "equipment"
[95269] "Athletes" "compete"
[95271] "basic" "asset"
[95273] "bodies" "dominated"
[95275] "competitors" "developed"
[95277] "world" "latter"
[95279] "created" "purely"
[95281] "Olympics" "involves"
[95283] "running" "swimming"
[95285] "fencing" "shooting"
[95287] "horse" "riding"
[95289] "latter" "three"
[95291] "disciplines" "involving"
[95293] "immense" "cost"
[95295] "Mexico's" "Ismael"
[95297] "Hernandez" "Uscanga"
[95299] "won" "bronze"
[95301] "Rio" "2016"
[95303] "first" "medallist"
[95305] "outside" "developed"
[95307] "world" "former"
[95309] "Soviet" "Union"
[95311] "allies" "competitors"
[95313] "nearly" "support"
[95315] "militaries" "Uscanga"
[95317] "Yet" "2013"
[95319] "wrestling" "International"
[95321] "Olympic" "Committee"
[95323] "IOC" "voted"
[95325] "drop" "Games"
[95327] "Modern" "Pentathlon"
[95329] "challenged" "despite"
[95331] "absurdly" "high"
[95333] "barriers" "competition"
[95335] "widely" "suggested"
[95337] "vicepresident" "international"
[95339] "federation" "son"
[95341] "Juan" "Samaranch"
[95343] "revered" "former"
[95345] "president" "IOC"
[95347] "clearly" "someone"
[95349] "well" "versed"
[95351] "politics" "backlash"
[95353] "decision" "drop"
[95355] "wrestling" "strong"
[95357] "enough" "get"
[95359] "IOC" "reverse"
[95361] "decision" "rare"
[95363] "real" "victory"
[95365] "fairness" "Games"
[95367] "example" "one-sided"
[95369] "use" "fairness"
[95371] "developed" "world"
[95373] "can" "combated"
[95375] "starting" "use"
[95377] "women" "athletes"
[95379] "like" "Chand"
[95381] "Hubbard" "Classification"
[95383] "Language" "ENGLISH"
[95385] "Publication-Type" "Newspaper"
[95387] "Body" "New"
[95389] "Delhi" "July"
[95391] "29" "variety"
[95393] "brands" "cashed"
[95395] "athlete" "Mirabai"
[95397] "Chanu's" "thumping"
[95399] "win" "women's"
[95401] "weightlifting" "49"
[95403] "kg" "category"
[95405] "ongoing" "Tokyo"
[95407] "Olympics" "launching"
[95409] "campaigns" "congratulate"
[95411] "even" "offering"
[95413] "freebies" "Homegrown"
[95415] "cloud" "kitchen"
[95417] "food" "brand"
[95419] "platform" "Yumlane"
[95421] "offered" "pizza"
[95423] "athlete" "Jubilant"
[95425] "FoodWorks" "owned"
[95427] "Domino's" "Pizza"
[95429] "went" "step"
[95431] "ahead" "delivered"
[95433] "Chanu's" "home"
[95435] "Manipur" "besides"
[95437] "promising" "lifetime"
[95439] "free" "treats"
[95441] "Domino's" "now"
[95443] "short-term" "digital"
[95445] "activation" "deal"
[95447] "Mirabai" "Chanu"
[95449] "said" "Neerav"
[95451] "Tomar" "CEO"
[95453] "managing" "director"
[95455] "IOS" "Sports"
[95457] "Entertainment" "sports"
[95459] "management" "company"
[95461] "handles" "Chanu's"
[95463] "brand" "endorsement"
[95465] "portfolio" "Tomar"
[95467] "told" "Mint"
[95469] "interest" "brands"
[95471] "across" "categories"
[95473] "steel" "energy"
[95475] "drinks" "muscle"
[95477] "supplement" "women's"
[95479] "personal" "care"
[95481] "sign" "Chanu"
[95483] "branding" "marketing"
[95485] "experts" "felt"
[95487] "brands" "used"
[95489] "win" "attract"
[95491] "attention" "push"
[95493] "products" "marketing"
[95495] "tactics" "get"
[95497] "quick" "media"
[95499] "eyeballs" "sadly"
[95501] "brands" "chasing"
[95503] "moment" "marketing"
[95505] "trending" "list"
[95507] "brands" "bother"
[95509] "stand" "right"
[95511] "fit" "said"
[95513] "Naresh" "Gupta"
[95515] "co-founder" "chief"
[95517] "strategy" "officer"
[95519] "Bang" "Middle"
[95521] "Gupta" "added"
[95523] "brands" "serious"
[95525] "fueling" "athlete's"
[95527] "Olympic" "dreams"
[95529] "work" "long"
[95531] "period" "time"
[95533] "Companies" "JSW"
[95535] "Tatas" "spend"
[95537] "lifetime" "nurturing"
[95539] "athletes" "looking"
[95541] "added" "JSW"
[95543] "Group" "instance"
[95545] "supporting" "athletes"
[95547] "last" "five"
[95549] "years" "every"
[95551] "stage" "build-up"
[95553] "Tokyo" "Games"
[95555] "firm" "also"
[95557] "opened" "doors"
[95559] "Inspire" "Institute"
[95561] "Sport" "IIS"
[95563] "training" "centre"
[95565] "Bellary" "Karnataka"
[95567] "Tokyo-bound" "athletes"
[95569] "irrespective" "whether"
[95571] "supported" "JSW"
[95573] "Group" "Sports"
[95575] "brand" "Puma"
[95577] "signed" "18"
[95579] "Indian" "athletes"
[95581] "represent" "country"
[95583] "national" "international"
[95585] "events" "across"
[95587] "sporting" "disciplines"
[95589] "like" "shooting"
[95591] "hockey" "track"
[95593] "field" "boxing"
[95595] "table" "tennis"
[95597] "discus" "throw"
[95599] "badminton" "brand"
[95601] "provide" "gear"
[95603] "support" "athletes"
[95605] "Harish" "Bijoor"
[95607] "brand" "strategy"
[95609] "expert" "founder"
[95611] "Harish" "BijoorConsults"
[95613] "Inc" "calls"
[95615] "Olympic" "moment"
[95617] "vulturism" "Many"
[95619] "brands" "hijacked"
[95621] "winning" "moment"
[95623] "athletes" "gain"
[95625] "attention" "towards"
[95627] "created" "negative"
[95629] "reaction" "minds"
[95631] "many" "Consumers"
[95633] "savvy" "though"
[95635] "know" "happens"
[95637] "noted" "Lovely"
[95639] "Professional" "University"
[95641] "LPU" "ad"
[95643] "showing" "11"
[95645] "athletes" "India"
[95647] "Olympic" "squad"
[95649] "belonged" "university"
[95651] "stirred" "debate"
[95653] "Virat" "Kohli"
[95655] "mentioned" "fact"
[95657] "post" "Netizens"
[95659] "trolled" "Kohli"
[95661] "using" "Olympics"
[95663] "ploy" "promote"
[95665] "educational" "institution"
[95667] "senior" "sports"
[95669] "marketing" "executive"
[95671] "condition" "anonymity"
[95673] "said" "legal"
[95675] "implications" "marketing"
[95677] "tactics" "Unless"
[95679] "brand" "signed"
[95681] "legal" "contract"
[95683] "athlete" "use"
[95685] "picture" "even"
[95687] "congratulatory" "posts"
[95689] "Often" "brands"
[95691] "take" "liberties"
[95693] "cricketers" "got"
[95695] "strong" "management"
[95697] "legal" "teams"
[95699] "However" "unfortunately"
[95701] "brands" "tend"
[95703] "take" "advantage"
[95705] "young" "upcoming"
[95707] "athletes" "non-traditional"
[95709] "sports" "likely"
[95711] "come" "limelight"
[95713] "lifetime" "executive"
[95715] "added" "biggest"
[95717] "drawback" "non-traditional"
[95719] "sports" "athletes"
[95721] "also" "low"
[95723] "visibility" "Unlike"
[95725] "sports" "cricket"
[95727] "badminton" "tennis"
[95729] "football" "year-round"
[95731] "engagement" "non-traditional"
[95733] "sports" "athletes"
[95735] "seen" "twice"
[95737] "four" "years"
[95739] "Asian" "Games"
[95741] "Olympics" "unfortunate"
[95743] "reason" "access"
[95745] "fame" "every"
[95747] "four" "years"
[95749] "hence" "brands"
[95751] "sign" "long-term"
[95753] "partnerships" "executive"
[95755] "noted" "promoters"
[95757] "HT" "Media"
[95759] "Ltd" "publishes"
[95761] "Mint" "Jubilant"
[95763] "FoodWorks" "closely"
[95765] "related" "however"
[95767] "promoter" "cross-holdings"
[95769] "Published" "HT"
[95771] "Digital" "Content"
[95773] "Services" "permission"
[95775] "MINT" "query"
[95777] "respect" "article"
[95779] "content" "requirement"
[95781] "please" "contact"
[95783] "Editor" "Classification"
[95785] "Language" "ENGLISH"
[95787] "Publication-Type" "Newspaper"
[95789] "Body" "Fiercely"
[95791] "Female" "Sundeep"
[95793] "Mishra's" "new"
[95795] "book" "Dutee"
[95797] "Chand" "hunger"
[95799] "recurring" "theme"
[95801] "inescapable" "fourth"
[95803] "seven" "children"
[95805] "family" "monthly"
[95807] "income" "less"
[95809] "Rs3000" "Getting"
[95811] "daily" "meal"
[95813] "dal-rice" "challenge"
[95815] "leave" "alone"
[95817] "high-quality" "diet"
[95819] "athletes" "developed"
[95821] "countries" "enjoyed"
[95823] "lives" "Yet"
[95825] "Chand" "still"
[95827] "competed" "highest"
[95829] "international" "level"
[95831] "diagnosed" "hyperandrogenism"
[95833] "natural" "production"
[95835] "high" "levels"
[95837] "testosterone" "give"
[95839] "body" "extra"
[95841] "boost" "strength"
[95843] "little" "thought"
[95845] "devastate" "life"
[95847] "dropped" "Athletics"
[95849] "Federation" "India"
[95851] "AFI" "whose"
[95853] "leaders" "like"
[95855] "Adille" "Sumariwalla"
[95857] "seemed" "concerned"
[95859] "maintaining" "status"
[95861] "International" "Association"
[95863] "Athletics" "Federations"
[95865] "IAAF" "supporting"
[95867] "athletes" "Chand"
[95869] "fought" "back"
[95871] "managing" "heard"
[95873] "Court" "Arbitration"
[95875] "Sport" "argued"
[95877] "treated" "worse"
[95879] "athletes" "took"
[95881] "performance" "enhancing"
[95883] "drugs" "punished"
[95885] "allowed" "back"
[95887] "compete" "Mishra"
[95889] "writes" "athletes"
[95891] "producing" "testosterone"
[95893] "naturally" "without"
[95895] "taking" "supplements"
[95897] "like" "telling"
[95899] "different" "species"
[95901] "wonderful" "sorry"
[95903] "allowed" "compete"
[95905] "Chand" "won"
[95907] "hopes" "win"
[95909] "medal" "Tokyo"
[95911] "Olympics" "issue"
[95913] "going" "away"
[95915] "Allegations" "unfairness"
[95917] "made" "many"
[95919] "women" "athletes"
[95921] "accused" "unfair"
[95923] "advantages" "natural"
[95925] "condition" "particular"
[95927] "focus" "New"
[95929] "Zealand's" "weightlifter"
[95931] "Laurel" "Hubbard"
[95933] "competing" "completing"
[95935] "gender" "transition"
[95937] "athletes" "said"
[95939] "violate" "Olympics"
[95941] "vision" "fairness"
[95943] "sports" "arena"
[95945] "pure" "ability"
[95947] "notably" "one-sided"
[95949] "vision" "usually"
[95951] "invoked" "athlete"
[95953] "developed" "world"
[95955] "faced" "competitors"
[95957] "developing" "world"
[95959] "whose" "abilities"
[95961] "can" "somehow"
[95963] "labelled" "unfair"
[95965] "East" "African"
[95967] "runners" "whose"
[95969] "natural" "physique"
[95971] "combined" "high-altitude"
[95973] "homes" "develop"
[95975] "greater" "lung"
[95977] "power" "helps"
[95979] "endurance" "events"
[95981] "grumblings" "unfairness"
[95983] "competing" "immense"
[95985] "attention" "white"
[95987] "athlete" "appears"
[95989] "able" "challenge"
[95991] "immediately" "gets"
[95993] "indication" "feelings"
[95995] "never" "quite"
[95997] "gone" "away"
[95999] "early" "years"
[96001] "Modern" "Olympics"
[96003] "fairness" "fuelled"
[96005] "debate" "amateurs"
[96007] "professionals" "former"
[96009] "said" "embody"
[96011] "Olympic" "spirit"
[96013] "latter" "money"
[96015] "neatly" "reserved"
[96017] "Games" "rich"
[96019] "athletes" "afford"
[96021] "time" "train"
[96023] "excluding" "like"
[96025] "poor" "immensely"
[96027] "versatile" "Jim"
[96029] "Thorpe" "stripped"
[96031] "two" "gold"
[96033] "medals" "1912"
[96035] "Games" "emerged"
[96037] "played" "semi-professional"
[96039] "baseball" "Thorpe"
[96041] "coincidentally" "Native"
[96043] "American" "Allegations"
[96045] "unfairness" "athletes"
[96047] "like" "Chand"
[96049] "follow" "tactic"
[96051] "hearing" "supported"
[96053] "Madeleine" "Pape"
[96055] "Australian" "Olympic"
[96057] "athlete" "become"
[96059] "academic" "researching"
[96061] "gender" "sports"
[96063] "Pape" "pointed"
[96065] "athletes" "countries"
[96067] "gave" "access"
[96069] "every" "advantage"
[96071] "including" "good"
[96073] "childhood" "diets"
[96075] "access" "good"
[96077] "training" "facilities"
[96079] "already" "huge"
[96081] "advantage" "IAAF"
[96083] "focused" "single"
[96085] "biological" "trait"
[96087] "Hyperandrogenism" "Regulations"
[96089] "completely" "failed"
[96091] "tell" "world"
[96093] "many" "different"
[96095] "ways" "world"
[96097] "track" "field"
[96099] "inherently" "un-level"
[96101] "writes" "Mishra"
[96103] "Equipment" "another"
[96105] "issue" "Cycling"
[96107] "might" "seem"
[96109] "like" "sport"
[96111] "suited" "competitors"
[96113] "developing" "countries"
[96115] "bicycles" "imperative"
[96117] "transport" "Yet"
[96119] "sport" "dominated"
[96121] "countries" "can"
[96123] "support" "huge"
[96125] "cost" "creating"
[96127] "specialised" "cycles"
[96129] "used" "Olympic"
[96131] "events" "Australia's"
[96133] "Electron" "Pro"
[96135] "bikes" "Tokyo"
[96137] "2020" "example"
[96139] "took" "4,500"
[96141] "hours" "development"
[96143] "cost" "$"
[96145] "18,000" "Arguably"
[96147] "real" "competition"
[96149] "Cycling" "happens"
[96151] "design" "labs"
[96153] "rich" "countries"
[96155] "somehow" "questions"
[96157] "fairness" "rarely"
[96159] "raised" "Another"
[96161] "example" "can"
[96163] "seen" "competing"
[96165] "fortunes" "wrestling"
[96167] "Modern" "Pentathlon"
[96169] "former" "ancient"
[96171] "sport" "requires"
[96173] "special" "equipment"
[96175] "Athletes" "compete"
[96177] "basic" "asset"
[96179] "bodies" "dominated"
[96181] "competitors" "developed"
[96183] "world" "latter"
[96185] "created" "purely"
[96187] "Olympics" "involves"
[96189] "running" "swimming"
[96191] "fencing" "shooting"
[96193] "horse" "riding"
[96195] "latter" "three"
[96197] "disciplines" "involving"
[96199] "immense" "cost"
[96201] "Mexico's" "Ismael"
[96203] "Hernandez" "Uscanga"
[96205] "won" "bronze"
[96207] "Rio" "2016"
[96209] "first" "medallist"
[96211] "outside" "developed"
[96213] "world" "former"
[96215] "Soviet" "Union"
[96217] "allies" "competitors"
[96219] "nearly" "support"
[96221] "militaries" "Uscanga"
[96223] "Yet" "2013"
[96225] "wrestling" "International"
[96227] "Olympic" "Committee"
[96229] "IOC" "voted"
[96231] "drop" "Games"
[96233] "Modern" "Pentathlon"
[96235] "challenged" "despite"
[96237] "absurdly" "high"
[96239] "barriers" "competition"
[96241] "widely" "suggested"
[96243] "vicepresident" "international"
[96245] "federation" "son"
[96247] "Juan" "Samaranch"
[96249] "revered" "former"
[96251] "president" "IOC"
[96253] "clearly" "someone"
[96255] "well" "versed"
[96257] "politics" "backlash"
[96259] "decision" "drop"
[96261] "wrestling" "strong"
[96263] "enough" "get"
[96265] "IOC" "reverse"
[96267] "decision" "rare"
[96269] "real" "victory"
[96271] "fairness" "Games"
[96273] "example" "one-sided"
[96275] "use" "fairness"
[96277] "developed" "world"
[96279] "can" "combated"
[96281] "starting" "use"
[96283] "women" "athletes"
[96285] "like" "Chand"
[96287] "Hubbard" "Classification"
[96289] "Language" "ENGLISH"
[96291] "Publication-Type" "Newspaper"
[96293] "Body" "final"
[96295] "day" "swoop"
[96297] "Tokyo" "2020"
[96299] "United" "States"
[96301] "earned" "bragging"
[96303] "rights" "Tokyo"
[96305] "2020" "moving"
[96307] "ahead" "China"
[96309] "medal" "table"
[96311] "three" "golds"
[96313] "clinched" "Sunday"
[96315] "just" "put"
[96317] "noses" "front"
[96319] "finish" "line"
[96321] "39-38" "one"
[96323] "women's" "basketball"
[96325] "may" "expected"
[96327] "lines" "women's"
[96329] "volleyball" "team"
[96331] "winning" "first-ever"
[96333] "gold" "drew"
[96335] "level" "Jennifer"
[96337] "Valente's" "cycling"
[96339] "gold" "proved"
[96341] "clincher" "one-medal"
[96343] "gap" "top"
[96345] "two" "closest"
[96347] "ever" "Tokyo"
[96349] "Athens" "2004"
[96351] "USA" "36"
[96353] "gold" "China"
[96355] "32" "gold"
[96357] "involved" "tight"
[96359] "race" "interesting"
[96361] "aspect" "tally"
[96363] "emergence" "first-time"
[96365] "medal" "winners"
[96367] "largest" "list"
[96369] "medal-winning" "countries"
[96371] "Games" "93"
[96373] "different" "nations"
[96375] "earned" "podium"
[96377] "finish" "number"
[96379] "gold-winning" "nations"
[96381] "edition" "63"
[96383] "also" "broke"
[96385] "record" "59"
[96387] "set" "Rio"
[96389] "2016" "Just"
[96391] "like" "Rio"
[96393] "Jordan" "Kosovo"
[96395] "Fiji" "medalled"
[96397] "first" "time"
[96399] "Tokyo" "Games"
[96401] "ended" "three"
[96403] "new" "countries"
[96405] "joining" "medal"
[96407] "table" "San"
[96409] "Marino" "Turkmenistan"
[96411] "Burkina" "Faso"
[96413] "newest" "list"
[96415] "gold-winning" "nations"
[96417] "Qatar" "Bermuda"
[96419] "Philippines" "final"
[96421] "tally" "seemed"
[96423] "unlikely" "just"
[96425] "days" "left"
[96427] "China" "significant"
[96429] "lead" "gold"
[96431] "medal" "count"
[96433] "last" "several"
[96435] "editions" "top"
[96437] "position" "gold"
[96439] "medal" "table"
[96441] "preserve" "USA"
[96443] "China" "fact"
[96445] "last" "Games"
[96447] "third" "nation"
[96449] "topped" "standings"
[96451] "Barcelona" "1992"
[96453] "Unified" "Team"
[96455] "erstwhile" "Soviet"
[96457] "Union" "states"
[96459] "securing" "gold"
[96461] "medals" "Fluctuating"
[96463] "fortunes" "US's"
[96465] "gold" "medal"
[96467] "count" "39"
[96469] "time" "46"
[96471] "golds" "won"
[96473] "Rio" "2016"
[96475] "London" "2012"
[96477] "China" "dominated"
[96479] "home" "turf"
[96481] "Beijing" "2008"
[96483] "48" "gold"
[96485] "won" "26"
[96487] "gold" "Rio"
[96489] "2016" "just"
[96491] "one" "behind"
[96493] "Great" "Britain"
[96495] "finished" "second"
[96497] "Tokyo" "though"
[96499] "Chinese" "equalled"
[96501] "gold" "medal"
[96503] "haul" "achieved"
[96505] "London" "2012"
[96507] "American" "haul"
[96509] "term" "dropped"
[96511] "traditional" "strongholds"
[96513] "like" "swimming"
[96515] "16" "Rio"
[96517] "11" "Tokyo"
[96519] "athletics" "13"
[96521] "2016" "seven"
[96523] "now" "gymnastics"
[96525] "four" "two"
[96527] "retirement" "Michael"
[96529] "Phelps" "withdrawal"
[96531] "Simone" "Biles"
[96533] "affected" "tally"
[96535] "Americans" "still"
[96537] "managed" "gain"
[96539] "new" "strides"
[96541] "events" "wrestling"
[96543] "shooting" "golf"
[96545] "fencing" "new"
[96547] "33" "basketball"
[96549] "surfing" "events"
[96551] "China" "meanwhile"
[96553] "improved" "already"
[96555] "impressive" "performance"
[96557] "weightlifting" "seven"
[96559] "gold" "medals"
[96561] "time" "compared"
[96563] "five" "Rio"
[96565] "matching" "seven"
[96567] "won" "diving"
[96569] "five" "years"
[96571] "ago" "Shooting"
[96573] "successful" "event"
[96575] "clinched" "four"
[96577] "gold" "compared"
[96579] "solitary" "gold"
[96581] "Zhang" "Mengxue"
[96583] "won" "10m"
[96585] "air" "pistol"
[96587] "event" "Rio"
[96589] "also" "tripled"
[96591] "gold" "medal"
[96593] "swimming" "three"
[96595] "defend" "women's"
[96597] "volleyball" "title"
[96599] "New" "horizons"
[96601] "Americans" "won"
[96603] "gold" "Tokyo"
[96605] "several" "events"
[96607] "always" "considered"
[96609] "strengths" "Lee"
[96611] "Keifer" "won"
[96613] "individual" "foil"
[96615] "gold" "fencing"
[96617] "Nevin" "Harrison"
[96619] "won" "canoeing"
[96621] "Anastasija" "Zolotic"
[96623] "triumphed" "taekwondo's"
[96625] "featherweight" "class"
[96627] "China" "gymnastics"
[96629] "big" "success"
[96631] "four" "gold"
[96633] "medals" "including"
[96635] "trampoline" "Rio"
[96637] "failed" "win"
[96639] "single" "gold"
[96641] "medal" "also"
[96643] "secured" "top"
[96645] "spots" "podium"
[96647] "sports" "like"
[96649] "canoeing" "fencing"
[96651] "rowing" "sailing"
[96653] "cycling" "India's"
[96655] "new" "high"
[96657] "best-ever" "tally"
[96659] "one" "gold"
[96661] "two" "silver"
[96663] "four" "bronze"
[96665] "India" "finished"
[96667] "48th" "table"
[96669] "highest" "position"
[96671] "since" "1980"
[96673] "Moscow" "Olympics"
[96675] "boycotted" "66"
[96677] "countries" "Soviet-Afghan"
[96679] "War" "India"
[96681] "finished" "23rd"
[96683] "Russia" "won"
[96685] "just" "men's"
[96687] "hockey" "gold"
[96689] "fact" "48th"
[96691] "position" "Tokyo"
[96693] "India's" "best"
[96695] "finish" "Olympics"
[96697] "won" "two"
[96699] "medals" "ranked"
[96701] "26th" "gold"
[96703] "bronze" "Helsinki"
[96705] "1952" "Golden"
[96707] "sunrise" "Japan"
[96709] "Japan" "finished"
[96711] "third" "best"
[96713] "overall" "medal"
[96715] "table" "third"
[96717] "time" "Rome"
[96719] "1960" "Tokyo"
[96721] "1964" "58"
[96723] "medals" "won"
[96725] "27" "gold"
[96727] "14" "silver"
[96729] "17" "bronze"
[96731] "2021" "make"
[96733] "successful" "edition"
[96735] "stellar" "performance"
[96737] "judo" "helped"
[96739] "hosts" "overall"
[96741] "ranking" "London"
[96743] "Japan" "won"
[96745] "one" "gold"
[96747] "medal" "sport"
[96749] "three" "Rio"
[96751] "15" "events"
[96753] "Judo" "past"
[96755] "fortnight" "won"
[96757] "nine" "gold"
[96759] "two" "silver"
[96761] "bronze" "Japanese"
[96763] "also" "dominated"
[96765] "new" "skateboarding"
[96767] "event" "winning"
[96769] "three" "four"
[96771] "gold" "medals"
[96773] "offer" "also"
[96775] "maximised" "return"
[96777] "baseball" "softball"
[96779] "Games" "line-up"
[96781] "taking" "gold"
[96783] "medals" "Different"
[96785] "name" "similar"
[96787] "haul" "Since"
[96789] "end" "Cold"
[96791] "War" "sixth"
[96793] "Olympic" "Games"
[96795] "Russia" "competed"
[96797] "country" "use"
[96799] "name" "flag"
[96801] "anthem" "based"
[96803] "International" "Olympic"
[96805] "Committee" "IOC"
[96807] "sanctions" "due"
[96809] "country's" "infamous"
[96811] "doping" "scandal"
[96813] "2014" "Instead"
[96815] "contingent" "went"
[96817] "name" "Russian"
[96819] "Olympic" "Committee"
[96821] "ROC" "also"
[96823] "second" "smallest"
[96825] "contingent" "country"
[96827] "333" "compared"
[96829] "282" "travelled"
[96831] "Rio" "terms"
[96833] "total" "number"
[96835] "medals" "won"
[96837] "Tokyo" "71"
[96839] "20" "gold"
[96841] "28" "silver"
[96843] "23" "bronze"
[96845] "put" "ROC"
[96847] "third" "leaderboard"
[96849] "fifth" "based"
[96851] "gold" "medals"
[96853] "official" "standard"
[96855] "behind" "USA"
[96857] "China" "Japan"
[96859] "Great" "Britain"
[96861] "better" "performance"
[96863] "ROC" "compared"
[96865] "19" "golds"
[96867] "London" "Rio"
[96869] "gold" "medal"
[96871] "women's" "team"
[96873] "gymnastics" "event"
[96875] "first" "ever"
[96877] "Russia" "made"
[96879] "difference" "Olympic"
[96881] "Ashes" "rivalry"
[96883] "transcends" "sports"
[96885] "Great" "Britain"
[96887] "pipped" "Australians"
[96889] "gold" "medal"
[96891] "tally" "22"
[96893] "17" "finish"
[96895] "fourth" "sixth"
[96897] "respectively" "overall"
[96899] "tally" "though"
[96901] "latter" "much"
[96903] "better" "showing"
[96905] "time" "won"
[96907] "just" "eight"
[96909] "golds" "Rio"
[96911] "Australians" "courtesy"
[96913] "Ariarne" "Titmus"
[96915] "double" "gold"
[96917] "USA's" "Katie"
[96919] "Ledecky" "won"
[96921] "nine" "golds"
[96923] "swimming" "compared"
[96925] "three" "Rio"
[96927] "Meanwhile" "Brits"
[96929] "continued" "dominating"
[96931] "cycling" "event"
[96933] "like" "Brits"
[96935] "can" "winning"
[96937] "six" "gold"
[96939] "four" "silver"
[96941] "two" "bronze"
[96943] "medals" "just"
[96945] "five" "years"
[96947] "ago" "Classification"
[96949] "Language" "ENGLISH"
[96951] "Publication-Type" "Newspaper"
[96953] "Body" "Indian"
[96955] "men's" "cricket"
[96957] "team" "seek"
[96959] "first" "Olympics"
[96961] "medal" "41"
[96963] "years" "Manpreet"
[96965] "Singh-led" "Indian"
[96967] "men's" "hockey"
[96969] "team" "still"
[96971] "medal" "play"
[96973] "side" "face"
[96975] "Germany" "bronze"
[96977] "medal" "August"
[96979] "5" "Belgium"
[96981] "defeated" "India"
[96983] "5-2" "semi-final"
[96985] "face" "winner"
[96987] "second" "semi-final"
[96989] "Germany" "India"
[96991] "scored" "20"
[96993] "goals" "conceded"
[96995] "19" "Germany"
[96997] "slightly" "ahead"
[96999] "23" "goals"
[97001] "14" "conceded"
[97003] "played" "seven"
[97005] "matches" "clash"
[97007] "begins" "Oi"
[97009] "Hockey" "Stadium"
[97011] "GOAL" "Germany"
[97013] "Just" "first"
[97015] "minute" "first"
[97017] "quarter" "-an"
[97019] "early" "goal"
[97021] "Germany" "reverse"
[97023] "hit" "Herzbruch"
[97025] "front" "goal"
[97027] "struck" "Timur"
[97029] "Oruz" "Indian"
[97031] "goalkeeper" "Sreejesh"
[97033] "made" "first"
[97035] "save" "hit"
[97037] "rebound" "Penalty"
[97039] "corner" "penalty"
[97041] "corner" "hooter"
[97043] "end" "first"
[97045] "half" "heard"
[97047] "Germans" "trying"
[97049] "convert" "goals"
[97051] "Sreejesh" "stood"
[97053] "like" "rock"
[97055] "along" "defence"
[97057] "1-1" "game"
[97059] "leveled" "comeback"
[97061] "India" "second"
[97063] "quarter.It" "clever"
[97065] "passing" "midfield"
[97067] "Simranjeet" "ended"
[97069] "dishing" "speedy"
[97071] "reverse" "flick"
[97073] "shot" "goal"
[97075] "India's" "defence"
[97077] "fell" "weak"
[97079] "equaliser" "Germany"
[97081] "score" "twice"
[97083] "span" "two"
[97085] "minutes" "Germany's"
[97087] "counter-attack" "Ruhrer"
[97089] "finds" "way"
[97091] "send" "ball"
[97093] "inside" "Wellen"
[97095] "scored" "put"
[97097] "Germany" "lead"
[97099] "next" "goal"
[97101] "came" "Germany"
[97103] "double-team" "Surender"
[97105] "Kumar" "Furk"
[97107] "scores" "third"
[97109] "Indians" "convert"
[97111] "penalty" "GOAL"
[97113] "Trailing" "goal"
[97115] "Indians" "can"
[97117] "Harmanpreet's" "drag"
[97119] "flick" "saved"
[97121] "German" "goalkeeper"
[97123] "Hardik" "Singh"
[97125] "scores" "rebound"
[97127] "Another" "Goal"
[97129] "India.Harmanpreet" "Singh"
[97131] "makes" "sure"
[97133] "level" "goals"
[97135] "scores" "penalty"
[97137] "corner" "PENALTY"
[97139] "converted" "India's"
[97141] "Mandeep" "Singh"
[97143] "tripped" "inside"
[97145] "circle" "Germany"
[97147] "asked" "referral"
[97149] "Windfeder" "said"
[97151] "contact" "replays"
[97153] "show" "otherwise"
[97155] "goal" "India"
[97157] "now" "scored"
[97159] "three" "goals"
[97161] "six" "minutes"
[97163] "turn" "3-1"
[97165] "deficit" "4-3"
[97167] "lead" "make"
[97169] "sure" "take"
[97171] "better" "lead.Gurjant"
[97173] "Singh" "seen"
[97175] "screaming" "right"
[97177] "dribble" "helps"
[97179] "cut" "pick"
[97181] "Simranjeet" "perfectly"
[97183] "forward" "flicks"
[97185] "Classification" "Language"
[97187] "ENGLISH" "Publication-Type"
[97189] "Newspaper" "Body"
[97191] "Novak" "Djokovic"
[97193] "Naomi" "Osaka"
[97195] "crusing" "ahead"
[97197] "style" "tennis"
[97199] "superstars" "produced"
[97201] "convincing" "victories"
[97203] "Monday" "reach"
[97205] "last" "16"
[97207] "respective" "categories"
[97209] "Ariake" "Tennis"
[97211] "Park" "Osaka"
[97213] "crushed" "49th-ranked"
[97215] "Viktorija" "Golubic"
[97217] "Switzerland" "6-3"
[97219] "6-2" "Djokovic"
[97221] "sent" "48th-ranked"
[97223] "Jan-Lennard" "Struff"
[97225] "Germany" "packing"
[97227] "6-4" "6-3"
[97229] "Despite" "first"
[97231] "tournament" "back"
[97233] "two-month" "mental"
[97235] "health" "break"
[97237] "Osaka's" "strong"
[97239] "start" "hardly"
[97241] "surprise" "considering"
[97243] "Olympic" "tournament"
[97245] "played" "hard"
[97247] "courts" "surface"
[97249] "won" "four"
[97251] "Grand" "Slam"
[97253] "titles" "Inspired"
[97255] "Olympic" "flame"
[97257] "honour" "Osaka"
[97259] "asked" "March"
[97261] "handle" "cauldron"
[97263] "honors" "said"
[97265] "feel" "pressure"
[97267] "assignment" "felt"
[97269] "excitement" "Osaka"
[97271] "said" "like"
[97273] "sense" "duty"
[97275] "like" "something"
[97277] "wanted" "accomplish"
[97279] "Two" "wins"
[97281] "Osaka" "line"
[97283] "honors" "Olympic"
[97285] "medal" "Definitely"
[97287] "mean" "lot"
[97289] "know" "process"
[97291] "Osaka" "said"
[97293] "prospects" "winning"
[97295] "medal" "host"
[97297] "country" "trying"
[97299] "take" "one"
[97301] "match" "time"
[97303] "just" "really"
[97305] "happy" "Tokyo"
[97307] "like" "whole"
[97309] "year" "Osaka's"
[97311] "first" "event"
[97313] "since" "withdrew"
[97315] "French" "Open"
[97317] "May" "take"
[97319] "mental" "health"
[97321] "break" "revealing"
[97323] "dealt" "depression"
[97325] "sat" "Wimbledon"
[97327] "Classification" "Language"
[97329] "ENGLISH" "Publication-Type"
[97331] "Newspaper" "Body"
[97333] "Neeraj" "Chopra"
[97335] "also" "first"
[97337] "Indian" "athlete"
[97339] "win" "gold"
[97341] "Commonwealth" "Games"
[97343] "Asian" "Games"
[97345] "2018" "Javelin"
[97347] "throw" "Neeraj"
[97349] "Chopra" "got"
[97351] "India" "first"
[97353] "Gold" "medal"
[97355] "Tokyo" "Olympics"
[97357] "2020" "men's"
[97359] "javelin" "throw"
[97361] "event" "also"
[97363] "first" "category"
[97365] "Track" "Field"
[97367] "evening" "joy"
[97369] "honour" "Indians"
[97371] "sat" "back"
[97373] "dream" "become"
[97375] "reality" "Saturday"
[97377] "August" "7"
[97379] "Neeraj" "become"
[97381] "second" "person"
[97383] "win" "individual"
[97385] "Gold" "medal"
[97387] "India" "Abhinav"
[97389] "Bindra" "won"
[97391] "gold" "shooting"
[97393] "2008" "also"
[97395] "India's" "7th"
[97397] "medal" "Tokyo"
[97399] "Olympics" "2020"
[97401] "one" "best"
[97403] "medals" "hauls"
[97405] "country" "Now"
[97407] "talk" "sport"
[97409] "got" "us"
[97411] "Gold" "medal"
[97413] "history" "Javelin"
[97415] "throw" "art"
[97417] "throwing" "Javelin"
[97419] "far" "precision"
[97421] "widely" "practised"
[97423] "ancient" "Greece"
[97425] "slowly" "evolved"
[97427] "everyday" "hunting"
[97429] "warfare" "activity"
[97431] "eventually" "added"
[97433] "Ancient" "Olympic"
[97435] "Games" "part"
[97437] "pentathlon" "708"
[97439] "BC" "consisted"
[97441] "participation" "men"
[97443] "women" "Modern"
[97445] "Olympics" "Games"
[97447] "programme" "initiated"
[97449] "javelin" "throw"
[97451] "men" "1908"
[97453] "women" "1932"
[97455] "Javelin" "throw"
[97457] "work" "sport"
[97459] "javelin" "throw"
[97461] "requires" "quite"
[97463] "lot" "strength"
[97465] "power" "precision"
[97467] "everything" "requires"
[97469] "amount" "determination.The"
[97471] "athlete" "required"
[97473] "throw" "metal-tipped"
[97475] "javelin" "far"
[97477] "possible" "javelin"
[97479] "must" "held"
[97481] "corded" "grip"
[97483] "athlete's" "little"
[97485] "finger" "closest"
[97487] "tip" "player"
[97489] "supposed" "run"
[97491] "towards" "defined"
[97493] "area" "gain"
[97495] "momentum" "throwing"
[97497] "javelin" "throwing"
[97499] "javelin" "athlete"
[97501] "must" "turn"
[97503] "back" "towards"
[97505] "landing" "area"
[97507] "given" "time"
[97509] "approach" "throw"
[97511] "javelin" "must"
[97513] "thrown" "upper"
[97515] "part" "throwing"
[97517] "arm" "must"
[97519] "cross" "foul"
[97521] "scratch" "line"
[97523] "cost" "throw"
[97525] "measured" "javelin"
[97527] "must" "land"
[97529] "tip" "first"
[97531] "competition" "athletes"
[97533] "usually" "throw"
[97535] "javelin" "three"
[97537] "six" "times"
[97539] "happens" "tie"
[97541] "athlete" "next"
[97543] "best" "effort"
[97545] "declared" "winner"
[97547] "different" "standards"
[97549] "men" "women"
[97551] "sport" "men's"
[97553] "javelin" "must"
[97555] "weight" "minimum"
[97557] "800g" "2.6m-2.7m"
[97559] "long" "women's"
[97561] "javelin" "can"
[97563] "weigh" "minimum"
[97565] "600g" "2.2m-2.3m"
[97567] "long" "Neeraj"
[97569] "Chopra" "23-year-old"
[97571] "Neeraj" "Chopra"
[97573] "hails" "Haryana"
[97575] "Subedar" "4"
[97577] "Rajputana" "Rifles"
[97579] "Indian" "Army"
[97581] "Neeraj" "took"
[97583] "sport" "Javelin"
[97585] "throw" "2011"
[97587] "first" "Indian"
[97589] "claim" "gold"
[97591] "World" "Junior"
[97593] "Championship" "2016"
[97595] "Poland" "also"
[97597] "became" "first"
[97599] "Indian" "athlete"
[97601] "win" "gold"
[97603] "Commonwealth" "Games"
[97605] "Asian" "Games"
[97607] "2018" "Haryana"
[97609] "government" "announced"
[97611] "honour" "athlete"
[97613] "Rs" "6"
[97615] "crore" "win"
[97617] "Tokyo" "Olympics"
[97619] "2020" "Classification"
[97621] "Language" "ENGLISH"
[97623] "Publication-Type" "Newspaper"
[97625] "Body" "New"
[97627] "Delhi" "July"
[97629] "26" "high"
[97631] "Mirabai" "Chanu"
[97633] "winning" "India's"
[97635] "first" "medal"
[97637] "Tokyo" "Olympics"
[97639] "Day" "2"
[97641] "bright" "India"
[97643] "strong" "medal"
[97645] "contenders" "finishing"
[97647] "disappointing" "results"
[97649] "Shooters" "Manu"
[97651] "Bhaker" "Divyansh"
[97653] "Panwar" "Deepak"
[97655] "Kumar" "produce"
[97657] "desire" "results"
[97659] "men's" "hockey"
[97661] "team" "took"
[97663] "1-7" "drubbing"
[97665] "hands" "Australia"
[97667] "women's" "doubles"
[97669] "tennis" "pair"
[97671] "Sania" "Mirza"
[97673] "Ankita" "Raina"
[97675] "faced" "first-round"
[97677] "exit" "whereas"
[97679] "swimmers" "Maana"
[97681] "Patel" "Srihari"
[97683] "Nataraj" "clocked"
[97685] "personal" "bests"
[97687] "India" "reasons"
[97689] "cheer" "paddler"
[97691] "Manika" "Batra"
[97693] "registered" "first"
[97695] "win" "beating"
[97697] "World" "32"
[97699] "Margaryta" "Pesotska"
[97701] "Mary" "Kom"
[97703] "PV" "Sindhu"
[97705] "won" "respective"
[97707] "round" "matches"
[97709] "medal-less" "day"
[97711] "India" "action"
[97713] "now" "shifts"
[97715] "day" "3"
[97717] "stars" "line"
[97719] "Satwik" "Sairaj"
[97721] "Rankireddy" "Chirag"
[97723] "Shetty" "men's"
[97725] "doubles" "badminton"
[97727] "competition" "India"
[97729] "women's" "hockey"
[97731] "team" "takes"
[97733] "Germany" "India's"
[97735] "schedule" "Day"
[97737] "3" "Tokyo"
[97739] "Fencing" "CA"
[97741] "Bhavani" "Devi"
[97743] "Women's" "Sabre"
[97745] "Individual" "Table"
[97747] "64" "5"
[97749] "30" "IST"
[97751] "Archery" "Atanu"
[97753] "Das" "Tarundeep"
[97755] "Rai" "Pravin"
[97757] "Jadhav" "Men's"
[97759] "Team" "1"
[97761] "8" "Eliminations"
[97763] "6" "00"
[97765] "IST" "Men's"
[97767] "Team" "quarter"
[97769] "final" "Subject"
[97771] "Qualification" "10"
[97773] "15" "IST"
[97775] "Men's" "Team"
[97777] "semi" "final"
[97779] "Subject" "Qualification"
[97781] "11" "47"
[97783] "IST" "Men's"
[97785] "Team" "medal"
[97787] "rounds" "Subject"
[97789] "qualification" "12"
[97791] "45" "PM"
[97793] "IST" "Shooting"
[97795] "Mairaj" "Ahmad"
[97797] "Khan" "Angad"
[97799] "Vir" "Bajwa"
[97801] "Skeet" "Men's"
[97803] "Qualification" "6"
[97805] "30" "IST"
[97807] "Skeet" "Men's"
[97809] "final" "Subject"
[97811] "qualification" "12"
[97813] "20" "PM"
[97815] "IST" "Tennis"
[97817] "Sumit" "Nagal"
[97819] "Men's" "Singles"
[97821] "Round" "2"
[97823] "decided" "Table"
[97825] "Tennis" "Sharath"
[97827] "Kamal" "Men's"
[97829] "Singles" "Round"
[97831] "2" "6"
[97833] "30" "IST"
[97835] "Sutirtha" "Mukherjee"
[97837] "Women's" "Singles"
[97839] "Round" "2"
[97841] "8" "30"
[97843] "IST" "Manika"
[97845] "Batra" "Women's"
[97847] "Singles" "Round"
[97849] "3" "12"
[97851] "00" "PM"
[97853] "IST" "Badminton"
[97855] "Satwiksairaj" "Rankireddy"
[97857] "Chirag" "Shetty"
[97859] "Men's" "doubles"
[97861] "9" "10"
[97863] "IST" "Sailing"
[97865] "Vishnu" "Saravanan"
[97867] "Men's" "Laser"
[97869] "Race" "2"
[97871] "3" "8"
[97873] "35" "IST"
[97875] "Nethra" "Kumanan"
[97877] "Women's" "Laser"
[97879] "Radical" "Race"
[97881] "3" "4"
[97883] "11" "05"
[97885] "IST" "Boxing"
[97887] "Ashish" "Kumar"
[97889] "Men's" "75KG"
[97891] "round" "32"
[97893] "3" "06"
[97895] "PM" "IST"
[97897] "Swimming" "Sajan"
[97899] "Prakash" "Men's"
[97901] "200m" "Butterfly"
[97903] "Heat" "2"
[97905] "3" "50"
[97907] "PM" "IST"
[97909] "Hockey" "India"
[97911] "Women" "vs"
[97913] "Germany" "Women"
[97915] "Pool" "Match"
[97917] "5" "45"
[97919] "PM" "IST"
[97921] "Published" "HT"
[97923] "Digital" "Content"
[97925] "Services" "permission"
[97927] "Hindustan" "Times"
[97929] "query" "respect"
[97931] "article" "content"
[97933] "requirement" "please"
[97935] "contact" "Editor"
[97937] "Classification" "Language"
[97939] "ENGLISH" "Publication-Type"
[97941] "Newswire" "Body"
[97943] "got" "learn"
[97945] "survive" "defeat"
[97947] "develop" "character"
[97949] "Mantra" "Indian"
[97951] "women" "hockey"
[97953] "team" "silenced"
[97955] "critics" "upstaging"
[97957] "mighty" "Australians"
[97959] "1-0" "make"
[97961] "history" "book"
[97963] "place" "semi-final"
[97965] "Tokyo" "Olympics"
[97967] "hockey" "three"
[97969] "defeats" "league"
[97971] "three" "wins"
[97973] "thereafter" "Ireland"
[97975] "South" "Africa"
[97977] "Australia" "made"
[97979] "difference" "Rani"
[97981] "Rampal" "girls"
[97983] "Playing" "cool"
[97985] "completely" "composed"
[97987] "girls" "made"
[97989] "Australians" "look"
[97991] "mere" "spectators"
[97993] "took" "field"
[97995] "Monday" "amazing"
[97997] "comeback" "three"
[97999] "defeats" "three"
[98001] "wins" "shows"
[98003] "grit" "determination"
[98005] "positive" "thinking"
[98007] "entire" "team"
[98009] "said" "former"
[98011] "Indian" "skipper"
[98013] "coach" "Joaquim"
[98015] "Carvalho" "talking"
[98017] "FPJ" "soon"
[98019] "match" "say"
[98021] "defeats" "wake"
[98023] "calls" "girls"
[98025] "changed" "face"
[98027] "Indian" "women's"
[98029] "hockey" "achievement"
[98031] "sure" "prove"
[98033] "added" "Carvalho"
[98035] "feels" "stepping"
[98037] "stone" "hockey"
[98039] "get" "facelift"
[98041] "India" "men"
[98043] "women" "just"
[98045] "one" "match"
[98047] "away" "medal"
[98049] "going" "approach"
[98051] "hockey" "pundits"
[98053] "sure" "medals"
[98055] "hockey" "far"
[98057] "way" "India"
[98059] "women" "scripted"
[98061] "history" "men's"
[98063] "team" "defeated"
[98065] "Great" "Britain"
[98067] "Sunday" "enter"
[98069] "last" "four"
[98071] "following" "41-year"
[98073] "gap" "Coming"
[98075] "match" "odds"
[98077] "totally" "India"
[98079] "world" "2"
[98081] "Australia" "mighty"
[98083] "unbeaten" "opponent"
[98085] "awaited" "last"
[98087] "eight" "round"
[98089] "Indians" "determined"
[98091] "prove" "point"
[98093] "produced" "strong"
[98095] "brave" "performance"
[98097] "eke" "win"
[98099] "side" "everything"
[98101] "favour" "North"
[98103] "Pitch" "Oi"
[98105] "Hockey" "stadium"
[98107] "Indians" "including"
[98109] "think" "tank"
[98111] "consumed" "moment"
[98113] "Australian" "women"
[98115] "knees" "well"
[98117] "aware" "struck"
[98119] "scene" "Agony"
[98121] "Extacy" "Indians"
[98123] "team" "walked"
[98125] "pitch" "every"
[98127] "individual" "whether"
[98129] "Indian" "whatever"
[98131] "role" "venue"
[98133] "gave" "huge"
[98135] "round" "applause"
[98137] "Calling" "perfect"
[98139] "team" "work"
[98141] "Indians" "Moscow"
[98143] "gold" "medal"
[98145] "winning" "team"
[98147] "member" "MM"
[98149] "Somaya" "entire"
[98151] "team" "goal"
[98153] "keeper" "players"
[98155] "contributed" "victory"
[98157] "faulter" "fail"
[98159] "mention" "Savita"
[98161] "Punia" "Indian"
[98163] "bar" "exceptionally"
[98165] "good" "said"
[98167] "Somaya" "feels"
[98169] "team" "can"
[98171] "biggest" "moment"
[98173] "Indian" "hockey"
[98175] "Men's" "women's"
[98177] "team" "semis"
[98179] "super" "proud"
[98181] "team" "said"
[98183] "skipper" "Rani"
[98185] "Rampal" "match"
[98187] "team" "like"
[98189] "family" "including"
[98191] "coaching" "staff"
[98193] "entire" "country"
[98195] "supports" "us"
[98197] "everybody's" "prayers"
[98199] "us" "elated"
[98201] "Gurjit" "Kaur"
[98203] "goal" "scorer"
[98205] "route" "semis"
[98207] "Men" "25"
[98209] "Jul" "2021"
[98211] "India" "lost"
[98213] "Australia" "1-7"
[98215] "1" "Aug"
[98217] "2021" "India"
[98219] "beat" "Great"
[98221] "Britain" "3-1"
[98223] "QF" "Women"
[98225] "28" "Jul"
[98227] "2021" "India"
[98229] "lost" "Great"
[98231] "Britain" "1-4"
[98233] "2" "Aug"
[98235] "2021" "India"
[98237] "beat" "Australia"
[98239] "1-0" "QF"
[98241] "India" "glance"
[98243] "Athletics" "Dutee"
[98245] "Chand" "7th"
[98247] "last" "women's"
[98249] "200m" "Heat"
[98251] "4" "fails"
[98253] "qualify" "semifinals"
[98255] "Kamalpreet" "Kaur"
[98257] "sixth" "women's"
[98259] "discus" "final"
[98261] "best" "throw"
[98263] "63.70m" "Equestrian"
[98265] "Fouaad" "Mirza"
[98267] "25th" "eventing"
[98269] "jumping" "individual"
[98271] "qualifier" "23rd"
[98273] "final" "Shooting"
[98275] "Aishwary" "Pratap"
[98277] "Singh" "Tomar"
[98279] "21st" "Sanjeev"
[98281] "Rajput" "32nd"
[98283] "men's" "50m"
[98285] "rifle" "3"
[98287] "positions" "qualification"
[98289] "fail" "qualify"
[98291] "final" "Medals"
[98293] "tally" "1"
[98295] "China" "29"
[98297] "17" "16"
[98299] "62" "2"
[98301] "US" "22"
[98303] "25" "17"
[98305] "64" "3"
[98307] "Japan" "17"
[98309] "6" "10"
[98311] "33" "4"
[98313] "Australia" "14"
[98315] "4" "15"
[98317] "33" "5"
[98319] "ROC" "12"
[98321] "21" "17"
[98323] "50" "6"
[98325] "GB" "11"
[98327] "12" "12"
[98329] "35" "7"
[98331] "France" "6"
[98333] "10" "7"
[98335] "23" "8"
[98337] "Germany" "6"
[98339] "6" "11"
[98341] "23" "9"
[98343] "South" "Korea"
[98345] "6" "4"
[98347] "9" "19"
[98349] "10" "Holland"
[98351] "5" "7"
[98353] "6" "18"
[98355] "62" "India"
[98357] "0" "1"
[98359] "1" "2"
[98361] "Indians" "action"
[98363] "today" "Games"
[98365] "ATHLETICS" "5,50"
[98367] "Annu" "Rani"
[98369] "women's" "javelin"
[98371] "throw" "Qualification"
[98373] "3.45" "Tajinderpal"
[98375] "Singh" "Toor"
[98377] "men's" "shot"
[98379] "put" "Qualification"
[98381] "HOCKEY" "7.00"
[98383] "India" "vs"
[98385] "Belgium" "men's"
[98387] "semifinal" "WRESTLING"
[98389] "8.30" "Sonam"
[98391] "Malik" "vs"
[98393] "Bolortuya" "Khurelkhuu"
[98395] "Mongolia" "women's"
[98397] "62kg" "Live"
[98399] "Sony" "Ten"
[98401] "1" "HD"
[98403] "SD" "Sony"
[98405] "Ten" "2"
[98407] "HD" "SD"
[98409] "Doordarshan" "Network"
[98411] "also" "broadcast"
[98413] "India" "Classification"
[98415] "Language" "ENGLISH"
[98417] "Publication-Type" "Newspaper"
[98419] "Body" "NEW"
[98421] "DELHI" "July"
[98423] "29" "last"
[98425] "time" "Indian"
[98427] "men's" "hockey"
[98429] "team" "defeated"
[98431] "defending" "champions"
[98433] "Olympics" "Lal"
[98435] "Bahadur" "Shastri"
[98437] "Prime" "Minister"
[98439] "country's" "cricket"
[98441] "team" "yet"
[98443] "win" "Test"
[98445] "series" "abroad"
[98447] "Beatles" "yet"
[98449] "release" "Let"
[98451] "final" "1964"
[98453] "Tokyo" "Olympics"
[98455] "India" "beat"
[98457] "arch-rivals" "holders"
[98459] "Pakistan" "1-0"
[98461] "claim" "gold-their"
[98463] "seventh" "Olympics"
[98465] "Tokyo" "Thursday"
[98467] "Manpreet" "Singh"
[98469] "men" "beat"
[98471] "2016" "Rio"
[98473] "champions" "Argentina"
[98475] "3-1" "move"
[98477] "quarter-finals" "win"
[98479] "significant" "especially"
[98481] "1-7" "debacle"
[98483] "Australia" "Sunday"
[98485] "cements" "India's"
[98487] "second" "position"
[98489] "Group" "behind"
[98491] "world" "1"
[98493] "outfit" "secured"
[98495] "wins" "New"
[98497] "Zealand" "Spain"
[98499] "earlier" "likely"
[98501] "easier" "draw"
[98503] "last-8" "clash"
[98505] "Feeling" "great"
[98507] "win" "lot"
[98509] "things" "improve"
[98511] "defender" "Rupinder"
[98513] "Pal" "Singh"
[98515] "told" "Reuters"
[98517] "important" "games"
[98519] "coming" "days"
[98521] "India" "proved"
[98523] "back-to-back" "wins"
[98525] "Argentina" "backyard"
[98527] "Buenos" "Aires"
[98529] "April" "reliable"
[98531] "indicator" "level"
[98533] "hockey" "playing"
[98535] "right" "now"
[98537] "India" "now"
[98539] "ranked" "3"
[98541] "world" "clearly"
[98543] "superior" "side"
[98545] "Oi" "Hockey"
[98547] "Stadium" "Thursday"
[98549] "enjoying" "53"
[98551] "percent" "possession"
[98553] "made" "28"
[98555] "circle" "penetrations-compared"
[98557] "Argentina's" "meagre"
[98559] "eight-and" "eight"
[98561] "penalty" "corner"
[98563] "opportunities" "opponent's"
[98565] "two" "India's"
[98567] "intent" "put"
[98569] "Argentina" "pump"
[98571] "start" "evident"
[98573] "kept" "possession"
[98575] "made" "multiple"
[98577] "forays" "circle"
[98579] "shot" "goal"
[98581] "early" "fourth"
[98583] "minute" "midfield"
[98585] "forward" "line"
[98587] "kept" "Argentine"
[98589] "defence" "busy"
[98591] "throughout" "game"
[98593] "defence" "compact"
[98595] "much" "Argentina's"
[98597] "first" "real"
[98599] "attempt" "goal"
[98601] "came" "towards"
[98603] "end" "first"
[98605] "half" "blocked"
[98607] "ever-reliable" "PR"
[98609] "Sreejesh" "Yet"
[98611] "goals" "refused"
[98613] "come" "solid"
[98615] "goalkeeping" "Argentina's"
[98617] "Juan" "Manuel"
[98619] "Vivaldi" "just"
[98621] "India's" "failure"
[98623] "put" "finishing"
[98625] "touch" "India"
[98627] "rewarded" "attacking"
[98629] "intent" "created"
[98631] "14" "chances"
[98633] "Argentina's" "6"
[98635] "Varun" "Kumar"
[98637] "playing" "first"
[98639] "match" "Tokyo"
[98641] "scored" "43rd"
[98643] "minute" "penalty"
[98645] "corner" "Things"
[98647] "got" "tense"
[98649] "three" "minutes"
[98651] "last" "quarter"
[98653] "Argentina" "equalised"
[98655] "India" "attacked"
[98657] "renewed" "intent"
[98659] "thrilling" "finish"
[98661] "Vivek" "Sagar"
[98663] "Prasad" "58th"
[98665] "drag-flick" "ace"
[98667] "Harmanpreet" "Singh"
[98669] "59th" "scored"
[98671] "take" "match"
[98673] "away" "Good"
[98675] "performance" "today"
[98677] "said" "India"
[98679] "chief" "coach"
[98681] "Graham" "Reid"
[98683] "Argentina" "can"
[98685] "sit" "back"
[98687] "game" "sudden"
[98689] "score" "corner"
[98691] "know" "things"
[98693] "can" "happen"
[98695] "play" "team"
[98697] "like" "Argentina"
[98699] "created" "enough"
[98701] "wasted" "opportunities"
[98703] "good" "let"
[98705] "frustrate" "us"
[98707] "stayed" "patient"
[98709] "stuck" "game"
[98711] "plan" "India"
[98713] "next" "play"
[98715] "hosts" "reigning"
[98717] "Asian" "Games"
[98719] "champions" "Japan"
[98721] "yet" "win"
[98723] "game" "group"
[98725] "stage" "happy"
[98727] "can" "bit"
[98729] "stressful" "just"
[98731] "now" "need"
[98733] "play" "well"
[98735] "next" "opponent-Japan"
[98737] "need" "play"
[98739] "though" "quarter-finals"
[98741] "keeping" "eye"
[98743] "happens" "pool"
[98745] "time" "added"
[98747] "Reid" "Group"
[98749] "B" "world"
[98751] "champions" "Belgium"
[98753] "Netherlands" "Great"
[98755] "Britain" "qualified"
[98757] "last" "eight"
[98759] "Published" "HT"
[98761] "Digital" "Content"
[98763] "Services" "permission"
[98765] "Hindustan" "Times"
[98767] "query" "respect"
[98769] "article" "content"
[98771] "requirement" "please"
[98773] "contact" "Editor"
[98775] "Classification" "Language"
[98777] "ENGLISH" "Publication-Type"
[98779] "Newswire" "Body"
[98781] "India" "Aug"
[98783] "4" "definitely"
[98785] "sense" "disappointment"
[98787] "Indian" "Women's"
[98789] "Hockey" "team"
[98791] "failing" "enter"
[98793] "race" "gold"
[98795] "medal" "ongoing"
[98797] "Tokyo" "Olympics"
[98799] "Chak" "De"
[98801] "India" "actor"
[98803] "Vidya" "Malavade"
[98805] "proud" "team"
[98807] "went" "fighting"
[98809] "one" "best"
[98811] "teams" "world"
[98813] "Millions" "glued"
[98815] "screens" "watching"
[98817] "match" "Argentina"
[98819] "held" "Wednesday"
[98821] "hope" "witness"
[98823] "reel" "moment"
[98825] "women's" "hockey"
[98827] "team" "clinching"
[98829] "gold" "world"
[98831] "cup" "Shah"
[98833] "Rukh" "Khan-starrer"
[98835] "film" "turn"
[98837] "reality" "bigger"
[98839] "platform" "come"
[98841] "true" "nothing"
[98843] "lose" "hope"
[98845] "says" "Malavade"
[98847] "already" "created"
[98849] "history" "going"
[98851] "semi-finals" "first"
[98853] "time" "girls"
[98855] "looking" "fit"
[98857] "training" "got"
[98859] "today" "defence"
[98861] "aggression" "good"
[98863] "Argentina" "played"
[98865] "better" "says"
[98867] "Malavade" "seen"
[98869] "role" "captain"
[98871] "India's" "women's"
[98873] "hockey" "team"
[98875] "2007" "film"
[98877] "adds" "already"
[98879] "proud" "achieved"
[98881] "look" "onwards"
[98883] "upwards" "moments"
[98885] "distinguish" "reel"
[98887] "life" "real"
[98889] "life" "feels"
[98891] "actor" "time"
[98893] "Chak" "De"
[98895] "India" "moment"
[98897] "agli" "baar"
[98899] "give" "never"
[98901] "give" "hope"
[98903] "Just" "look"
[98905] "girls" "come"
[98907] "humble" "backgrounds"
[98909] "went" "create"
[98911] "history" "beat"
[98913] "top" "team"
[98915] "world" "notes"
[98917] "Now" "actor"
[98919] "rooting" "team"
[98921] "bring" "home"
[98923] "bronze" "medal"
[98925] "hopeful" "next"
[98927] "time" "gold"
[98929] "one" "step"
[98931] "time" "time"
[98933] "reached" "semis"
[98935] "Next" "time"
[98937] "maybe" "reach"
[98939] "finals" "point"
[98941] "lift" "gold"
[98943] "Hockey" "national"
[98945] "sport" "pride"
[98947] "long" "time"
[98949] "coming" "years"
[98951] "see" "golden"
[98953] "era" "hockey"
[98955] "actor" "expresses"
[98957] "Till" "Malavade"
[98959] "happy" "sports"
[98961] "like" "hockey"
[98963] "also" "gaining"
[98965] "recognition" "thanks"
[98967] "players" "days"
[98969] "ago" "nobody"
[98971] "ever" "spoke"
[98973] "players" "now"
[98975] "everybody" "interested"
[98977] "just" "glad"
[98979] "women" "shining"
[98981] "sports" "think"
[98983] "time" "come"
[98985] "athletes" "country"
[98987] "really" "well"
[98989] "athletics" "considered"
[98991] "viable" "profession"
[98993] "can" "bring"
[98995] "glory" "country"
[98997] "important" "thing"
[98999] "concludes" "Published"
[99001] "HT" "Digital"
[99003] "Content" "Services"
[99005] "permission" "Hindustan"
[99007] "Times" "query"
[99009] "respect" "article"
[99011] "content" "requirement"
[99013] "please" "contact"
[99015] "Editor" "Classification"
[99017] "Language" "ENGLISH"
[99019] "Publication-Type" "Newswire"
[99021] "Body" "19-year-old"
[99023] "became" "third"
[99025] "player" "Simdega"
[99027] "participated" "Games"
[99029] "two" "Michael"
[99031] "Kindo" "Sylvanus"
[99033] "Dungdung" "Salima"
[99035] "Tete" "reminds"
[99037] "former" "hockey"
[99039] "captain" "VirenRasquinha"
[99041] "legendary" "Shahbaz"
[99043] "Ahmed" "striking"
[99045] "comparison" "breath"
[99047] "fresh" "air"
[99049] "day" "ended"
[99051] "sore" "note"
[99053] "India" "women"
[99055] "Vying" "first-ever"
[99057] "podium" "finish"
[99059] "Olympics" "Rani"
[99061] "Rampal" "company"
[99063] "went" "3-4to"
[99065] "Great" "Britain.But"
[99067] "lot" "take"
[99069] "heart" "Apart"
[99071] "Savita" "Punia's"
[99073] "brave" "effort"
[99075] "sticks" "19-year-old"
[99077] "Salima" "stood"
[99079] "runs" "across"
[99081] "pitch" "instrumental"
[99083] "inkeeping" "India"
[99085] "game" "throughout"
[99087] "pulsating" "sixty"
[99089] "minutes" "praising"
[99091] "Gurjit" "Kaur's"
[99093] "stinging" "drag-flick"
[99095] "helped" "India"
[99097] "equalise" "2-2"
[99099] "forget" "Salima"
[99101] "cut" "D"
[99103] "force" "penalty"
[99105] "corner" "sheer"
[99107] "tenacity" "steady"
[99109] "stickwork" "teenager"
[99111] "sign" "great"
[99113] "things" "come"
[99115] "Salima's" "father"
[99117] "Sulakshan" "proud"
[99119] "man" "today"
[99121] "used" "accompany"
[99123] "Salima" "hockey"
[99125] "matches" "taught"
[99127] "sport" "bamboo"
[99129] "stick" "school"
[99131] "got" "selected"
[99133] "play" "Ranchi"
[99135] "team" "lost"
[99137] "happy" "achievement"
[99139] "quoted" "saying"
[99141] "ANI" "Salima"
[99143] "hails" "Barki"
[99145] "Chhapar" "village"
[99147] "Sadar" "block"
[99149] "Jharkhand's" "Simdega"
[99151] "district" "Jharkhand"
[99153] "Visuals" "residence"
[99155] "hockey" "player"
[99157] "Salima" "Tete"
[99159] "Badkichapar" "village"
[99161] "Simdega" "district"
[99163] "Tete" "part"
[99165] "Indian" "women's"
[99167] "hockey" "team"
[99169] "take" "Great"
[99171] "Britain" "Bronze"
[99173] "medal" "#TokyoOlympics"
[99175] "today" "morning"
[99177] "pic.twitter.com" "DUmhtxoB36"
[99179] "change" "Salima"
[99181] "Hockey" "Simdega"
[99183] "president" "Manoj"
[99185] "Konbegi" "remembers"
[99187] "talent" "stick"
[99189] "finally" "came"
[99191] "fore" "recalledhow"
[99193] "scouts" "spotted"
[99195] "urged" "appear"
[99197] "trials" "government-run"
[99199] "residential" "hockey"
[99201] "centre" "looking"
[99203] "back" "talented"
[99205] "got" "selected"
[99207] "time" "improved"
[99209] "skills" "managed"
[99211] "convert" "every"
[99213] "opportunity" "favour"
[99215] "said" "Salima"
[99217] "went" "elementary"
[99219] "school" "village"
[99221] "later" "got"
[99223] "enrolled" "girls"
[99225] "high" "school"
[99227] "academics" "never"
[99229] "stopped" "playing"
[99231] "sport" "2019"
[99233] "eventually" "appointed"
[99235] "TTE" "South"
[99237] "Eastern" "Railways"
[99239] "Humble" "beginnings"
[99241] "Salima" "one"
[99243] "five" "siblings"
[99245] "Besides" "Mahima"
[99247] "youngest" "sister"
[99249] "plays" "state"
[99251] "team" "parents"
[99253] "farmers" "father"
[99255] "Sulakshan" "said"
[99257] "never" "forced"
[99259] "Salima" "kids"
[99261] "dream" "big"
[99263] "happy" "chose"
[99265] "hockey" "career"
[99267] "see" "dream"
[99269] "pursue" "said"
[99271] "big" "break"
[99273] "Salima's" "first"
[99275] "big" "break"
[99277] "came" "2014"
[99279] "included" "state"
[99281] "team" "sub-junior"
[99283] "national" "women's"
[99285] "tournament" "Pune"
[99287] "team" "won"
[99289] "silver" "international"
[99291] "debut" "happened"
[99293] "two" "years"
[99295] "later" "2016"
[99297] "part" "side"
[99299] "junior" "nationals"
[99301] "Spain" "one"
[99303] "accolade" "followed"
[99305] "another" "became"
[99307] "vice-caption" "national"
[99309] "side" "theU-18"
[99311] "Asia" "Cup"
[99313] "Bangkok" "team"
[99315] "clinched" "bronze"
[99317] "year" "broke"
[99319] "senior" "national"
[99321] "team" "two"
[99323] "years" "later"
[99325] "led" "Indian"
[99327] "squad" "Youth"
[99329] "Olympics" "Argentina"
[99331] "winning" "silver"
[99333] "defining" "moment"
[99335] "cemented" "place"
[99337] "national" "team"
[99339] "senior" "next"
[99341] "year" "got"
[99343] "opportunities" "play"
[99345] "regularly" "national"
[99347] "international" "level"
[99349] "Salima's" "coach"
[99351] "Pratima" "Barwa"
[99353] "said" "interview"
[99355] "defender" "true"
[99357] "character" "never"
[99359] "let" "opponents"
[99361] "score" "easily"
[99363] "Barwa" "added"
[99365] "Following" "qualification"
[99367] "Tokyo" "Olympics"
[99369] "became" "third"
[99371] "player" "Simdega"
[99373] "done" "past"
[99375] "two" "male"
[99377] "hockey" "players"
[99379] "Simdega" "Michael"
[99381] "Kindo" "Sylvanus"
[99383] "Dungdung" "taken"
[99385] "part" "Games"
[99387] "Classification" "Language"
[99389] "ENGLISH" "Publication-Type"
[99391] "Newspaper" "Body"
[99393] "India" "Aug"
[99395] "6" "Sjoerd"
[99397] "Marijne" "Indian"
[99399] "women's" "hockey"
[99401] "team's" "Dutch"
[99403] "coach" "hoped"
[99405] "part" "ways"
[99407] "team" "high"
[99409] "four-year" "stint"
[99411] "way" "team"
[99413] "fought" "Olympics"
[99415] "got" "wish"
[99417] "Even" "though"
[99419] "Marijne" "went"
[99421] "running" "turf"
[99423] "comfort" "crying"
[99425] "team" "loss"
[99427] "Great" "Britain"
[99429] "bronze" "medal"
[99431] "playoff" "started"
[99433] "crying" "getting"
[99435] "team" "huddle"
[99437] "last" "match"
[99439] "Indian" "women's"
[99441] "team" "47-year-old"
[99443] "took" "reins"
[99445] "2017" "briefly"
[99447] "switched" "men's"
[99449] "team" "came"
[99451] "back" "women's"
[99453] "set" "2018"
[99455] "wish" "extend"
[99457] "contract" "Right"
[99459] "now" "wants"
[99461] "nothing" "except"
[99463] "home" "family"
[99465] "last" "four"
[99467] "years" "seen"
[99469] "little" "lockdown"
[99471] "last" "year"
[99473] "Dutch" "coach"
[99475] "chose" "stay"
[99477] "team" "bubble"
[99479] "Bengaluru" "instead"
[99481] "leaving" "Netherlands"
[99483] "Tokyo" "Marijne"
[99485] "touch" "seen"
[99487] "never-say-die" "spirit"
[99489] "team" "told"
[99491] "take" "away"
[99493] "tears" "girls"
[99495] "win" "medal"
[99497] "something" "big"
[99499] "won" "Marijne"
[99501] "said" "realise"
[99503] "now" "won"
[99505] "hearts" "inspired"
[99507] "people" "India"
[99509] "think" "main"
[99511] "thing" "slowly"
[99513] "realize" "Today"
[99515] "top-four" "world"
[99517] "must" "forget"
[99519] "Yes" "one"
[99521] "team" "can"
[99523] "win" "today"
[99525] "Great" "Britain"
[99527] "Marijne" "said"
[99529] "plans" "write"
[99531] "book" "experience"
[99533] "Indian" "hockey"
[99535] "team" "inspired"
[99537] "whole" "India"
[99539] "may" "many"
[99541] "people" "People"
[99543] "India" "proud"
[99545] "country" "like"
[99547] "India" "Marijne"
[99549] "said" "know"
[99551] "going" "well"
[99553] "also" "give"
[99555] "proud" "country"
[99557] "people" "cry"
[99559] "emotional" "messages"
[99561] "people-" "watching"
[99563] "father" "son"
[99565] "never" "forget"
[99567] "rest" "life"
[99569] "soon" "began"
[99571] "coaching" "team"
[99573] "Marijne" "realized"
[99575] "one" "things"
[99577] "team" "badly"
[99579] "needed" "exposure"
[99581] "tours" "top"
[99583] "notch" "matches"
[99585] "kind" "get"
[99587] "participating" "Pro"
[99589] "League" "girls"
[99591] "used" "kinds"
[99593] "things" "pressure"
[99595] "top" "level"
[99597] "matches" "said"
[99599] "play" "Pro"
[99601] "League" "World"
[99603] "Cup" "women"
[99605] "India" "play"
[99607] "Hockey" "India"
[99609] "League" "things"
[99611] "important" "bring"
[99613] "change" "girls"
[99615] "can" "take"
[99617] "next" "step"
[99619] "maybe" "next"
[99621] "time" "podium"
[99623] "changes" "Marijne"
[99625] "make" "along"
[99627] "support" "staff"
[99629] "enthusiastic" "participation"
[99631] "squad" "involved"
[99633] "making" "skilful"
[99635] "fitter" "mentally"
[99637] "stronger" "things"
[99639] "full" "display"
[99641] "Tokyo" "Today"
[99643] "consistent" "physically"
[99645] "stronger" "can"
[99647] "change" "match"
[99649] "said" "mindset"
[99651] "never" "giving"
[99653] "changed" "woman-that"
[99655] "talk" "can"
[99657] "talk" "looking"
[99659] "straight" "eyes"
[99661] "whole" "attitude"
[99663] "culture" "change"
[99665] "done" "new"
[99667] "girls" "coming"
[99669] "team" "know"
[99671] "required" "happens"
[99673] "countries" "like"
[99675] "Netherlands" "Young"
[99677] "girls" "come"
[99679] "national" "team"
[99681] "know" "exactly"
[99683] "required" "Analytical"
[99685] "coach" "Janneke"
[99687] "Schopman" "two-time"
[99689] "Olympic" "medallist"
[99691] "Netherlands" "new"
[99693] "coach" "best"
[99695] "knows" "system"
[99697] "structure" "knows"
[99699] "exactly" "needs"
[99701] "done" "good"
[99703] "girls" "Marijne"
[99705] "said" "journey"
[99707] "ups" "downs"
[99709] "right" "now"
[99711] "beautiful" "right"
[99713] "Published" "HT"
[99715] "Digital" "Content"
[99717] "Services" "permission"
[99719] "Hindustan" "Times"
[99721] "query" "respect"
[99723] "article" "content"
[99725] "requirement" "please"
[99727] "contact" "Editor"
[99729] "Classification" "Language"
[99731] "ENGLISH" "Publication-Type"
[99733] "Newswire" "Body"
[99735] "India" "July"
[99737] "25" "Tiger"
[99739] "Shroff" "drew"
[99741] "inspiration" "Indian"
[99743] "weightlifter" "Mirabai"
[99745] "Chanu" "lifted"
[99747] "weights" "140"
[99749] "kilos" "Mirabai"
[99751] "won" "silver"
[99753] "medal" "ongoing"
[99755] "Tokyo" "Olympics"
[99757] "Saturday" "actor"
[99759] "taking" "Instagram"
[99761] "shared" "video"
[99763] "seen" "balancing"
[99765] "heavyweight" "shoulder"
[99767] "performed" "set"
[99769] "sit-ups" "Sharing"
[99771] "video" "Tiger"
[99773] "Shroff" "said"
[99775] "140" "kgs"
[99777] "counting.So" "inspired"
[99779] "get" "stronger"
[99781] "go" "beyond"
[99783] "limits" "thanks"
[99785] "#mirabaichanu" "performance"
[99787] "go" "team"
[99789] "india" "#tokyoolympics"
[99791] "@mmamatrixgym" "@mirabai_chanu"
[99793] "Tiger's" "father"
[99795] "Jackie" "Shroff"
[99797] "took" "comments"
[99799] "section" "blessed"
[99801] "actor" "Bless"
[99803] "ya" "Bhidu"
[99805] "keep" "spreading"
[99807] "Goodness" "wrote"
[99809] "Tiger" "also"
[99811] "received" "compliments"
[99813] "friends" "fans"
[99815] "Maashallah" "Tigzzz"
[99817] "140" "whoof"
[99819] "Oh" "yesss"
[99821] "proud" "moment"
[99823] "us" "one"
[99825] "friends" "said"
[99827] "OMG" "OMG"
[99829] "OMG" "wowwww"
[99831] "wowwww" "tigiiiiii"
[99833] "#mirabaichanu" "U"
[99835] "made" "India"
[99837] "proud" "Jai"
[99839] "hind" "another"
[99841] "added" "Fans"
[99843] "also" "dropped"
[99845] "comments" "Keep"
[99847] "sir" "strong"
[99849] "Many" "others"
[99851] "dropped" "heart"
[99853] "fire" "clapping"
[99855] "emojis" "Earlier"
[99857] "day" "Family"
[99859] "Man" "2"
[99861] "actor" "Samantha"
[99863] "Akkineni" "also"
[99865] "shared" "video"
[99867] "seen" "lifting"
[99869] "weights" "credited"
[99871] "Mirabai" "inspiring"
[99873] "workout" "session"
[99875] "Tiger's" "shoutout"
[99877] "Mirabai" "Chanu"
[99879] "came" "day"
[99881] "bagged" "silver"
[99883] "medal" "women's"
[99885] "49" "kg"
[99887] "category" "international"
[99889] "competition" "Saturday"
[99891] "claimed" "silver"
[99893] "medal" "49"
[99895] "kg" "category"
[99897] "total" "202"
[99899] "kg" "87"
[99901] "kg" "115"
[99903] "kg" "India's"
[99905] "second" "Olympic"
[99907] "medal" "sport"
[99909] "Karnam" "Malleswari's"
[99911] "bronze" "came"
[99913] "21" "years"
[99915] "ago" "Sydney"
[99917] "Games" "Mirabai"
[99919] "participated" "Rio"
[99921] "Olympics" "five"
[99923] "years" "ago"
[99925] "win" "Mirabai"
[99927] "received" "love"
[99929] "numerous" "Bollywood"
[99931] "celebs" "including"
[99933] "Amitabh" "Bachchan"
[99935] "Akshay" "Kumar"
[99937] "Lara" "Dutta"
[99939] "Suniel" "Shetty"
[99941] "Aditi" "Rao"
[99943] "Hydari" "Anil"
[99945] "Kapoor" "Rakul"
[99947] "Preet" "Singh"
[99949] "Abhishek" "Bachchan"
[99951] "Anushka" "Sharma"
[99953] "also" "hearts"
[99955] "read" "news"
[99957] "Mirabai's" "special"
[99959] "Olympics" "rings-style"
[99961] "earrings" "Published"
[99963] "HT" "Digital"
[99965] "Content" "Services"
[99967] "permission" "Hindustan"
[99969] "Times" "query"
[99971] "respect" "article"
[99973] "content" "requirement"
[99975] "please" "contact"
[99977] "Editor" "Classification"
[99979] "Language" "ENGLISH"
[99981] "Publication-Type" "Newswire"
[99983] "Body" "India"
[99985] "Aug" "6"
[99987] "Olympic" "fever"
[99989] "gripped" "nation"
[99991] "actor" "Payal"
[99993] "Ghosh" "immune"
[99995] "actor" "watching"
[99997] "every" "game"
[99999] "Indian"
[ reached getOption("max.print") -- omitted 226064 entries ]
Keyword in context
Since I want to look at women’s and men’s sports, I tried looking at the keyword-in-context for the words women and men.
kwic_women<- kwic(withoutstopwords_news,
pattern = c("women"))
kwic_men<-kwic(withoutstopwords_news,
pattern = c("men"))
head(kwic_women)Keyword-in-context with 6 matches.
[text1, 20] inclusion 8-team medal sport men | women |
[text1, 228] Olympics learnt require participation men | women |
[text3, 274] valiantly win medal 41 years | women |
[text3, 304] happy take note spectacular emergence | women |
[text3, 318] 2016 Rio games medal winners | women |
[text3, 324] Tokyo three seven medal winners | women |
Los Angeles 2028 brightened International
T20 emerged format choice despite
bravehearts made Olympics debut 1980
athletes international sports arena coming
Tokyo three seven medal winners
golden record men's hockey team
head(kwic_men)Keyword-in-context with 6 matches.
[text1, 19] cricket's inclusion 8-team medal sport | men |
[text1, 227] cricket Olympics learnt require participation | men |
[text7, 164] IST SAILING Vishnu Saravanan Laser | Men |
[text7, 175] IST Ganapathy Kelapanda Varun Thakkar | Men |
[text19, 21] Olympics 2020 performance Manpreet Singh | men |
[text31, 21] Recently 78-year-old actor shared analogy | men |
women Los Angeles 2028 brightened
women T20 emerged format choice
Race 7 8 8 35
Race 5 6 8 35
taken social media storm Several
women's Indian hockey performance Tokyo
Creating a tokens object with bigrams and trigrams
news_ngrams <- tokens_ngrams(withoutstopwords_news, n=2:3)
head(news_ngrams)Tokens consisting of 6 documents and 2 docvars.
text1 :
[1] "Body_Mumbai" "Mumbai_Aug" "Aug_9"
[4] "9_solitary" "solitary_two-day" "two-day_fixture"
[7] "fixture_Great" "Great_Britain" "Britain_France"
[10] "France_1900" "1900_Olympics" "Olympics_prospects"
[ ... and 593 more ]
text2 :
[1] "Body_India" "India_Aug" "Aug_2"
[4] "2_Tokyo" "Tokyo_Olympics" "Olympics_Day"
[7] "Day_10" "10_Full" "Full_Schedule"
[10] "Schedule_Kamalpreet" "Kamalpreet_Kaur" "Kaur_stunned"
[ ... and 331 more ]
text3 :
[1] "Body_best-ever" "best-ever_performance"
[3] "performance_just-concluded" "just-concluded_Tokyo"
[5] "Tokyo_Olympics" "Olympics_India"
[7] "India_shall" "shall_look"
[9] "look_breaking" "breaking_top"
[11] "top_10" "10_earliest"
[ ... and 921 more ]
text4 :
[1] "Body_New" "New_Delhi" "Delhi_July" "July_28"
[5] "28_Tokyo" "Tokyo_Olympics" "Olympics_2020" "2020_enters"
[9] "enters_fifth" "fifth_day" "day_begin" "begin_Indian"
[ ... and 433 more ]
text5 :
[1] "Body_India" "India_Aug" "Aug_8" "8_Neeraj"
[5] "Neeraj_Chopra" "Chopra_became" "became_second" "second_Indian"
[9] "Indian_ever" "ever_win" "win_individual" "individual_gold"
[ ... and 469 more ]
text6 :
[1] "Body_wondering" "wondering_ROC" "ROC_athletes"
[4] "athletes_winning" "winning_many" "many_medals"
[7] "medals_Tokyo" "Tokyo_Olympics" "Olympics_everything"
[10] "everything_need" "need_know" "know_ROC"
[ ... and 469 more ]
tail(news_ngrams)Tokens consisting of 6 documents and 2 docvars.
text1186 :
[1] "Body_Diamond" "Diamond_baron" "baron_Savji"
[4] "Savji_Dholakia" "Dholakia_made" "made_yet"
[7] "yet_another" "another_announcement" "announcement_declaring"
[10] "declaring_award" "award_Rs" "Rs_2.5"
[ ... and 183 more ]
text1187 :
[1] "Body_THE.WAIT.HAS.ENDED" "THE.WAIT.HAS.ENDED_men's"
[3] "men's_hockey" "hockey_team"
[5] "team_every" "every_Indian"
[7] "Indian_dreaming" "dreaming_winning"
[9] "winning_Olympic" "Olympic_medal"
[11] "medal_Indian" "Indian_side"
[ ... and 147 more ]
text1188 :
[1] "Body_New" "New_Delhi" "Delhi_Indian"
[4] "Indian_sports" "sports_fraternity" "fraternity_including"
[7] "including_cricketing" "cricketing_greats" "greats_Sachin"
[10] "Sachin_Tendulkar" "Tendulkar_country's" "country's_white-ball"
[ ... and 63 more ]
text1189 :
[1] "Body_India's" "India's_Equestrian" "Equestrian_Fouaad"
[4] "Fouaad_Mirza" "Mirza_Seigneur" "Seigneur_Medicott"
[7] "Medicott_qualified" "qualified_Jumping" "Jumping_Individual"
[10] "Individual_Finals" "Finals_got" "got_8"
[ ... and 191 more ]
text1190 :
[1] "Body_Saturday" "Saturday_Saikhom" "Saikhom_Mirabai" "Mirabai_Chanu"
[5] "Chanu_stood" "stood_podium" "podium_Tokyo" "Tokyo_silver"
[9] "silver_medal" "medal_around" "around_neck" "neck_two"
[ ... and 215 more ]
text1191 :
[1] "Body_Mirabai" "Mirabai_Chanu"
[3] "Chanu_said" "said_failed"
[5] "failed_campaign" "campaign_Rio"
[7] "Rio_taught" "taught_overcome"
[9] "overcome_disappointment" "disappointment_make"
[11] "make_fresh" "fresh_start"
[ ... and 213 more ]
Word Cloud
I created a word cloud to check if there are any words other than the stopwords to be removed. The words- classification, publication-type and body should ideally be removed.
# create the dfm
news_dfm <- dfm(tokens(withoutstopwords_news))
# find out a quick summary of the dfm
news_dfmDocument-feature matrix of: 1,191 documents, 22,788 features (99.15% sparse) and 2 docvars.
features
docs body mumbai aug 9 solitary two-day fixture great britain france
text1 1 1 1 1 1 1 1 1 1 1
text2 1 0 1 0 0 0 0 0 0 0
text3 1 0 0 0 0 0 0 0 0 0
text4 1 0 0 0 0 0 0 2 2 0
text5 1 0 1 0 0 0 0 0 0 0
text6 1 0 0 0 0 0 0 0 0 0
[ reached max_ndoc ... 1,185 more documents, reached max_nfeat ... 22,778 more features ]
textplot_wordcloud(news_dfm, min_count = 50, random_order = FALSE)Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
personal could not be fit on page. It will not be plotted.
Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
parents could not be fit on page. It will not be plotted.
Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
becoming could not be fit on page. It will not be plotted.
Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
corners could not be fit on page. It will not be plotted.
Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
almost could not be fit on page. It will not be plotted.
Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : story
could not be fit on page. It will not be plotted.
